diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-09-14 09:54:29 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-09-17 06:42:32 +0200 |
commit | 34d2bf30a082d489487493df40496cc18ca4300b (patch) | |
tree | b414bd79cb069a733b977a2adf90773b6a402c27 /libavformat/rawdec.c | |
parent | d906f49aa8f36fc173cfa96580cbe29e88be5049 (diff) | |
download | ffmpeg-34d2bf30a082d489487493df40496cc18ca4300b.tar.gz |
pcmdec: use unique classes for all pcm demuxers.
Diffstat (limited to 'libavformat/rawdec.c')
-rw-r--r-- | libavformat/rawdec.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/libavformat/rawdec.c b/libavformat/rawdec.c index f0d487bd6f..0b9a0824ff 100644 --- a/libavformat/rawdec.c +++ b/libavformat/rawdec.c @@ -167,19 +167,6 @@ fail: /* Note: Do not forget to add new entries to the Makefile as well. */ -static const AVOption audio_options[] = { - { "sample_rate", "", offsetof(RawAudioDemuxerContext, sample_rate), FF_OPT_TYPE_INT, {.dbl = 0}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM }, - { "channels", "", offsetof(RawAudioDemuxerContext, channels), FF_OPT_TYPE_INT, {.dbl = 0}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM }, - { NULL }, -}; - -const AVClass ff_rawaudio_demuxer_class = { - .class_name = "rawaudio demuxer", - .item_name = av_default_item_name, - .option = audio_options, - .version = LIBAVUTIL_VERSION_INT, -}; - #define OFFSET(x) offsetof(FFRawVideoDemuxerContext, x) #define DEC AV_OPT_FLAG_DECODING_PARAM static const AVOption video_options[] = { |