On Wed, 20 Jun 2012, Ronald S. Bultje wrote:
From: "Ronald S. Bultje" <[email protected]>--- libavformat/ivfdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/ivfdec.c b/libavformat/ivfdec.c index 9482fc2..b3555f4 100644 --- a/libavformat/ivfdec.c +++ b/libavformat/ivfdec.c @@ -87,5 +87,5 @@ AVInputFormat ff_ivf_demuxer = { .read_header = read_header, .read_packet = read_packet, .flags = AVFMT_GENERIC_INDEX, - .codec_tag = (const AVCodecTag*[]){ ff_codec_bmp_tags, 0 }, + .codec_tag = (const AVCodecTag* const []){ ff_codec_bmp_tags, 0 }, }; -- 1.7.9.2
Seems to match what we have elsewhere, so LGTM. // Martin _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
