X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=libavformat%2Ftmv.c;h=9df11a4d1178f8f56c77d64413e39a762291bf53;hb=f863cdef813e51d5850e2386618feafe197f06f4;hp=0a16ae111a2a070283f70e36a21190f15b376809;hpb=c137fdd778e1bb82c2f0d7fa4a88adc97058d6d4;p=ffmpeg diff --git a/libavformat/tmv.c b/libavformat/tmv.c index 0a16ae111a2..9df11a4d117 100644 --- a/libavformat/tmv.c +++ b/libavformat/tmv.c @@ -20,10 +20,10 @@ */ /** - * 8088flex TMV file demuxer * @file + * 8088flex TMV file demuxer * @author Daniel Verkamp - * @sa http://www.oldskool.org/pc/8088_Corruption + * @see http://www.oldskool.org/pc/8088_Corruption */ #include "libavutil/intreadwrite.h" @@ -179,13 +179,12 @@ static int tmv_read_seek(AVFormatContext *s, int stream_index, } AVInputFormat ff_tmv_demuxer = { - "tmv", - NULL_IF_CONFIG_SMALL("8088flex TMV"), - sizeof(TMVContext), - tmv_probe, - tmv_read_header, - tmv_read_packet, - NULL, - tmv_read_seek, + .name = "tmv", + .long_name = NULL_IF_CONFIG_SMALL("8088flex TMV"), + .priv_data_size = sizeof(TMVContext), + .read_probe = tmv_probe, + .read_header = tmv_read_header, + .read_packet = tmv_read_packet, + .read_seek = tmv_read_seek, .flags = AVFMT_GENERIC_INDEX, };