[FFmpeg-cvslog] avformat/flvdec: Deduplicate AVClasses
Andreas Rheinhardt
git at videolan.org
Thu Jul 8 21:42:16 EEST 2021
ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | Mon Jun 7 16:13:33 2021 +0200| [e4ee2a0629e322d1c0bc23bbf3e65c43b06abe56] | committer: Andreas Rheinhardt
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 at outlook.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e4ee2a0629e322d1c0bc23bbf3e65c43b06abe56
---
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,
};
More information about the ffmpeg-cvslog
mailing list