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
2015-08-12avcodec/gsm_parser: Replace codec_id check by assertMichael Niedermayer
A parser should never be called with a mismatching codec Found-by: Ganesh Ajjanagadde <gajjanag@mit.edu> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2013-11-26Merge commit 'a16577d9857206089fd8bce6a342b31dbd7fb9b0'Michael Niedermayer
* commit 'a16577d9857206089fd8bce6a342b31dbd7fb9b0': MSN Audio support Conflicts: libavformat/riff.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-11-26MSN Audio supportKostya Shishkov
This is essentially a MS GSM decoder extension that supports more sampling rates and lower bitrates. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2013-08-30Reinstate proper FFmpeg license for all files.Thilo Borgmann
2012-11-07gsm_parser: fix infinite loopMichael Niedermayer
Fixes Ticket1894 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-08-07Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov
2012-02-21gsm parser: set durationJustin Ruggles
2012-01-11avcodec: add GSM parserJustin Ruggles
The WAVE demuxer returns packets with many blocks per frame, which needs to be parsed into single blocks. This has a side-effect of fixing the timestamps.