diff options
Diffstat (limited to 'libavcodec/bintext.c')
-rw-r--r-- | libavcodec/bintext.c | 51 |
1 files changed, 24 insertions, 27 deletions
diff --git a/libavcodec/bintext.c b/libavcodec/bintext.c index df37feea12..0b46dd444e 100644 --- a/libavcodec/bintext.c +++ b/libavcodec/bintext.c @@ -211,40 +211,37 @@ static av_cold int decode_end(AVCodecContext *avctx) } AVCodec ff_bintext_decoder = { - "bintext", - AVMEDIA_TYPE_VIDEO, - CODEC_ID_BINTEXT, - sizeof(XbinContext), - decode_init, - NULL, - decode_end, - decode_frame, - CODEC_CAP_DR1, + .name = "bintext", + .type = AVMEDIA_TYPE_VIDEO, + .id = CODEC_ID_BINTEXT, + .priv_data_size = sizeof(XbinContext), + .init = decode_init, + .close = decode_end, + .decode = decode_frame, + .capabilities = CODEC_CAP_DR1, .long_name = NULL_IF_CONFIG_SMALL("Binary text"), }; AVCodec ff_xbin_decoder = { - "xbin", - AVMEDIA_TYPE_VIDEO, - CODEC_ID_XBIN, - sizeof(XbinContext), - decode_init, - NULL, - decode_end, - decode_frame, - CODEC_CAP_DR1, + .name = "xbin", + .type = AVMEDIA_TYPE_VIDEO, + .id = CODEC_ID_XBIN, + .priv_data_size = sizeof(XbinContext), + .init = decode_init, + .close = decode_end, + .decode = decode_frame, + .capabilities = CODEC_CAP_DR1, .long_name = NULL_IF_CONFIG_SMALL("eXtended BINary text"), }; AVCodec ff_idf_decoder = { - "idf", - AVMEDIA_TYPE_VIDEO, - CODEC_ID_IDF, - sizeof(XbinContext), - decode_init, - NULL, - decode_end, - decode_frame, - CODEC_CAP_DR1, + .name = "idf", + .type = AVMEDIA_TYPE_VIDEO, + .id = CODEC_ID_IDF, + .priv_data_size = sizeof(XbinContext), + .init = decode_init, + .close = decode_end, + .decode = decode_frame, + .capabilities = CODEC_CAP_DR1, .long_name = NULL_IF_CONFIG_SMALL("iCEDraw text"), }; |