diff options
Diffstat (limited to 'libavformat/anm.c')
-rw-r--r-- | libavformat/anm.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavformat/anm.c b/libavformat/anm.c index 269e325e42..e35dc1517d 100644 --- a/libavformat/anm.c +++ b/libavformat/anm.c @@ -226,10 +226,10 @@ repeat: } AVInputFormat ff_anm_demuxer = { - "anm", - NULL_IF_CONFIG_SMALL("Deluxe Paint Animation"), - sizeof(AnmDemuxContext), - probe, - read_header, - read_packet, + .name = "anm", + .long_name = NULL_IF_CONFIG_SMALL("Deluxe Paint Animation"), + .priv_data_size = sizeof(AnmDemuxContext), + .read_probe = probe, + .read_header = read_header, + .read_packet = read_packet, }; |