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.rheinha...@outlook.com> --- libavformat/asfenc.c | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/libavformat/asfenc.c b/libavformat/asfenc.c index 8e29a3b733..a8a844ce6e 100644 --- a/libavformat/asfenc.c +++ b/libavformat/asfenc.c @@ -1154,14 +1154,14 @@ static const AVOption asf_options[] = { { NULL }, }; -#if CONFIG_ASF_MUXER static const AVClass asf_muxer_class = { - .class_name = "ASF muxer", + .class_name = "ASF (stream) muxer", .item_name = av_default_item_name, .option = asf_options, .version = LIBAVUTIL_VERSION_INT, }; +#if CONFIG_ASF_MUXER const AVOutputFormat ff_asf_muxer = { .name = "asf", .long_name = NULL_IF_CONFIG_SMALL("ASF (Advanced / Active Streaming Format)"), @@ -1180,13 +1180,6 @@ const AVOutputFormat ff_asf_muxer = { #endif /* CONFIG_ASF_MUXER */ #if CONFIG_ASF_STREAM_MUXER -static const AVClass asf_stream_muxer_class = { - .class_name = "ASF stream muxer", - .item_name = av_default_item_name, - .option = asf_options, - .version = LIBAVUTIL_VERSION_INT, -}; - const AVOutputFormat ff_asf_stream_muxer = { .name = "asf_stream", .long_name = NULL_IF_CONFIG_SMALL("ASF (Advanced / Active Streaming Format)"), @@ -1200,6 +1193,6 @@ const AVOutputFormat ff_asf_stream_muxer = { .write_trailer = asf_write_trailer, .flags = AVFMT_GLOBALHEADER, .codec_tag = asf_codec_tags, - .priv_class = &asf_stream_muxer_class, + .priv_class = &asf_muxer_class, }; #endif /* CONFIG_ASF_STREAM_MUXER */ -- 2.27.0 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".