Mercurial > libavcodec.hg
graph
-
try direct mode MB after QPRD, slight PSNR/bitrate gain if b frames + QPRD libavcodec2006-12-20, by michael
-
fix special casing of the 0,0 MV for b frames (slight PSNR/bitrate gain) libavcodec2006-12-20, by michael
-
dont favor the zero MV if mv0 is used (psnr per bitrate gains ranging from 0 to 0.14, most are <=0.04 though) libavcodec2006-12-20, by michael
-
Add SSSE3 (Core2 aka Conroe/Merom/Woodcrester new instructions) detection libavcodec2006-12-18, by gpoirier
-
warn user if the selected diamond size is larger then the motion estimation score cache size libavcodec2006-12-17, by michael
-
Check mb_pos is big enough before trying to access data left or above. libavcodec2006-12-17, by reimar
-
Fix JPEG-LS encoder 0xff-escaping writing too much or uninitialized data. libavcodec2006-12-11, by reimar
-
Fix 16 bit cscd samples, 16 bit raw means RGB555 on Windows, and the original libavcodec2006-12-09, by reimar
-
fix bug when __GNUC__ isn't defined and when compiling for a non-x86 architecture, patch by Martin Storsjö, martin at martin st libavcodec2006-12-08, by bcoudurier
-
Add "mixed_refs" description suggested by Loren Merritt and update accompanying libavcodec2006-12-06, by takis
-
Add more descriptions to the AVOption array taken from the avcodec.h AVCodec structure member comments. libavcodec2006-12-06, by takis
-
Change NAL unit type defines to an enum and move to a header file for usage libavcodec2006-12-05, by takis
-
make hex and large 2 small diamond search half their size instead or -1 if the initial size was a power of 2 libavcodec2006-12-05, by michael
-
Another hack to allow the Cinepak decoder to detect both types of deviant Cinepak libavcodec2006-12-02, by melanson
-
Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato libavcodec2006-12-02, by gpoirier
-
mjpeg a dump header bitstream filter, modifies bitstream to be decoded by quicktime libavcodec2006-12-01, by bcoudurier
-
cosmetic (prevent name clashes of variables in a macro with surrounding code) libavcodec2006-12-01, by michael
-
support byte_run=0 case in DELTA_FLI (this case means only skip pixels) libavcodec2006-11-23, by alex
-
fix some potential security issues, patch by Matthias Hopf, mat at mshopf dot de libavcodec2006-11-22, by bcoudurier
-
allow amr bitrate to be changed "on the fly" through avctx->bitrate. libavcodec2006-11-20, by gpoirier
-
Add useful Altivec types, taken from with permission from x264 authors libavcodec2006-11-19, by gpoirier
-
BGR555 has never been working as alpha supporting format. Remove the false setting. libavcodec2006-11-16, by alex
-
changed rgba32_to routines to support both alpha and non-alpha formats (see r7066 too) libavcodec2006-11-14, by alex
-
changed rgba32_to routines to support both alpha and non-alpha formats libavcodec2006-11-14, by alex
-
Remove the H264Context parameter from decode_init_vlc() as it is not being used. libavcodec2006-11-09, by takis
-
get rid of CODEC_ID_MPEG4AAC after next version bump, and change it to CODEC_ID_AAC where used libavcodec2006-11-09, by bcoudurier
-
100l for me, iam being to stupid to read the mpeg4 spec / eat stuffing mbs a the end of the picture libavcodec2006-11-08, by michael
-
add option to set mpeg1/2 gop timecode start, and drop frame flag timecode flag libavcodec2006-11-07, by bcoudurier
-
add codec_tag and codec_stream_tag to MpegEncContext to not alter avctx values libavcodec2006-11-07, by bcoudurier
-
rename ff_mpeg1_find_frame_end to mpeg1_find_frame_end and make it static libavcodec2006-11-06, by bcoudurier
-
move AVCodecParser prototypes and definitions to parser.h, and move mpegvideo parser to mpeg12.c libavcodec2006-11-06, by bcoudurier
-
Move idct block array variable onto rtjpeg_decode_frame_yuv420 stack since libavcodec2006-11-05, by reimar
-
outputs bit spent on various encoding functions (motion vectors, overhead, etc) libavcodec2006-11-02, by gpoirier
-
Replace most of the %lld and %llx by their (cleaner) PRI*64 counterparts. libavcodec2006-11-01, by diego
-
merge clip() into the alpha/beta/tc0 tables (10% faster filter_mb_fast() on P3) libavcodec2006-11-01, by michael
-
Reenable AMD64 optimizations for cabac accidentially disabled in r6852 libavcodec2006-11-01, by reimar
-
Add ARCH_X86_32 as a new define for 32 bit x86 architectures and change libavcodec2006-11-01, by diego
-
Fix compilation with PIC enabled, BRANCHLESS_GET_CABAC is defined under libavcodec2006-10-29, by diego
-
shut gcc warning, also makes sense for NAN to be returned if the loop was never executed libavcodec2006-10-28, by ods15
-
add support for while() loops again ugly syntax while(condition, statements) but very simple implementation libavcodec2006-10-27, by michael
-
Don't include inttypes.h/stdint.h directly, there is an abstraction in libavcodec2006-10-24, by diego
-
merge 8 and 16bit functions, they are identical except the data type libavcodec2006-10-24, by michael
-
Do not use a fake libavcodec/swscale.h, but always use the real one libavcodec2006-10-23, by lucabe
-
another instruction less in decode_significance_x86() -> 1% faster ion P3 libavcodec2006-10-20, by michael
-
reordering instructions a little in decode_significance_x86() -> 2 instructions less / 1% faster decode_residual on P3 libavcodec2006-10-20, by michael
-
1 variable less in decode_cabac_residual() no speed change (but less vars means less things gcc can load and store redundantly) libavcodec2006-10-19, by michael
-
copy cabac context onto the stack for the c code in decode_cabac_residual() (15% faster on P3 but still slower then the current asm) libavcodec2006-10-17, by michael
-
x86 asm version of the decode significance loop (not 8x8) of decode_residual() 5% faster decode_residual() on P3 libavcodec2006-10-17, by michael
-
Fix crash with illegal instruction, cmov is available on 686 and later only. libavcodec2006-10-16, by diego
-
fix !CMOV_IS_FAST case (iam not really happy with the fix but i didnt come up with a better one quickly) libavcodec2006-10-16, by michael
-
this code will not work with PIC as it needs 7 registers and gcc doesnt support that in PIC libavcodec2006-10-15, by michael
-
shift CABACContext.range right, this reduces the number of shifts needed in get_cabac() and is slightly faster on P3 (and should be much faster on P4 as the P4 except the more recent variants lacks an integer shifter and so shifts have ~10 times longer latency then simple operations like adds) libavcodec2006-10-15, by michael
-
add "memory" to the clobber list we change memory so we need it, this also fixes some problems with gcc svn libavcodec2006-10-12, by michael
-
-1 is a valid return value in ratecontrol_1pass() -> 100l for takis libavcodec2006-10-12, by michael
-
prevent "mb level" get_cabac() calls from being inlined (3% faster decode_mb_cabac() on P3) libavcodec2006-10-12, by michael
-
support for Tiertex .seq files demuxing/video decoding, by Gregory Montoir %cyx A users P sourceforge P net% libavcodec2006-10-12, by bcoudurier
-
fix SHOW_SBITS for ALT_BITSTREAM_READER_LE, patch by Gregory Montoir %cyx A users P sourceforge P net% libavcodec2006-10-12, by bcoudurier
-
Rename internal.h --> xvid_internal.h, it clashes with libavutil/internal.h. libavcodec2006-10-12, by diego
-
slightly faster on P3 slightly slower on athlon and probably faster on P4 libavcodec2006-10-11, by michael
-
update doc, changelog, and increase libavcodec version for .cin files support libavcodec2006-10-11, by bcoudurier
-
support for Delphine Software .cin files demuxing / audio and video decoding, by Gregory Montoir %cyx A users P sourceforge P net% libavcodec2006-10-11, by bcoudurier
-
moving lps state transition code a little up in the branched asm code (1% faster on P3) libavcodec2006-10-11, by michael
-
use ecx instead of cl (no speed change on P3 but might avoid partial register stalls on some cpus) libavcodec2006-10-11, by michael
-
make state transition tables global as they are constant and the code is slightly faster that way libavcodec2006-10-11, by michael
-
make lps_range a global table its constant anyway (saves 1 addition for accessing it) libavcodec2006-10-11, by michael
-
moving another bit&1 out, this is as fast as with it in there, but it makes more sense with it outside of the loop libavcodec2006-10-10, by michael
-
move the &1 out of the asm so gcc can optimize it away in inlined cases (yes this is slightly faster) libavcodec2006-10-10, by michael
-
reading 8bit mem into a 8bit register needs 2 uops on P4, 8bit->32bit with zero extension needs just 1 libavcodec2006-10-09, by michael
-
reverse remainder of the failed attempt to optimize *state=c->mps_state[s] libavcodec2006-10-09, by michael
-
move outcommented START/STOP_TIMER to a hopefully better place for benchmarking ... libavcodec2006-10-09, by michael
-
remove bytestream_end checks, seems to work fine without them and the bitstream reader doesnt check for the end either libavcodec2006-10-09, by michael
-
Change license headers to say 'FFmpeg' instead of 'this program/this library' libavcodec2006-10-07, by diego
-
cosmetics: Add backslashes to the last line of continued lines to make libavcodec2006-10-07, by diego
-
fix buffer underflows by reencoding the current frame with a higher QP libavcodec2006-10-05, by michael
-
cosmetics: Put all OBJS on a line of their own for nicer-looking diffs. libavcodec2006-10-04, by diego
-
don't try to inline cabac functions. gcc ignored the hint anyway, and forcing it would make h264 slower. libavcodec2006-10-04, by lorenm
-
Remove unused variables and the corresponding warnings along with them. libavcodec2006-10-03, by diego
-
Original Commit: r114 | ods15 | 2006-10-01 21:38:37 +0200 (Sun, 01 Oct 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r113 | ods15 | 2006-10-01 21:35:47 +0200 (Sun, 01 Oct 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r112 | ods15 | 2006-10-01 20:48:39 +0200 (Sun, 01 Oct 2006) | 3 lines libavcodec2006-10-02, by ods15
-
Original Commit: r111 | ods15 | 2006-10-01 19:40:50 +0200 (Sun, 01 Oct 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r110 | ods15 | 2006-10-01 19:17:32 +0200 (Sun, 01 Oct 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r109 | ods15 | 2006-10-01 19:14:52 +0200 (Sun, 01 Oct 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r108 | ods15 | 2006-10-01 18:46:06 +0200 (Sun, 01 Oct 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r107 | ods15 | 2006-10-01 18:13:12 +0200 (Sun, 01 Oct 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r106 | ods15 | 2006-10-01 18:11:55 +0200 (Sun, 01 Oct 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r105 | ods15 | 2006-10-01 18:09:55 +0200 (Sun, 01 Oct 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r104 | ods15 | 2006-10-01 18:04:08 +0200 (Sun, 01 Oct 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r103 | ods15 | 2006-10-01 18:00:43 +0200 (Sun, 01 Oct 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r102 | ods15 | 2006-10-01 17:58:38 +0200 (Sun, 01 Oct 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r101 | ods15 | 2006-10-01 14:15:00 +0200 (Sun, 01 Oct 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r100 | ods15 | 2006-10-01 14:01:27 +0200 (Sun, 01 Oct 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r99 | ods15 | 2006-10-01 11:12:44 +0200 (Sun, 01 Oct 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r98 | ods15 | 2006-10-01 10:15:33 +0200 (Sun, 01 Oct 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r97 | ods15 | 2006-09-30 23:32:19 +0300 (Sat, 30 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r96 | ods15 | 2006-09-30 23:25:18 +0300 (Sat, 30 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r95 | ods15 | 2006-09-30 22:11:08 +0300 (Sat, 30 Sep 2006) | 3 lines libavcodec2006-10-02, by ods15
-
Original Commit: r94 | ods15 | 2006-09-30 22:09:33 +0300 (Sat, 30 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r93 | ods15 | 2006-09-30 22:02:21 +0300 (Sat, 30 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r92 | ods15 | 2006-09-30 12:13:47 +0300 (Sat, 30 Sep 2006) | 3 lines libavcodec2006-10-02, by ods15
-
Original Commit: r91 | ods15 | 2006-09-30 10:05:16 +0300 (Sat, 30 Sep 2006) | 4 lines libavcodec2006-10-02, by ods15
-
Original Commit: r90 | ods15 | 2006-09-29 22:14:40 +0300 (Fri, 29 Sep 2006) | 3 lines libavcodec2006-10-02, by ods15
-
Original Commit: r88 | ods15 | 2006-09-29 21:10:36 +0300 (Fri, 29 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r87 | ods15 | 2006-09-29 21:10:05 +0300 (Fri, 29 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r86 | ods15 | 2006-09-29 21:08:42 +0300 (Fri, 29 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r85 | ods15 | 2006-09-29 21:07:58 +0300 (Fri, 29 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r84 | ods15 | 2006-09-29 21:07:07 +0300 (Fri, 29 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r83 | ods15 | 2006-09-29 21:06:13 +0300 (Fri, 29 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r82 | ods15 | 2006-09-29 21:03:43 +0300 (Fri, 29 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r81 | ods15 | 2006-09-29 21:02:09 +0300 (Fri, 29 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r80 | ods15 | 2006-09-29 15:44:22 +0300 (Fri, 29 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r79 | ods15 | 2006-09-29 15:15:26 +0300 (Fri, 29 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r78 | ods15 | 2006-09-29 15:14:28 +0300 (Fri, 29 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r77 | ods15 | 2006-09-29 15:12:56 +0300 (Fri, 29 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r76 | ods15 | 2006-09-29 13:16:37 +0300 (Fri, 29 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r75 | ods15 | 2006-09-29 13:03:51 +0300 (Fri, 29 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r74 | ods15 | 2006-09-29 13:03:31 +0300 (Fri, 29 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r73 | ods15 | 2006-09-28 21:01:59 +0300 (Thu, 28 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r72 | ods15 | 2006-09-28 21:00:47 +0300 (Thu, 28 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r71 | ods15 | 2006-09-28 21:00:24 +0300 (Thu, 28 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r70 | ods15 | 2006-09-28 19:07:36 +0300 (Thu, 28 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r69 | ods15 | 2006-09-27 20:27:50 +0300 (Wed, 27 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r68 | ods15 | 2006-09-25 21:15:09 +0300 (Mon, 25 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r67 | ods15 | 2006-09-25 20:33:06 +0300 (Mon, 25 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r66 | ods15 | 2006-09-25 18:42:13 +0300 (Mon, 25 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r65 | ods15 | 2006-09-25 18:40:19 +0300 (Mon, 25 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r64 | ods15 | 2006-09-25 18:39:30 +0300 (Mon, 25 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r63 | ods15 | 2006-09-25 13:51:44 +0300 (Mon, 25 Sep 2006) | 3 lines libavcodec2006-10-02, by ods15
-
Original Commit: r62 | ods15 | 2006-09-25 13:12:07 +0300 (Mon, 25 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r61 | ods15 | 2006-09-25 13:10:56 +0300 (Mon, 25 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r60 | ods15 | 2006-09-25 12:46:30 +0300 (Mon, 25 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r59 | ods15 | 2006-09-24 17:40:40 +0300 (Sun, 24 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r58 | ods15 | 2006-09-24 17:35:28 +0300 (Sun, 24 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r56 | ods15 | 2006-09-24 13:55:01 +0300 (Sun, 24 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r55 | ods15 | 2006-09-24 13:54:43 +0300 (Sun, 24 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r54 | ods15 | 2006-09-24 13:54:12 +0300 (Sun, 24 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r52 | ods15 | 2006-09-23 17:38:43 +0300 (Sat, 23 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r51 | ods15 | 2006-09-23 16:32:30 +0300 (Sat, 23 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r50 | ods15 | 2006-09-23 16:24:51 +0300 (Sat, 23 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r49 | ods15 | 2006-09-23 12:52:21 +0300 (Sat, 23 Sep 2006) | 3 lines libavcodec2006-10-02, by ods15
-
Original Commit: r48 | ods15 | 2006-09-23 12:45:25 +0300 (Sat, 23 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r47 | ods15 | 2006-09-23 12:34:48 +0300 (Sat, 23 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r46 | ods15 | 2006-09-23 11:36:32 +0300 (Sat, 23 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r44 | ods15 | 2006-09-23 10:54:43 +0300 (Sat, 23 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r43 | ods15 | 2006-09-23 10:53:46 +0300 (Sat, 23 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r42 | ods15 | 2006-09-23 10:53:16 +0300 (Sat, 23 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r41 | ods15 | 2006-09-23 10:52:34 +0300 (Sat, 23 Sep 2006) | 4 lines libavcodec2006-10-02, by ods15
-
Original Commit: r40 | ods15 | 2006-09-23 09:36:30 +0300 (Sat, 23 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r39 | ods15 | 2006-09-23 09:36:11 +0300 (Sat, 23 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r38 | ods15 | 2006-09-23 09:02:34 +0300 (Sat, 23 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r37 | ods15 | 2006-09-23 08:43:43 +0300 (Sat, 23 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r36 | ods15 | 2006-09-23 08:43:09 +0300 (Sat, 23 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r35 | ods15 | 2006-09-22 18:53:22 +0300 (Fri, 22 Sep 2006) | 4 lines libavcodec2006-10-02, by ods15
-
Original Commit: r34 | ods15 | 2006-09-22 18:46:57 +0300 (Fri, 22 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r32 | ods15 | 2006-09-22 18:37:50 +0300 (Fri, 22 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r31 | ods15 | 2006-09-22 18:33:17 +0300 (Fri, 22 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r30 | ods15 | 2006-09-22 18:24:04 +0300 (Fri, 22 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r27 | ods15 | 2006-09-22 14:19:51 +0300 (Fri, 22 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r26 | ods15 | 2006-09-22 14:18:22 +0300 (Fri, 22 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r25 | ods15 | 2006-09-22 14:06:04 +0300 (Fri, 22 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r24 | ods15 | 2006-09-22 13:57:09 +0300 (Fri, 22 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r23 | ods15 | 2006-09-22 13:55:48 +0300 (Fri, 22 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r22 | ods15 | 2006-09-22 13:49:56 +0300 (Fri, 22 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r21 | ods15 | 2006-09-22 13:40:31 +0300 (Fri, 22 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r20 | ods15 | 2006-09-22 13:12:48 +0300 (Fri, 22 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r19 | ods15 | 2006-09-22 12:54:18 +0300 (Fri, 22 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r18 | ods15 | 2006-09-22 12:29:26 +0300 (Fri, 22 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r17 | ods15 | 2006-09-22 12:28:28 +0300 (Fri, 22 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r16 | ods15 | 2006-09-22 12:27:17 +0300 (Fri, 22 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r15 | ods15 | 2006-09-22 12:26:42 +0300 (Fri, 22 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r14 | ods15 | 2006-09-22 12:26:17 +0300 (Fri, 22 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r13 | ods15 | 2006-09-22 09:29:38 +0300 (Fri, 22 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r12 | ods15 | 2006-09-22 09:28:30 +0300 (Fri, 22 Sep 2006) | 5 lines libavcodec2006-10-02, by ods15
-
Original Commit: r11 | ods15 | 2006-09-17 19:41:28 +0300 (Sun, 17 Sep 2006) | 4 lines libavcodec2006-10-02, by ods15
-
Original Commit: r10 | ods15 | 2006-09-17 19:37:17 +0300 (Sun, 17 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r9 | ods15 | 2006-09-17 18:56:41 +0300 (Sun, 17 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r8 | ods15 | 2006-09-17 09:43:38 +0300 (Sun, 17 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r7 | ods15 | 2006-09-17 08:50:47 +0300 (Sun, 17 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r6 | ods15 | 2006-09-16 20:36:31 +0300 (Sat, 16 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15
-
Original Commit: r5 | ods15 | 2006-09-16 17:29:04 +0300 (Sat, 16 Sep 2006) | 4 lines libavcodec2006-10-02, by ods15
-
Original Commit: r4 | ods15 | 2006-09-16 15:36:03 +0300 (Sat, 16 Sep 2006) | 3 lines libavcodec2006-10-02, by ods15
-
Original Commit: r3 | ods15 | 2006-09-16 11:49:07 +0300 (Sat, 16 Sep 2006) | 2 lines libavcodec2006-10-02, by ods15