X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavformat%2Fyop.c;h=da4f050ec0720bbb51d13089c62dbec4d48af708;hb=7cbe02575868e7d25acf3d319ece664702700f0a;hp=486fdc561607bd5814af009c6153deb88788dca5;hpb=cbfdfbe846f872d4283579c8cbca42c90896905c;p=ffmpeg diff --git a/libavformat/yop.c b/libavformat/yop.c index 486fdc56160..da4f050ec07 100644 --- a/libavformat/yop.c +++ b/libavformat/yop.c @@ -1,5 +1,4 @@ -/** - * @file +/* * Psygnosis YOP demuxer * * Copyright (C) 2010 Mohamed Naufal Basheer @@ -203,14 +202,14 @@ static int yop_read_seek(AVFormatContext *s, int stream_index, } AVInputFormat ff_yop_demuxer = { - "yop", - NULL_IF_CONFIG_SMALL("Psygnosis YOP Format"), - sizeof(YopDecContext), - yop_probe, - yop_read_header, - yop_read_packet, - yop_read_close, - yop_read_seek, + .name = "yop", + .long_name = NULL_IF_CONFIG_SMALL("Psygnosis YOP Format"), + .priv_data_size = sizeof(YopDecContext), + .read_probe = yop_probe, + .read_header = yop_read_header, + .read_packet = yop_read_packet, + .read_close = yop_read_close, + .read_seek = yop_read_seek, .extensions = "yop", .flags = AVFMT_GENERIC_INDEX, };