]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/anm.c
Merge commit '9ab5f7107d2f1411e9fda6c36af64524e5ed31d1'
[ffmpeg] / libavcodec / anm.c
index 9aef6d38daa1c226ec5b49278fd81d9492009191..79a87dde99e8a8d47e5719e5584277bdb7d89002 100644 (file)
@@ -189,6 +189,7 @@ 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),
@@ -196,5 +197,4 @@ AVCodec ff_anm_decoder = {
     .close          = decode_end,
     .decode         = decode_frame,
     .capabilities   = CODEC_CAP_DR1,
-    .long_name      = NULL_IF_CONFIG_SMALL("Deluxe Paint Animation"),
 };