X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavformat%2Fivfdec.c;h=be1e2e92377ffd48f5bd331b0a006136fd80e5ce;hb=2e0c360abd74b94991aa9a271cadc72aae1471c2;hp=bc837a2b9024ef909dd050227be4d116271984bd;hpb=01fcbdf9cedcf14418b5886205261e532167f949;p=ffmpeg diff --git a/libavformat/ivfdec.c b/libavformat/ivfdec.c index bc837a2b902..be1e2e92377 100644 --- a/libavformat/ivfdec.c +++ b/libavformat/ivfdec.c @@ -32,7 +32,7 @@ static int probe(AVProbeData *p) return 0; } -static int read_header(AVFormatContext *s, AVFormatParameters *ap) +static int read_header(AVFormatContext *s) { AVStream *st; AVRational time_base; @@ -86,6 +86,6 @@ AVInputFormat ff_ivf_demuxer = { .read_probe = probe, .read_header = read_header, .read_packet = read_packet, - .flags= AVFMT_GENERIC_INDEX, - .codec_tag = (const AVCodecTag*[]){ff_codec_bmp_tags, 0}, + .flags = AVFMT_GENERIC_INDEX, + .codec_tag = (const AVCodecTag*[]){ ff_codec_bmp_tags, 0 }, };