summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* mathops: whitespace cosmeticsMåns Rullgård2009-05-20
| | | | Originally committed as revision 18885 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Create shared libs correctly, fix mingw buildMåns Rullgård2009-05-20
| | | | Originally committed as revision 18884 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add QCP demuxer.Kenan Gillet2009-05-20
| | | | Originally committed as revision 18883 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mention LGPL AC-3 decoder in the changelog.Diego Biurrun2009-05-20
| | | | Originally committed as revision 18882 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix building from within subdirsMåns Rullgård2009-05-20
| | | | Originally committed as revision 18881 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use IF1 frame sizes in AMR-WB.Martin Storsjö2009-05-20
| | | | | | Patch by Martin Storsjö: martin (remove that) at martin (oh and this too) st Originally committed as revision 18880 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use iMDCT output scaling to simplify ffvorbis and make it slightly faster.Siarhei Siamashka2009-05-20
| | | | Originally committed as revision 18879 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix for a problem with inverted sign of output data from ffvorbis decoder.Siarhei Siamashka2009-05-20
| | | | | | | | Now the sign of audio samples in ffvorbis output is the same as in original uncompressed audio file and this also allows the use of tiny_psnr to compare ffvorbis with libvorbis/tremor. Originally committed as revision 18878 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support for testing (i)MDCT output scale factor in fft-test tool.Siarhei Siamashka2009-05-20
| | | | Originally committed as revision 18877 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The AC-3 decoder is now LGPL. Exchange the license header and change referencesDiego Biurrun2009-05-19
| | | | | | in the build system and documentation that mark it as GPL. Originally committed as revision 18876 to svn://svn.ffmpeg.org/ffmpeg/trunk
* LGPL version of ac3_decode_transform_coeffs_ch, ~12.4% faster.Jason Garrett-Glaser2009-05-19
| | | | Originally committed as revision 18875 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Define ARCH_MIPS64 when building for MIPS64Måns Rullgård2009-05-19
| | | | Originally committed as revision 18874 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Define HAVE_BIGENDIAN as 0 or 1 according to CPU typeMåns Rullgård2009-05-19
| | | | | | | This should replace the inconsistently named and defined WORDS_BIGENDIAN. Originally committed as revision 18873 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: add some MIPS CPUsMåns Rullgård2009-05-19
| | | | Originally committed as revision 18872 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing libavformat dependencies on mpeg4audio.oAlex Converse2009-05-19
| | | | Originally committed as revision 18871 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Let SwScaler know that RGB48 BE/LE is 16-bits per component format.Kostya Shishkov2009-05-19
| | | | Originally committed as revision 29317 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Move AMR-WB-specific code to the AMR-WB section of the file.Diego Biurrun2009-05-19
| | | | | | Fixes compilation when AMR-NB #includes are not available on the system. Originally committed as revision 18870 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Move AMR-WB-specific code to the AMR-WB part of the file.Diego Biurrun2009-05-19
| | | | Originally committed as revision 18869 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make SwScaler recognize RGB48 BE/LE colourspaces (not support though).Kostya Shishkov2009-05-19
| | | | Originally committed as revision 29316 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Log with level AV_LOG_ERROR if av_parse_color() cannot recognize aStefano Sabatini2009-05-18
| | | | | | color. Originally committed as revision 18868 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless casts of vec_ld() parameters.Diego Biurrun2009-05-18
| | | | | | Gets rid of 'cast discards qualifiers from pointer target type' warnings. Originally committed as revision 18867 to svn://svn.ffmpeg.org/ffmpeg/trunk
* IndentBenjamin Larsson2009-05-17
| | | | Originally committed as revision 18866 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change from INIT_VLC_USE_STATIC to INIT_VLC_USE_NEW_STATIC in atrac3Benjamin Larsson2009-05-17
| | | | Originally committed as revision 18865 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 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