diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2011-10-28 00:07:32 -0400 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2011-11-02 14:41:16 -0400 |
commit | 87c57d807fa198b97587bbf211b8d375f925c737 (patch) | |
tree | 4d6f9f3bb7ae8c9160eacd657bb2b03c3fbafaad /libavformat/rawdec.c | |
parent | c6cd0e17f33f3f921780866f914abe860f912b8e (diff) | |
download | ffmpeg-87c57d807fa198b97587bbf211b8d375f925c737.tar.gz |
Create separate functions for the raw GSM demuxer.
Put the new raw GSM demuxer in its own file.
Fixes raw GSM demuxing.
Diffstat (limited to 'libavformat/rawdec.c')
-rw-r--r-- | libavformat/rawdec.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/libavformat/rawdec.c b/libavformat/rawdec.c index fb3336d37c..db8a0cd62b 100644 --- a/libavformat/rawdec.c +++ b/libavformat/rawdec.c @@ -186,18 +186,6 @@ AVInputFormat ff_g722_demuxer = { }; #endif -#if CONFIG_GSM_DEMUXER -AVInputFormat ff_gsm_demuxer = { - .name = "gsm", - .long_name = NULL_IF_CONFIG_SMALL("raw GSM"), - .read_header = ff_raw_audio_read_header, - .read_packet = ff_raw_read_partial_packet, - .flags= AVFMT_GENERIC_INDEX, - .extensions = "gsm", - .value = CODEC_ID_GSM, -}; -#endif - #if CONFIG_LATM_DEMUXER AVInputFormat ff_latm_demuxer = { .name = "latm", |