X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavformat%2Fnutdec.c;h=a9a992aae91e252d0a11c9c2c19a23e1f625bad7;hb=78accb876c173c881082018b169b5cf9fa13e6e1;hp=9939b29c50f442d90014b6286153c2f7a7e3800b;hpb=58257ea29e0716a50dc742959de876606ed22416;p=ffmpeg diff --git a/libavformat/nutdec.c b/libavformat/nutdec.c index 9939b29c50f..a9a992aae91 100644 --- a/libavformat/nutdec.c +++ b/libavformat/nutdec.c @@ -924,14 +924,14 @@ static int nut_read_close(AVFormatContext *s) #if CONFIG_NUT_DEMUXER AVInputFormat ff_nut_demuxer = { - "nut", - NULL_IF_CONFIG_SMALL("NUT format"), - sizeof(NUTContext), - nut_probe, - nut_read_header, - nut_read_packet, - nut_read_close, - read_seek, + .name = "nut", + .long_name = NULL_IF_CONFIG_SMALL("NUT format"), + .priv_data_size = sizeof(NUTContext), + .read_probe = nut_probe, + .read_header = nut_read_header, + .read_packet = nut_read_packet, + .read_close = nut_read_close, + .read_seek = read_seek, .extensions = "nut", .codec_tag = (const AVCodecTag * const []) { ff_codec_bmp_tags, ff_nut_video_tags, ff_codec_wav_tags, ff_nut_subtitle_tags, 0 }, };