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 20:10:17 +0200 |
commit | 34ff543672e19d5b6d3879981080ea5639fa6e04 (patch) | |
tree | c2465ca1075234242b79d16bf8d1100c9285723b /libavcodec/flvenc.c | |
parent | 19d8077e3172dfac6efd5995903b2ae22cc52744 (diff) | |
download | ffmpeg-34ff543672e19d5b6d3879981080ea5639fa6e04.tar.gz |
avcodec/mpegvideo_enc: Deduplicate ff_mpv_generic_options-based AVClasses
The child_class_next API relied on different AVCodecs 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 'libavcodec/flvenc.c')
-rw-r--r-- | libavcodec/flvenc.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/libavcodec/flvenc.c b/libavcodec/flvenc.c index b40178cd43..614ef20243 100644 --- a/libavcodec/flvenc.c +++ b/libavcodec/flvenc.c @@ -91,18 +91,12 @@ void ff_flv2_encode_ac_esc(PutBitContext *pb, int slevel, int level, } } -static const AVClass flv_class = { - .class_name = "flv encoder", - .item_name = av_default_item_name, - .option = ff_mpv_generic_options, - .version = LIBAVUTIL_VERSION_INT, -}; - const AVCodec ff_flv_encoder = { .name = "flv", .long_name = NULL_IF_CONFIG_SMALL("FLV / Sorenson Spark / Sorenson H.263 (Flash Video)"), .type = AVMEDIA_TYPE_VIDEO, .id = AV_CODEC_ID_FLV1, + .priv_class = &ff_mpv_enc_class, .priv_data_size = sizeof(MpegEncContext), .init = ff_mpv_encode_init, .encode2 = ff_mpv_encode_picture, @@ -110,5 +104,4 @@ const AVCodec ff_flv_encoder = { .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE | FF_CODEC_CAP_INIT_CLEANUP, .pix_fmts = (const enum AVPixelFormat[]) { AV_PIX_FMT_YUV420P, AV_PIX_FMT_NONE}, - .priv_class = &flv_class, }; |