[FFmpeg-devel] [PATCH 07/41] avformat/flvdec: Deduplicate AVClasses
Andreas Rheinhardt
andreas.rheinhardt at outlook.com
Thu Jun 17 05:31:28 EEST 2021
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 at outlook.com>
---
libavformat/flvdec.c | 24 +++++-------------------
1 file changed, 5 insertions(+), 19 deletions(-)
diff --git a/libavformat/flvdec.c b/libavformat/flvdec.c
index 60d1a5c654..b4a419177a 100644
--- a/libavformat/flvdec.c
+++ b/libavformat/flvdec.c
@@ -1365,8 +1365,8 @@ static const AVOption options[] = {
{ NULL }
};
-static const AVClass flv_class = {
- .class_name = "flvdec",
+static const AVClass flv_kux_class = {
+ .class_name = "(live) flv/kux demuxer",
.item_name = av_default_item_name,
.option = options,
.version = LIBAVUTIL_VERSION_INT,
@@ -1382,14 +1382,7 @@ const AVInputFormat ff_flv_demuxer = {
.read_seek = flv_read_seek,
.read_close = flv_read_close,
.extensions = "flv",
- .priv_class = &flv_class,
-};
-
-static const AVClass live_flv_class = {
- .class_name = "live_flvdec",
- .item_name = av_default_item_name,
- .option = options,
- .version = LIBAVUTIL_VERSION_INT,
+ .priv_class = &flv_kux_class,
};
const AVInputFormat ff_live_flv_demuxer = {
@@ -1402,17 +1395,10 @@ const AVInputFormat ff_live_flv_demuxer = {
.read_seek = flv_read_seek,
.read_close = flv_read_close,
.extensions = "flv",
- .priv_class = &live_flv_class,
+ .priv_class = &flv_kux_class,
.flags = AVFMT_TS_DISCONT
};
-static const AVClass kux_class = {
- .class_name = "kuxdec",
- .item_name = av_default_item_name,
- .option = options,
- .version = LIBAVUTIL_VERSION_INT,
-};
-
const AVInputFormat ff_kux_demuxer = {
.name = "kux",
.long_name = NULL_IF_CONFIG_SMALL("KUX (YouKu)"),
@@ -1423,5 +1409,5 @@ const AVInputFormat ff_kux_demuxer = {
.read_seek = flv_read_seek,
.read_close = flv_read_close,
.extensions = "kux",
- .priv_class = &kux_class,
+ .priv_class = &flv_kux_class,
};
--
2.27.0
More information about the ffmpeg-devel
mailing list