summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* AVISynth support, patch by Steve Lhomme % slhomme A divxcorp P com %Steve L'Homme2006-08-29
| | | | | | | | Original Thread: Date: Aug 16, 2006 11:45 PM Subject: [Ffmpeg-devel] [PATCH] AVISynth support Originally committed as revision 6122 to svn://svn.ffmpeg.org/ffmpeg/trunk
* slightly faster deblockLoren Merritt2006-08-29
| | | | Originally committed as revision 6121 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use the A32_BITSTREAM_READER by default on ARM (faster)Aurelien Jacobs2006-08-28
| | | | Originally committed as revision 6120 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ALT_BITSTREAM_READER_LE is obviously not needed for the tta demuxer, as ↵Aurelien Jacobs2006-08-28
| | | | | | there was a typo in the define Originally committed as revision 6119 to svn://svn.ffmpeg.org/ffmpeg/trunk
* force usage of ALT_BITSTREAM_READER where neededAurelien Jacobs2006-08-28
| | | | Originally committed as revision 6118 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move some functions to bitstream.h to avoid conflictsAurelien Jacobs2006-08-28
| | | | | | between different bitstream readers in different codecs Originally committed as revision 6117 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix buffer handlingMichael Niedermayer2006-08-28
| | | | Originally committed as revision 6116 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Minimal support for the new pixel formats in libavcodecLuca Abeni2006-08-28
| | | | Originally committed as revision 6115 to svn://svn.ffmpeg.org/ffmpeg/trunk
* convert null vhook to libswscaleVíctor Paesa2006-08-28
| | | | | | | | | Patch by Victor Paesa % wzrlpy A arsystel Pcom % Original thread: Date: Aug 23, 2006 7:28 PM Subject: Re: [Ffmpeg-devel] [PATCH] enable libswscale Originally committed as revision 6114 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mmx implementation of deblocking strength decision.Loren Merritt2006-08-28
| | | | | | 2-3% faster h264. Originally committed as revision 6113 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add some new pixel formats to libavutilLuca Abeni2006-08-28
| | | | Originally committed as revision 6112 to svn://svn.ffmpeg.org/ffmpeg/trunk
* overread AV_LOG_ERROR -> AV_LOG_DEBUGMichael Niedermayer2006-08-27
| | | | Originally committed as revision 6111 to svn://svn.ffmpeg.org/ffmpeg/trunk
* scan s->probesize packets instead of MAX_SCAN_PACKETS (that is still the ↵Nico Sabbi2006-08-27
| | | | | | default value) Originally committed as revision 6110 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added option probesize; at the moment only used by mpegts.cNico Sabbi2006-08-27
| | | | Originally committed as revision 6109 to svn://svn.ffmpeg.org/ffmpeg/trunk
* initial support for AVOption in AVFormatContextNico Sabbi2006-08-27
| | | | Originally committed as revision 6108 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix low bitrate mp3Michael Niedermayer2006-08-27
| | | | Originally committed as revision 6107 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 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