summaryrefslogtreecommitdiffstats
path: root/libavcodec
Commit message (Collapse)AuthorAgeFilesLines
* Add support for listing the supported pixel formats using the optionStefano Sabatini2007-05-302-0/+34
| | | | | | | | | -pix_fmt list patch by Stefano Sabatini stefano sabatini minus lala chez poste it original thread: [FFmpeg-devel] [PATCH] List supported pixel formats date: 05/25/2007 05:46 PM Originally committed as revision 9162 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename attribute_unused to av_unused and moves its declaration to common.hCarl Eugen Hoyos2007-05-308-30/+30
| | | | | | | | patch by Carl Eugen Hoyos cehoyos chez ag or at original thread: [FFmpeg-devel] [PATCH] attribute_unused -> av_unused date: 05/29/2007 01:23 PM Originally committed as revision 9155 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix assertion failureMichael Niedermayer2007-05-292-9/+11
| | | | Originally committed as revision 9152 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do proper frame swapping so VMD video decoder works againKostya Shishkov2007-05-291-5/+4
| | | | Originally committed as revision 9151 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split RoQ decoder to accommodate future encoder patchVitor Sessak2007-05-294-243/+304
| | | | | | | | patch by Vitor vitor1001 gmail moc original thread: [FFmpeg-devel] [PATCH] RoQ video encoder, take 2 date: 05/27/2007 12:21 PM Originally committed as revision 9149 to svn://svn.ffmpeg.org/ffmpeg/trunk
* allocate PPS and SPS dynamicallyAndreas Öman2007-05-292-17/+39
| | | | | | | | | patch by Andreas Öman andreas ta olebyn tod nu reference thread: subject: [FFmpeg-devel] [PATCH] h264: allocate PPS and SPS dynamically date: 05/28/2007 03:00 PM Originally committed as revision 9148 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics and function renameVitor Sessak2007-05-291-50/+47
| | | | | | | | | patch by Vitor ken1001 gmail com | sed -e s/ken/vitor/ reference thread: subject: [FFmpeg-devel] [PATCH] RoQ video encoder, take 2 date: 05/27/2007 12:21 PM Originally committed as revision 9147 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove redundant fastmemcpy.h #include, it is indirectly #included by avutil.h.Diego Biurrun2007-05-284-16/+0
| | | | Originally committed as revision 9145 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make decoder decode the first frame properly if theres more than just oneMichael Niedermayer2007-05-271-0/+1
| | | | | | frame input Originally committed as revision 9144 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct the parameter order for the call to "av_clip".Harald Karnet2007-05-251-1/+1
| | | | | | | Patch by Harald Karnet, harald karner % gmx net. Thread [FFmpeg-devel] [PATCH] Bugfix H.263+ encoder frame header corruption Originally committed as revision 9131 to svn://svn.ffmpeg.org/ffmpeg/trunk
* merge huffman tables for rgb tooLoren Merritt2007-05-251-33/+71
| | | | Originally committed as revision 9124 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics (reduce nesting)Loren Merritt2007-05-241-11/+11
| | | | Originally committed as revision 9119 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use sparse huffman tables. 1.5% faster huffyuv decoding.Loren Merritt2007-05-241-10/+9
| | | | Originally committed as revision 9118 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add init_vlc_sparse(). faster than init_vlc() if there are lots of holes in ↵Loren Merritt2007-05-242-5/+25
| | | | | | the tables. Originally committed as revision 9117 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix dca_bitalloc_index decoder initSergey Vlasov2007-05-241-1/+1
| | | | | | | Patch by Sergey Vlasov (printf("%csu at altlinux%s",'v',".ru");) Thread [FFmpeg-devel] [PATCH] dca: fix dca_bitalloc_index decoder init Originally committed as revision 9115 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix dca.c compilation with #define TRACESergey Vlasov2007-05-241-0/+2
| | | | | | | Patch by Sergey Vlasov (v\0163u at \0141ltlinux.ru) Thread [FFmpeg-devel] [PATCH] dca: fix compilation with #define TRACE Originally committed as revision 9114 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix mjpeg decoding with broken huffman table headersOded Shimon2007-05-231-10/+16
| | | | Originally committed as revision 9111 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove duplicate bytestream functionsRamiro Polla2007-05-235-113/+59
| | | | Originally committed as revision 9108 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Export the four remaining H.264 decoder intra prediction functions for reuse inPanagiotis Issaris2007-05-231-8/+8
| | | | | | | the H.264 encoder. These functions are: pred8x8_left_dc_c, pred8x8_top_dc_c, pred16x16_left_dc_c and pred16x16_top_dc_c. Originally committed as revision 9107 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ReindentPanagiotis Issaris2007-05-231-4/+4
| | | | Originally committed as revision 9106 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the compilation of h264idct.c optional.Panagiotis Issaris2007-05-232-3/+4
| | | | Originally committed as revision 9105 to svn://svn.ffmpeg.org/ffmpeg/trunk
* merge huffman tables so that we read 2 symbols at a time. 30% faster huffyuv ↵Loren Merritt2007-05-231-7/+52
| | | | | | decoding. Originally committed as revision 9104 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove mdct.o and fft.o from fft-test prerequisites list.Diego Biurrun2007-05-221-1/+1
| | | | | | | | Both objects were added to the link command, resulting in multiple definitions of symbols. Now linking works in the general case when mdct.o and fft.o are compiled into libavcodec.a. Originally committed as revision 9097 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only compile golomb.c when needed.Panagiotis Issaris2007-05-211-14/+13
| | | | Originally committed as revision 9094 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix compilation when the Sonic encoder and decoder were disabled and only ↵Panagiotis Issaris2007-05-211-1/+1
| | | | | | | | the Sonic LS encoder enabled. Originally committed as revision 9093 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only compile cabac.c when needed.Panagiotis Issaris2007-05-211-3/+2
| | | | Originally committed as revision 9092 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vorbis encoder missed rename to libvorbisAurelien Jacobs2007-05-211-2/+2
| | | | Originally committed as revision 9091 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split the h261.c file into separate files for the encoder, decoder and ↵Panagiotis Issaris2007-05-215-941/+1034
| | | | | | common stuff. Originally committed as revision 9090 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename motion_test.c to motion-test.c, which is the naming scheme used by allDiego Biurrun2007-05-212-1/+1
| | | | | | | other test programs. As a positive sideeffect, this makes the build system try to actually create the executable file. Originally committed as revision 9086 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix imgresample-test linking.Diego Biurrun2007-05-211-0/+1
| | | | Originally committed as revision 9085 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add explanatory comments to some #endifs.Diego Biurrun2007-05-211-4/+4
| | | | Originally committed as revision 9084 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make compilation of mpegaudiodec conditionalAurelien Jacobs2007-05-201-3/+6
| | | | Originally committed as revision 9083 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove dependency of mpeg audio encoder over mpeg audio decoderAurelien Jacobs2007-05-205-796/+825
| | | | Originally committed as revision 9082 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add a ff_ prefix to some mpegaudio funcsAurelien Jacobs2007-05-205-11/+11
| | | | Originally committed as revision 9081 to svn://svn.ffmpeg.org/ffmpeg/trunk
* loosen dependencies over mpegaudiodecAurelien Jacobs2007-05-206-155/+233
| | | | Originally committed as revision 9080 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove incorrect comment; MMX2 is preferred over 3DNow! on AthlonZuxy Meng2007-05-201-1/+0
| | | | Originally committed as revision 9079 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use AV_LOG_ERROR instead of INFO for errorsMichael Niedermayer2007-05-201-3/+3
| | | | Originally committed as revision 9078 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sanity checks for bitrate tolerance and buffer size (= fail if a single ↵Michael Niedermayer2007-05-201-0/+10
| | | | | | | | frame at the requested bitrate would be bigger than the buffer size) Originally committed as revision 9077 to svn://svn.ffmpeg.org/ffmpeg/trunk
* slightly more correct spliting of framesMichael Niedermayer2007-05-201-4/+4
| | | | Originally committed as revision 9076 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move MJpegDecodeContext declaration from mjpeg.h to mjpegdec.hAurelien Jacobs2007-05-193-67/+69
| | | | Originally committed as revision 9074 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move mjpeg-b decoder in its own fileAurelien Jacobs2007-05-194-134/+166
| | | | Originally committed as revision 9073 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: forgot to svn add mjpegdec.hAurelien Jacobs2007-05-191-0/+40
| | | | Originally committed as revision 9072 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move sp5x decoder in its own fileAurelien Jacobs2007-05-193-170/+199
| | | | Originally committed as revision 9071 to svn://svn.ffmpeg.org/ffmpeg/trunk
* allows to disable jpegls decoderAurelien Jacobs2007-05-195-21/+38
| | | | Originally committed as revision 9070 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change brute force search to min-heap. 3.6x faster generate_len_table, 8% ↵Loren Merritt2007-05-191-42/+42
| | | | | | faster ffvhuff encoding. Originally committed as revision 9069 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move mjpega_dump_header bitstream filter in its own fileAurelien Jacobs2007-05-193-65/+93
| | | | Originally committed as revision 9068 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move imx_dump_header bitstream filter in its own fileAurelien Jacobs2007-05-193-32/+60
| | | | Originally committed as revision 9067 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move dump_extradata bitstream filter in its own fileAurelien Jacobs2007-05-193-31/+51
| | | | Originally committed as revision 9066 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move remove_extradata bitstream filter in its own fileAurelien Jacobs2007-05-193-36/+56
| | | | Originally committed as revision 9065 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move noise bitstream filter in its own fileAurelien Jacobs2007-05-193-27/+47
| | | | Originally committed as revision 9064 to svn://svn.ffmpeg.org/ffmpeg/trunk
OpenPOWER on IntegriCloud