Commit 67ffcb96 authored by Ronald S. Bultje's avatar Ronald S. Bultje Committed by Martin Storsjö

lavf: Make codec_tag arrays constant

Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent 89ffd189
......@@ -394,5 +394,5 @@ AVInputFormat ff_caf_demuxer = {
.read_header = read_header,
.read_packet = read_packet,
.read_seek = read_seek,
.codec_tag = (const AVCodecTag*[]){ ff_codec_caf_tags, 0 },
.codec_tag = (const AVCodecTag* const []){ ff_codec_caf_tags, 0 },
};
......@@ -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 },
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment