X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavformat%2Fxwma.c;h=9e100b1b0bee758b737748017fcb8b88e65041c7;hb=44187717c1611695ff441d22f29c7882bd318ae4;hp=d068b8259a65bec3ed9b746d4f1ee62fdbed8c1a;hpb=83f9bc8aeece0d7c5b1fadaf91118ee6a97a0390;p=ffmpeg diff --git a/libavformat/xwma.c b/libavformat/xwma.c index d068b8259a6..9e100b1b0be 100644 --- a/libavformat/xwma.c +++ b/libavformat/xwma.c @@ -252,10 +252,10 @@ static int xwma_read_packet(AVFormatContext *s, AVPacket *pkt) } AVInputFormat ff_xwma_demuxer = { - "xwma", - NULL_IF_CONFIG_SMALL("Microsoft xWMA"), - sizeof(XWMAContext), - xwma_probe, - xwma_read_header, - xwma_read_packet, + .name = "xwma", + .long_name = NULL_IF_CONFIG_SMALL("Microsoft xWMA"), + .priv_data_size = sizeof(XWMAContext), + .read_probe = xwma_probe, + .read_header = xwma_read_header, + .read_packet = xwma_read_packet, };