summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-06-07 16:13:33 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-07-08 16:03:17 +0200
commite4ee2a0629e322d1c0bc23bbf3e65c43b06abe56 (patch)
treefd76175171ef015c1335ed39d98569d00a677b56 /libavformat
parent779dba0fc0f16cf4ddceba0b6527301889b58ccf (diff)
avformat/flvdec: Deduplicate AVClasses
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')
-rw-r--r--libavformat/flvdec.c24
1 files 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,
};