summaryrefslogtreecommitdiff
path: root/libavcodec/gsm_parser.c
Commit message (Collapse)AuthorAgeFilesLines
* avcodec/gsm_parser: Replace codec_id check by assertMichael Niedermayer2015-08-121-4/+2
| | | | | | | 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>
* Merge commit 'a16577d9857206089fd8bce6a342b31dbd7fb9b0'Michael Niedermayer2013-11-261-1/+2
|\ | | | | | | | | | | | | | | | | | | * commit 'a16577d9857206089fd8bce6a342b31dbd7fb9b0': MSN Audio support Conflicts: libavformat/riff.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * MSN Audio supportKostya Shishkov2013-11-261-1/+2
| | | | | | | | | | | | | | This is essentially a MS GSM decoder extension that supports more sampling rates and lower bitrates. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* | Reinstate proper FFmpeg license for all files.Thilo Borgmann2013-08-301-4/+4
| |
* | gsm_parser: fix infinite loopMichael Niedermayer2012-11-071-1/+4
|/ | | | | Fixes Ticket1894 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov2012-08-071-3/+3
|
* gsm parser: set durationJustin Ruggles2012-02-201-2/+12
|
* avcodec: add GSM parserJustin Ruggles2012-01-111-0/+79
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.