From: Ramiro Polla Date: Fri, 3 Feb 2012 16:50:19 +0000 (-0200) Subject: dshow: fix AVInputFormat declaration after ABI breakage X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=c9e5acad611c77db5f37299a4a50f15922d85a4c;p=ffmpeg dshow: fix AVInputFormat declaration after ABI breakage Signed-off-by: Michael Niedermayer --- diff --git a/libavdevice/dshow.c b/libavdevice/dshow.c index dd1b29b2eff..27048346d1f 100644 --- a/libavdevice/dshow.c +++ b/libavdevice/dshow.c @@ -961,13 +961,12 @@ static const AVClass dshow_class = { }; AVInputFormat ff_dshow_demuxer = { - "dshow", - NULL_IF_CONFIG_SMALL("DirectShow capture"), - sizeof(struct dshow_ctx), - NULL, - dshow_read_header, - dshow_read_packet, - dshow_read_close, - .flags = AVFMT_NOFILE, - .priv_class = &dshow_class, + .name = "dshow", + .long_name = NULL_IF_CONFIG_SMALL("DirectShow capture"), + .priv_data_size = sizeof(struct dshow_ctx), + .read_header = dshow_read_header, + .read_packet = dshow_read_packet, + .read_close = dshow_read_close, + .flags = AVFMT_NOFILE, + .priv_class = &dshow_class, };