diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-06-07 16:13:33 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-07-08 16:03:18 +0200 |
commit | 6a055bf03612a67280e1188b269d2fa6cb08d3e7 (patch) | |
tree | 32d0241612285cf46dc451fb5a70281f8198958b /libavformat/flacdec.c | |
parent | 168565ce44308451a50b3ece731727988e0f2389 (diff) | |
download | ffmpeg-6a055bf03612a67280e1188b269d2fa6cb08d3e7.tar.gz |
avformat/rawdec: Deduplicate AVClasses based upon ff_raw_options
The child_class_next API relied on different (de)muxers to use
different AVClasses; yet this API has been replaced by
child_class_iterate.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/flacdec.c')
-rw-r--r-- | libavformat/flacdec.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavformat/flacdec.c b/libavformat/flacdec.c index c841fdba01..bfa464c508 100644 --- a/libavformat/flacdec.c +++ b/libavformat/flacdec.c @@ -328,7 +328,6 @@ static int flac_seek(AVFormatContext *s, int stream_index, int64_t timestamp, in return -1; } -FF_RAW_DEMUXER_CLASS(flac) const AVInputFormat ff_flac_demuxer = { .name = "flac", .long_name = NULL_IF_CONFIG_SMALL("raw FLAC"), @@ -341,5 +340,5 @@ const AVInputFormat ff_flac_demuxer = { .extensions = "flac", .raw_codec_id = AV_CODEC_ID_FLAC, .priv_data_size = sizeof(FLACDecContext), - .priv_class = &flac_demuxer_class, + .priv_class = &ff_raw_demuxer_class, }; |