summaryrefslogtreecommitdiff
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
* Fix the M bit for multi-packet NALs.Yao Peter2009-05-16
| | | | | | Patch by Yao Peter (peter AT yuvad DOT com) Originally committed as revision 18858 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
* oma: fix build if memcmp() is a macroMåns Rullgård2009-05-16
| | | | | | | | Any C library function may be a macro, so compound literals passed to memcmp() must be surrounded by parens to avoid being split on commas. Originally committed as revision 18856 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
* Move img_convert_ctx to VideoState and free it in stream_close().Martin Storsjö2009-05-16
| | | | | | Patch by Martin Storsjö, martin martin st Originally committed as revision 18854 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing frees to stream_close() and do_exit().Martin Storsjö2009-05-16
| | | | | | Patch by Martin Storsjö, martin martin st Originally committed as revision 18853 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
* move increment after debug printBaptiste Coudurier2009-05-16
| | | | Originally committed as revision 18851 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
* write 'stps' for mpeg-2 open gop in .movBaptiste Coudurier2009-05-15
| | | | Originally committed as revision 18838 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
* free Track and unset priv_data to avoid double free, fix memleakBaptiste Coudurier2009-05-15
| | | | Originally committed as revision 18836 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reindentBaptiste Coudurier2009-05-15
| | | | Originally committed as revision 18835 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove unneeded length checksBaptiste Coudurier2009-05-15
| | | | Originally committed as revision 18834 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
* Implement av_set_options_string().Stefano Sabatini2009-05-14
| | | | Originally committed as revision 18832 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use flags field and remove key_frame fieldBaptiste Coudurier2009-05-14
| | | | Originally committed as revision 18831 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change cts type to int, save some spaceBaptiste Coudurier2009-05-14
| | | | Originally committed as revision 18830 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
* Add support in av_parse_color() to a "random" color name, which willStefano Sabatini2009-05-14
| | | | | | | result in a randomly choosen random color, as it is with the "bikeshed" color. Originally committed as revision 18828 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make case insensitive the match for the color name inStefano Sabatini2009-05-14
| | | | | | av_parse_color(). Originally committed as revision 18827 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
* Use a single space after an ending period and the beginning of theStefano Sabatini2009-05-14
| | | | | | next sentence, consistent with the FFmpeg documentation style. Originally committed as revision 18824 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Apply documentation fixes: use third person, fix grammar and removeStefano Sabatini2009-05-14
| | | | | | inconsistent '\p'. Originally committed as revision 18823 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add gnu/kfreebsd to list of recognized operating systems.Andres Mejia2009-05-14
| | | | | | patch by Andres Mejia, mcitadel gmail com Originally committed as revision 18822 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
* Add PCE support to the ADTS muxer.Alex Converse2009-05-13
| | | | Originally committed as revision 18818 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