mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/pngenc: Deduplicate 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>
This commit is contained in:
parent
34ff543672
commit
f41a9b331e
|
@ -1108,14 +1108,7 @@ static const AVOption options[] = {
|
|||
};
|
||||
|
||||
static const AVClass pngenc_class = {
|
||||
.class_name = "PNG encoder",
|
||||
.item_name = av_default_item_name,
|
||||
.option = options,
|
||||
.version = LIBAVUTIL_VERSION_INT,
|
||||
};
|
||||
|
||||
static const AVClass apngenc_class = {
|
||||
.class_name = "APNG encoder",
|
||||
.class_name = "(A)PNG encoder",
|
||||
.item_name = av_default_item_name,
|
||||
.option = options,
|
||||
.version = LIBAVUTIL_VERSION_INT,
|
||||
|
@ -1161,6 +1154,6 @@ const AVCodec ff_apng_encoder = {
|
|||
AV_PIX_FMT_GRAY16BE, AV_PIX_FMT_YA16BE,
|
||||
AV_PIX_FMT_NONE
|
||||
},
|
||||
.priv_class = &apngenc_class,
|
||||
.priv_class = &pngenc_class,
|
||||
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue