summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* tweak cabac. 0.5% faster h264.Loren Merritt2006-08-27
| | | | Originally committed as revision 6106 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check the validity of the amount of the remaining bytes in the bitsteam ↵Michael Niedermayer2006-08-27
| | | | | | before memcpy Originally committed as revision 6105 to svn://svn.ffmpeg.org/ffmpeg/trunk
* unused varMichael Niedermayer2006-08-26
| | | | Originally committed as revision 6104 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dont copy frame if the whole mp1/2/3 frame is available in one piece in the ↵Michael Niedermayer2006-08-26
| | | | | | input Originally committed as revision 6103 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix A32_BITSTREAM_READER compilation on x86Aurelien Jacobs2006-08-26
| | | | Originally committed as revision 6102 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make mpa_decode_header() 10 times fasterMichael Niedermayer2006-08-26
| | | | Originally committed as revision 6101 to svn://svn.ffmpeg.org/ffmpeg/trunk
* another silly typo which surprisingly neither valgrind nor cmp of the file ↵Michael Niedermayer2006-08-26
| | | | | | output cought Originally committed as revision 6100 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l found by valgrindMichael Niedermayer2006-08-26
| | | | Originally committed as revision 6099 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove duplicated parser, people who pass random gibblets of the bitstream ↵Michael Niedermayer2006-08-26
| | | | | | | | | into the decoder will have to pass it through a AVParser like for all other codecs too remove silly internal buffering architecture (removes 1 memcpy() of the bitstream) mp3on4 and mp3adu untested Originally committed as revision 6098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 2nd try of skip_bits_long() for the ALT readerMichael Niedermayer2006-08-26
| | | | | | | 1st try for the LIBMPEG2 reader simplify init_get_bits() Originally committed as revision 6097 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make A32 reader align its ptr during init no matter what missaligned mess is ↵Michael Niedermayer2006-08-26
| | | | | | given to it Originally committed as revision 6096 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 3rd try :)Michael Niedermayer2006-08-26
| | | | Originally committed as revision 6095 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 2nd try for a skip_bits_long() for the A32 readerMichael Niedermayer2006-08-26
| | | | Originally committed as revision 6094 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move align_get_bits() to .h to avoid conflicts between different bitstream ↵Michael Niedermayer2006-08-26
| | | | | | | | readers in different codecs add a skip_bits_long() which can skip by any amount in any direction (several codecs contain half working hacks to do that) Originally committed as revision 6093 to svn://svn.ffmpeg.org/ffmpeg/trunk
* prevent bitstream reader to be overridenMichael Niedermayer2006-08-26
| | | | Originally committed as revision 6092 to svn://svn.ffmpeg.org/ffmpeg/trunk
* support some totally broken ODML variantMichael Niedermayer2006-08-25
| | | | Originally committed as revision 6091 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The FFLDFLAGS for MinGW are only meant for the shared libraries and notRamiro Polla2006-08-25
| | | | | | | all executables. So they should really be SHFLAGS. patch by Ramiro Polla, angustia at arrozcru d.t no-ip d.t org Originally committed as revision 6090 to svn://svn.ffmpeg.org/ffmpeg/trunk
* FFMPEG_VERSION was moved to version.h.Diego Biurrun2006-08-25
| | | | | | hint by Ramiro Polla, angustia at arrozcru d.t no-ip d.t org Originally committed as revision 6089 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid branchMichael Niedermayer2006-08-25
| | | | Originally committed as revision 6088 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move variable declarations so that their scope is smallerMichael Niedermayer2006-08-25
| | | | Originally committed as revision 6087 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move the +400 out of the innermost loopMichael Niedermayer2006-08-25
| | | | Originally committed as revision 6086 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid reading exponent twiceMichael Niedermayer2006-08-25
| | | | Originally committed as revision 6085 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reduce size of vlc table, thats slightly faster hereMichael Niedermayer2006-08-25
| | | | Originally committed as revision 6084 to svn://svn.ffmpeg.org/ffmpeg/trunk
* try to avoid l3_unscale() by using a tableMichael Niedermayer2006-08-25
| | | | Originally committed as revision 6083 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace l3_unscale(1, exponents[pos]) by LUTMichael Niedermayer2006-08-25
| | | | Originally committed as revision 6082 to svn://svn.ffmpeg.org/ffmpeg/trunk
* maybe fixing the segfault on ARMMichael Niedermayer2006-08-25
| | | | Originally committed as revision 6081 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cook shouldn't try to enforce the bitstream reader typeAurelien Jacobs2006-08-24
| | | | Originally committed as revision 6080 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix mac3audio.mov, pcm_s8 and pcm_u8 can only have sample size of 1 and only ↵Baptiste Coudurier2006-08-24
| | | | | | if mono, dont rely on bits per sample which can be wrong Originally committed as revision 6079 to svn://svn.ffmpeg.org/ffmpeg/trunk
* correct uid, and enable JPEG 2000 detectionBaptiste Coudurier2006-08-24
| | | | Originally committed as revision 6078 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use add_cflags/add_ldflags/add_extralibs instead of manually manipulatingNigel Pearson2006-08-24
| | | | | | | those variables. patch by Nigel Pearson, nigel .at. ind .dot. tansu .dot. com .dot. au Originally committed as revision 6077 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add codec id and tag for JPEG 2000Baptiste Coudurier2006-08-24
| | | | Originally committed as revision 6076 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update the FAQ with the current status of image formats.Michel Bardiaux2006-08-24
| | | | | | patch by Michel Bardiaux, mbardiaux at mediaxim dot be Originally committed as revision 6075 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l typoMichael Niedermayer2006-08-24
| | | | Originally committed as revision 6074 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid a few if(x==0) checks in the inner loopsMichael Niedermayer2006-08-24
| | | | Originally committed as revision 6073 to svn://svn.ffmpeg.org/ffmpeg/trunk
* wide atom is only defined in mov, use free for mp4/3gpBaptiste Coudurier2006-08-24
| | | | Originally committed as revision 6072 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move amr parameters adjusting like other codecsBaptiste Coudurier2006-08-24
| | | | Originally committed as revision 6071 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix non ALT bitstream readerMichael Niedermayer2006-08-24
| | | | Originally committed as revision 6070 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dont set width/height for h261/h263/mpeg4 since they are oftenly wrong, let ↵Baptiste Coudurier2006-08-24
| | | | | | decoder init them Originally committed as revision 6069 to svn://svn.ffmpeg.org/ffmpeg/trunk
* optimize reorder_block() though this function seems to be executed too ↵Michael Niedermayer2006-08-24
| | | | | | rarely for this to make much difference Originally committed as revision 6068 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2006-08-24
| | | | Originally committed as revision 6067 to svn://svn.ffmpeg.org/ffmpeg/trunk
* put dv demuxing code around ifdefBaptiste Coudurier2006-08-24
| | | | Originally committed as revision 6066 to svn://svn.ffmpeg.org/ffmpeg/trunk
* put dv demuxing code around ifdefBaptiste Coudurier2006-08-24
| | | | Originally committed as revision 6065 to svn://svn.ffmpeg.org/ffmpeg/trunk
* support vdva fourcc (dv + dv audio in mov)Baptiste Coudurier2006-08-24
| | | | Originally committed as revision 6064 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix ODML AVI Duration for files > 2GBBrian Brice2006-08-24
| | | | | | | | | Patch by Brian Brice % bbrice A newtek P com % Original thread: Date: Aug 22, 2006 10:21 PM Subject: [Ffmpeg-devel] [PATCH] ODML AVI Duration Originally committed as revision 6063 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dont copy the whole GetBitContext aroundMichael Niedermayer2006-08-24
| | | | Originally committed as revision 6062 to svn://svn.ffmpeg.org/ffmpeg/trunk
* faster handling of zero coeffs in the low freq decodeMichael Niedermayer2006-08-24
| | | | Originally committed as revision 6061 to svn://svn.ffmpeg.org/ffmpeg/trunk
* optimizing high freq decodeMichael Niedermayer2006-08-24
| | | | Originally committed as revision 6060 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use memset() instead of slow c loopsMichael Niedermayer2006-08-24
| | | | Originally committed as revision 6059 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2006-08-23
| | | | Originally committed as revision 6058 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix arm asm compilation in mpegaudiodecAurelien Jacobs2006-08-23
| | | | Originally committed as revision 6057 to svn://svn.ffmpeg.org/ffmpeg/trunk