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
2012-02-01westwood_aud: Fix project referenceMichael Niedermayer
"Copyright (c) 2003 The ffmpeg Project" and "part of libav" is ROTFL Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-01-27lavf: remove AVFormatParameters from AVFormatContext.read_header signatureAnton Khirnov
2012-01-24aud: remove unneeded field, audio_stream_index from contextJustin Ruggles
There is only one stream, so it will always be index 0. This also allows for removal of the private context.
2012-01-24aud: fix time stamp calculation for ADPCM IMA WSJustin Ruggles
also allows for removing some unused context fields
2012-01-24aud: simplify header parsingJustin Ruggles
also allows for removing some unused context fields
2012-01-24aud: set pts_wrap_bits to 64.Justin Ruggles
Time stamps are not read from the bitstream, so no wrapping is needed.
2012-01-24cosmetics: indentationJustin Ruggles
2012-01-24aud: support Westwood SND1 audio in AUD files.Justin Ruggles
Fixes decoding of the handful of "death scream" samples from "Command and Conquer" that use SND1. e.g. http://samples.libav.org/game-formats/westwood-aud/nuyell1.aud http://samples.libav.org/game-formats/westwood-aud/nuyell7.aud
2012-01-23westwood: split the AUD and VQA demuxers into separate files.Justin Ruggles
They have no code in common.