diff options
Diffstat (limited to 'libavformat/wv.c')
-rw-r--r-- | libavformat/wv.c | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/libavformat/wv.c b/libavformat/wv.c index d6d7099ba7..7cace17f0b 100644 --- a/libavformat/wv.c +++ b/libavformat/wv.c @@ -351,12 +351,11 @@ static int wv_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, } AVInputFormat ff_wv_demuxer = { - "wv", - NULL_IF_CONFIG_SMALL("WavPack"), - sizeof(WVContext), - wv_probe, - wv_read_header, - wv_read_packet, - NULL, - wv_read_seek, + .name = "wv", + .long_name = NULL_IF_CONFIG_SMALL("WavPack"), + .priv_data_size = sizeof(WVContext), + .read_probe = wv_probe, + .read_header = wv_read_header, + .read_packet = wv_read_packet, + .read_seek = wv_read_seek, }; |