summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Collapse)AuthorAge
* IndentBenjamin Larsson2009-05-17
| | | | Originally committed as revision 18864 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Switch from INIT_VLC_USE_STATIC to INIT_VLC_USE_NEW_STATIC in qdm2.Benjamin Larsson2009-05-17
| | | | Originally committed as revision 18863 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make TMV decoder check packet sizes before reading from it.Vitor Sessak2009-05-17
| | | | | | FATE test 295 might need updating. Originally committed as revision 18862 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a forward declaration of mpeg1_decode_block_intra to fix compilationReimar Döffinger2009-05-17
| | | | | | broken by r18859 for e.g. all gcc 4 compilers. Originally committed as revision 18861 to svn://svn.ffmpeg.org/ffmpeg/trunk
* eac3dec: use 16-bit pre-mantissas instead of 24-bit in AHT decoding. it isJustin Ruggles2009-05-17
| | | | | | simpler and also fixes a bug in GAQ dequantization. Originally committed as revision 18860 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mpeg12: fix non-standard use of "extern inline"Måns Rullgård2009-05-17
| | | | | | | | Rename ff_mpeg1_decode_block_intra to mpeg1_decode_block_intra and make it static. Add ff_mpeg1_decode_block_intra as plain extern function calling mpeg1_decode_block_intra. Originally committed as revision 18859 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ac3dec: fix coupling range check. the start subband must be less thanJustin Ruggles2009-05-16
| | | | | | the end subband. Originally committed as revision 18857 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support for getting (i)MDCT output multiplied by a constant scaling factor.Siarhei Siamashka2009-05-16
| | | | | | | | Scaling (i)MDCT output has no runtime overhead and can be used to improve performance of audio codecs. All the changes are only needed in 'ff_mdct_init' function and slow down initialization a bit. Originally committed as revision 18855 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix off-by-one error in MS RLE decoder which may result into writing pastKostya Shishkov2009-05-16
| | | | | | picture buffer. Originally committed as revision 18852 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: K&R coding style, indent correctly, break overly long linesDiego Biurrun2009-05-15
| | | | Originally committed as revision 18850 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace 'x == 0' if conditions with '!x'.Diego Biurrun2009-05-15
| | | | Originally committed as revision 18849 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Remove pointless {}.Diego Biurrun2009-05-15
| | | | Originally committed as revision 18848 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Surround AMR_WB encoding code by appropriate #ifdefs.Diego Biurrun2009-05-15
| | | | | | This will help support the opencore AMR library. Originally committed as revision 18847 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Move some more code around to avoid #ifdeffery.Diego Biurrun2009-05-15
| | | | Originally committed as revision 18846 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Move functions around so that encoding and decoding functions areDiego Biurrun2009-05-15
| | | | | | grouped together. This will save some #ifdefs. Originally committed as revision 18845 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove redundant #if condition. Two CONFIG_LIBAMR_NB blocks were right afterDiego Biurrun2009-05-15
| | | | | | each other so that the second check was pointless. Originally committed as revision 18844 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add av_cold attribute to amr_nb decoding/encoding initialization functions.Diego Biurrun2009-05-15
| | | | Originally committed as revision 18843 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bugfix for bug introduced in the multichannel cook patchset.Benjamin Larsson2009-05-15
| | | | Originally committed as revision 18842 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlp: Simplify adressing of state and coeffs arrays for both filters by makingRamiro Polla2009-05-15
| | | | | | the arrays sequential. Originally committed as revision 18841 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlp: include mlp.h and use MAX_CHANNELS instead of hardcoding value 8.Ramiro Polla2009-05-15
| | | | Originally committed as revision 18840 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ensure that we don't read from invalid memory with B-frame qpelDavid Conrad2009-05-15
| | | | Originally committed as revision 18839 to svn://svn.ffmpeg.org/ffmpeg/trunk
* decode mpeg-2 closed gop first b frames, fix issue #824Baptiste Coudurier2009-05-15
| | | | Originally committed as revision 18837 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change pic type to Picture* and remove castsBaptiste Coudurier2009-05-15
| | | | Originally committed as revision 18833 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document av_set_string3() returned error codes.Stefano Sabatini2009-05-14
| | | | Originally committed as revision 18829 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make av_set_string3() print a message in case of unknown option.Stefano Sabatini2009-05-14
| | | | Originally committed as revision 18826 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Provide a context to av_log() calls in av_set_number2() andStefano Sabatini2009-05-14
| | | | | | av_set_string3(). Originally committed as revision 18825 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix for issue #829 ("ffvorbis outputs crackling sound, libvorbis plays fine")Siarhei Siamashka2009-05-14
| | | | | | | | | | | | | | This was off-by-one bug which affects floor0 encoded files. Tracked down by valgrind (was reported as the use of uninitialized memory). With this patch applied, tiny_psnr now reports the following when ffvorbis is compared to libvorbis-1.0beta4 output for 'lsp-test.ogg' sample: stddev: 0.76 PSNR: 98.69 bytes: 3498380/ 3498452 Output from libvorbis-1.2 is substantially different: stddev: 132.57 PSNR: 53.87 bytes: 3498424/ 3498496 Originally committed as revision 18821 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix VBV delay for mpeg1/2 CBR.Michael Niedermayer2009-05-14
| | | | Originally committed as revision 18820 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use skip_bits_long() for large skipsDavid Conrad2009-05-14
| | | | | | This fixes ogg/theora on ARM (more generally the A32 bitstream reader) Originally committed as revision 18819 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Subroutine to copy an AAC Program Config Element (PCE)Alex Converse2009-05-13
| | | | Originally committed as revision 18817 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics after last commitAlex Converse2009-05-13
| | | | Originally committed as revision 18816 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow parsing and decoding of ADTS AAC files with channel config = 0Alex Converse2009-05-13
| | | | Originally committed as revision 18815 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move the ADTS header size to the parser's header file.Alex Converse2009-05-13
| | | | Originally committed as revision 18814 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a quick description to the H.264 BSFAlex Converse2009-05-13
| | | | Originally committed as revision 18809 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add casts to silence gcc warningsBaptiste Coudurier2009-05-13
| | | | Originally committed as revision 18806 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add casts to silence gcc warningsBaptiste Coudurier2009-05-13
| | | | Originally committed as revision 18805 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix bandwith vs. bandwiDth typo.Diego Biurrun2009-05-12
| | | | Originally committed as revision 18804 to svn://svn.ffmpeg.org/ffmpeg/trunk
* V210 Uncompressed 4:2:2 10-bit encoder and decoderBaptiste Coudurier2009-05-12
| | | | Originally committed as revision 18801 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support 16K samplerate in Nellymoser.Alexander Chemeris2009-05-11
| | | | | | patch by Alexander Chemeris, ipse.ffmpeg gmail.com Originally committed as revision 18798 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a chroma_sample_location field to define positioning of chroma samplesDavid Conrad2009-05-11
| | | | Originally committed as revision 18795 to svn://svn.ffmpeg.org/ffmpeg/trunk
* PPC: 32-bit asm for MAC64 and MLS64Måns Rullgård2009-05-11
| | | | | | | | GCC makes a mess of these operations, so give it a hand. 55% faster MP3 decoding on G4. Originally committed as revision 18794 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sgi encoder does not support pal8Baptiste Coudurier2009-05-10
| | | | Originally committed as revision 18791 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reindentBaptiste Coudurier2009-05-10
| | | | Originally committed as revision 18786 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check for palette presence, fix crash with QT-BMP.mov, issue #1074Baptiste Coudurier2009-05-10
| | | | Originally committed as revision 18785 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove dead nested assignment found by CSABenjamin Larsson2009-05-10
| | | | Originally committed as revision 18784 to svn://svn.ffmpeg.org/ffmpeg/trunk
* update comment for rgb 16 bit in .movBaptiste Coudurier2009-05-10
| | | | Originally committed as revision 18777 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add necessary header for CONFIG_RUNTIME_CPUDETECT preprocessor definition.Diego Biurrun2009-05-09
| | | | Originally committed as revision 18774 to svn://svn.ffmpeg.org/ffmpeg/trunk
* data parameter of dnxhd_encode_picture() should not be const.Daniel Verkamp2009-05-08
| | | | | | | Fixes "dnxhdenc.c:805: warning: initialization from incompatible pointer type". patch by Daniel Verkamp, daniel drv nu Originally committed as revision 18773 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct x/ymin to avoid segfault due to out of picture reads.Michael Niedermayer2009-05-08
| | | | Originally committed as revision 18771 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add 8088flex TMV video decoder.Daniel Verkamp2009-05-06
| | | | | | Patch by Daniel Verkamp name at drv ... nu. Originally committed as revision 18765 to svn://svn.ffmpeg.org/ffmpeg/trunk