X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Fanm.c;h=b70d220c9a27cf7fe4eca3cbda5ade79b4bdbc24;hb=4628443ca3534060888dd0015b229337eac13fd2;hp=1c4c7e2497cb909aa6a6f5af045b412e92e66197;hpb=6d97484d72e33f7dde9493a9ead1a72e2f029605;p=ffmpeg diff --git a/libavcodec/anm.c b/libavcodec/anm.c index 1c4c7e2497c..b70d220c9a2 100644 --- a/libavcodec/anm.c +++ b/libavcodec/anm.c @@ -191,12 +191,12 @@ static av_cold int decode_end(AVCodecContext *avctx) AVCodec ff_anm_decoder = { .name = "anm", + .long_name = NULL_IF_CONFIG_SMALL("Deluxe Paint Animation"), .type = AVMEDIA_TYPE_VIDEO, .id = AV_CODEC_ID_ANM, .priv_data_size = sizeof(AnmContext), .init = decode_init, .close = decode_end, .decode = decode_frame, - .capabilities = CODEC_CAP_DR1, - .long_name = NULL_IF_CONFIG_SMALL("Deluxe Paint Animation"), + .capabilities = AV_CODEC_CAP_DR1, };