Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-09-17mlpenc: Working MLP/TrueHD encoderJai Luthra
* Multichannel support for TrueHD is experimental There should be downmix substreams present for 2+ channel bitstreams, but ffmpeg decoder doesn't need it. Will add support for this soon. * There might be lossless check failures on LFE channels * 32-bit sample support has been removed for now, will add it later While testing, some samples gave lossless check failures when enforcing s32. Probably this will also get solved with the LFE issues. Signed-off-by: Jai Luthra <me@jailuthra.in>
2009-10-16mlp: Use smaller CRC tables if CONFIG_SMALL.Reimar Döffinger
Patch by Reimar. Originally committed as revision 20253 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-15Fix unaligned accesses by doing bytewise access until aligned, thenRamiro Polla
continuing in 32-bit quantities. Fixes crash observed on sparc during FATE mlp test. Patch by Ramiro. Originally committed as revision 19200 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-30Add missing void keyword to parameterless function declarations.Diego Biurrun
Originally committed as revision 16860 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-12Fix build: Add intreadwrite.h and bswap.h #includes where necessary.Diego Biurrun
Originally committed as revision 16556 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-03mlp: initialize all CRC tables in a common function.Laurent Aimar
This way the decoder does not have to depend on the parser being initialized before. Patch by Laurent Aimar <fenrir at via dot ecp dot fr>. Originally committed as revision 15986 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-14mlp: split simple inline function that xors 4 bytes into one.Ramiro Polla
Originally committed as revision 14747 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-13mlp: Split common code from parser and decoder to be used by encoder.Ramiro Polla
Originally committed as revision 14733 to svn://svn.ffmpeg.org/ffmpeg/trunk