mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-06 15:49:50 +08:00
lavc: use designated initialisers for all codecs.
It's more readable and less prone to breakage.
This commit is contained in:
@ -610,30 +610,28 @@ static av_cold int decode_end(AVCodecContext *avctx)
|
||||
|
||||
#if CONFIG_MSZH_DECODER
|
||||
AVCodec ff_mszh_decoder = {
|
||||
"mszh",
|
||||
AVMEDIA_TYPE_VIDEO,
|
||||
CODEC_ID_MSZH,
|
||||
sizeof(LclDecContext),
|
||||
decode_init,
|
||||
NULL,
|
||||
decode_end,
|
||||
decode_frame,
|
||||
CODEC_CAP_DR1,
|
||||
.name = "mszh",
|
||||
.type = AVMEDIA_TYPE_VIDEO,
|
||||
.id = CODEC_ID_MSZH,
|
||||
.priv_data_size = sizeof(LclDecContext),
|
||||
.init = decode_init,
|
||||
.close = decode_end,
|
||||
.decode = decode_frame,
|
||||
.capabilities = CODEC_CAP_DR1,
|
||||
.long_name = NULL_IF_CONFIG_SMALL("LCL (LossLess Codec Library) MSZH"),
|
||||
};
|
||||
#endif
|
||||
|
||||
#if CONFIG_ZLIB_DECODER
|
||||
AVCodec ff_zlib_decoder = {
|
||||
"zlib",
|
||||
AVMEDIA_TYPE_VIDEO,
|
||||
CODEC_ID_ZLIB,
|
||||
sizeof(LclDecContext),
|
||||
decode_init,
|
||||
NULL,
|
||||
decode_end,
|
||||
decode_frame,
|
||||
CODEC_CAP_DR1,
|
||||
.name = "zlib",
|
||||
.type = AVMEDIA_TYPE_VIDEO,
|
||||
.id = CODEC_ID_ZLIB,
|
||||
.priv_data_size = sizeof(LclDecContext),
|
||||
.init = decode_init,
|
||||
.close = decode_end,
|
||||
.decode = decode_frame,
|
||||
.capabilities = CODEC_CAP_DR1,
|
||||
.long_name = NULL_IF_CONFIG_SMALL("LCL (LossLess Codec Library) ZLIB"),
|
||||
};
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user