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/aiff.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/aiff.c')
-rw-r--r-- | libavformat/aiff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/aiff.c b/libavformat/aiff.c index 3dabbb81e9..079e8b930d 100644 --- a/libavformat/aiff.c +++ b/libavformat/aiff.c @@ -445,7 +445,7 @@ AVInputFormat aiff_demuxer = { aiff_read_packet, NULL, pcm_read_seek, - .codec_tag= (const AVCodecTag*[]){codec_aiff_tags, 0}, + .codec_tag= (const AVCodecTag* const []){codec_aiff_tags, 0}, }; #endif @@ -461,6 +461,6 @@ AVOutputFormat aiff_muxer = { aiff_write_header, aiff_write_packet, aiff_write_trailer, - .codec_tag= (const AVCodecTag*[]){codec_aiff_tags, 0}, + .codec_tag= (const AVCodecTag* const []){codec_aiff_tags, 0}, }; #endif |