summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* ReindentRobert Swain2008-08-21
| | | | Originally committed as revision 14877 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct regex file name matching as per Måns' suggestionRobert Swain2008-08-21
| | | | Originally committed as revision 14876 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The comment about channel order for AAC 5.1 audio was not correct, fix it.Andreas Öman2008-08-21
| | | | Originally committed as revision 14875 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add me as maintainer of the AAC decoder codeRobert Swain2008-08-21
| | | | Originally committed as revision 14874 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Last hunk of the AAC decoder code to be OKed and build system and documentationRobert Swain2008-08-21
| | | | | | alterations as appropriate Originally committed as revision 14873 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify timestamp reordering by using the new API.Michael Niedermayer2008-08-20
| | | | Originally committed as revision 14872 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Provide a simpler way for the user to reorder her timestamps.Michael Niedermayer2008-08-20
| | | | Originally committed as revision 14871 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: fail cleanly when the required compression lib is not compiled inAurelien Jacobs2008-08-20
| | | | Originally committed as revision 14870 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: stop parsing when skipping en element crossing over the end of fileAurelien Jacobs2008-08-20
| | | | Originally committed as revision 14869 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix #include path, headers from other directories need to haveDiego Biurrun2008-08-20
| | | | | | the directory name prefixed now. Originally committed as revision 14868 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename ff_init_vlcs function to the more descriptive name ff_mpeg12_init_vlcs.Diego Biurrun2008-08-20
| | | | | | Now that it is exported, this should avoid confusion and name clashes. Originally committed as revision 14867 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: comment spelling/grammar fixesDiego Biurrun2008-08-20
| | | | Originally committed as revision 14866 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroska: fix regression test according to r14862Aurelien Jacobs2008-08-20
| | | | Originally committed as revision 14865 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix PCM DVD divide by zero bug introduced in r14659. Patch supplied by lars ↵Peter Ross2008-08-20
| | | | | | dot taeuber at gmx dot net. Originally committed as revision 14864 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: indentationJustin Ruggles2008-08-20
| | | | Originally committed as revision 14863 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroska: add support for most variants of PCMAurelien Jacobs2008-08-20
| | | | Originally committed as revision 14862 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: handle EBML_ID_VOID and EBML_ID_CRC32 in a generic wayAurelien Jacobs2008-08-20
| | | | Originally committed as revision 14861 to svn://svn.ffmpeg.org/ffmpeg/trunk
* commit the OKed parts of the E-AC-3 decoderJustin Ruggles2008-08-20
| | | | Originally committed as revision 14860 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get data size based on the actual data array instead of coding-in the ↵Justin Ruggles2008-08-20
| | | | | | calculation Originally committed as revision 14859 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename AC3_MAX_FRAME_SIZE to AC3_FRAME_BUFFER_SIZE and increase the sizeJustin Ruggles2008-08-20
| | | | Originally committed as revision 14858 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement url_open_protocol(), which is basiclly the former url_open()Ronald S. Bultje2008-08-19
| | | | | | | | but which opens a URLProtocol instead of a filename. url_open() is reimplemented to call url_open_protocol(). See discussion on "url_open_protocol" on ffmpeg-devel. Originally committed as revision 14857 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: remove a redundant and misplaced doxy.Stefano Sabatini2008-08-19
| | | | Originally committed as revision 14856 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Deprecate av_fifo_realloc(). av_fifo_realloc2() should be used instead.Stefano Sabatini2008-08-19
| | | | Originally committed as revision 14855 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ok-ed parts from patch by zhentan feng.Zhentan Feng2008-08-19
| | | | Originally committed as revision 14854 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless #ifdef DEBUG (patch by Zhentan Feng).Zhentan Feng2008-08-19
| | | | Originally committed as revision 14853 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Workaround bug in types.h that has typedef __u64 under #ifndef __STRICT_ANSI__.Michael Niedermayer2008-08-19
| | | | Originally committed as revision 14852 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Untangle mpeg12.c and mdec.c so that mdec.c can be compiled separately.Diego Biurrun2008-08-19
| | | | Originally committed as revision 14851 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: s/const static/static const/gMathieu Malaterre2008-08-19
| | | | | | patch by Mathieu Malaterre, mathieu.malaterre gmail com Originally committed as revision 14850 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update changelog and general.texi to reflectJai Menon2008-08-19
| | | | | | | addition of the alac encoder, add Jai Menon to MAINTAINERS and bump LIBAVCODEC_VERSION_MINOR. Originally committed as revision 14849 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace invocations of av_fifo_realloc(), which is going to beStefano Sabatini2008-08-19
| | | | | | deprecated, with corresponding invocations of av_fifo_realloc2(). Originally committed as revision 14848 to svn://svn.ffmpeg.org/ffmpeg/trunk
* alacenc: compare against ALAC_MAX_LPC_ORDER instead of MAX_LPC_ORDERJai Menon2008-08-19
| | | | Originally committed as revision 14847 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement av_fifo_realloc2().Stefano Sabatini2008-08-19
| | | | Originally committed as revision 14846 to svn://svn.ffmpeg.org/ffmpeg/trunk
* alacenc: last few hunks approved by michaelJai Menon2008-08-19
| | | | Originally committed as revision 14845 to svn://svn.ffmpeg.org/ffmpeg/trunk
* alacenc: Use user-specified min and max prediction order.Ramiro Polla2008-08-19
| | | | Originally committed as revision 14844 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Import more OKed parts of ALAC encoder from GSoC repo.Ramiro Polla2008-08-19
| | | | Originally committed as revision 14843 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Making block size in bits variable and dependent on the DV specRoman Shaposhnik2008-08-19
| | | | Originally committed as revision 14842 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Making the number of blocks per macroblock dependent on the DV streamRoman Shaposhnik2008-08-19
| | | | | | specification Originally committed as revision 14841 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Introducing DV_MAX_BPM macro instead of a hardcoded value for theRoman Shaposhnik2008-08-19
| | | | | | highest number of blocks per macroblock Originally committed as revision 14840 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ok-ed parts from patch by zhentan feng.Zhentan Feng2008-08-19
| | | | Originally committed as revision 14839 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add regression tests for F32LE, F64BE and F64LE PCM codecs.Peter Ross2008-08-19
| | | | Originally committed as revision 14838 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make AIFF demuxer handle F32BE and F64BE PCM audio.Peter Ross2008-08-19
| | | | Originally committed as revision 14837 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make MOV demuxer handle F32BE, F32LE, F64BE and F64LE PCM audio.Peter Ross2008-08-19
| | | | Originally committed as revision 14836 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make RIFF-based demuxers handle F32LE and F64LE PCM audio.Peter Ross2008-08-19
| | | | Originally committed as revision 14835 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make AU demuxer handle S24BE, S32BE and F64BE PCM audio.Peter Ross2008-08-19
| | | | Originally committed as revision 14834 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add F64BE, F64LE and F64BE PCM codecs.Peter Ross2008-08-19
| | | | Originally committed as revision 14833 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add SAMPLE_FMT_DBL.Peter Ross2008-08-19
| | | | Originally committed as revision 14832 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix PCM_S16LE_PLANAR channel-address calculation bug introduced in r14659.Peter Ross2008-08-19
| | | | Originally committed as revision 14831 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark init_vlcs function as av_cold.Diego Biurrun2008-08-19
| | | | Originally committed as revision 14830 to svn://svn.ffmpeg.org/ffmpeg/trunk
* More OKed AAC decoder code hunksRobert Swain2008-08-18
| | | | Originally committed as revision 14829 to svn://svn.ffmpeg.org/ffmpeg/trunk
* More OKed AAC decoder code hunksRobert Swain2008-08-18
| | | | Originally committed as revision 14828 to svn://svn.ffmpeg.org/ffmpeg/trunk