diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2008-08-24 16:51:50 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2008-08-24 16:51:50 +0000 |
commit | c18545929e134845ff57e3e98f494965e42ab10a (patch) | |
tree | ce6ec00e44d95488780922523fe6c6276536b967 /libavformat/wav.c | |
parent | f23a9759cee8442b02195a4539f65d041104c9cb (diff) | |
download | ffmpeg-c18545929e134845ff57e3e98f494965e42ab10a.tar.gz |
Change codec_tag type from const struct AVCodecTag ** to const struct AVCodecTag * const *
Originally committed as revision 14947 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/wav.c')
-rw-r--r-- | libavformat/wav.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/wav.c b/libavformat/wav.c index 945ee39b32..de88b46d55 100644 --- a/libavformat/wav.c +++ b/libavformat/wav.c @@ -265,7 +265,7 @@ AVInputFormat wav_demuxer = { NULL, wav_read_seek, .flags= AVFMT_GENERIC_INDEX, - .codec_tag= (const AVCodecTag*[]){codec_wav_tags, 0}, + .codec_tag= (const AVCodecTag* const []){codec_wav_tags, 0}, }; #endif #ifdef CONFIG_WAV_MUXER @@ -280,6 +280,6 @@ AVOutputFormat wav_muxer = { wav_write_header, wav_write_packet, wav_write_trailer, - .codec_tag= (const AVCodecTag*[]){codec_wav_tags, 0}, + .codec_tag= (const AVCodecTag* const []){codec_wav_tags, 0}, }; #endif |