X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavformat%2Fpcmdec.c;h=542ee1774982d04b985261997b75c63807c12404;hb=a40f6a5c698e314ab8c2770c1230ae0d0bd23a33;hp=3e6132b88064126a16e9832fc571587c70885dfb;hpb=b81f8880e010ccdef3604d9beb681d3c4c6a7bc0;p=ffmpeg diff --git a/libavformat/pcmdec.c b/libavformat/pcmdec.c index 3e6132b8806..542ee177498 100644 --- a/libavformat/pcmdec.c +++ b/libavformat/pcmdec.c @@ -49,8 +49,8 @@ static int raw_read_packet(AVFormatContext *s, AVPacket *pkt) } static const AVOption pcm_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 }, + { "sample_rate", "", offsetof(RawAudioDemuxerContext, sample_rate), AV_OPT_TYPE_INT, {.dbl = 0}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM }, + { "channels", "", offsetof(RawAudioDemuxerContext, channels), AV_OPT_TYPE_INT, {.dbl = 0}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM }, { NULL }, };