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/au.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/au.c')
-rw-r--r-- | libavformat/au.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/au.c b/libavformat/au.c index 2f12f323d4..2fb5fa002c 100644 --- a/libavformat/au.c +++ b/libavformat/au.c @@ -186,7 +186,7 @@ AVInputFormat au_demuxer = { au_read_packet, NULL, pcm_read_seek, - .codec_tag= (const AVCodecTag*[]){codec_au_tags, 0}, + .codec_tag= (const AVCodecTag* const []){codec_au_tags, 0}, }; #endif @@ -202,6 +202,6 @@ AVOutputFormat au_muxer = { au_write_header, au_write_packet, au_write_trailer, - .codec_tag= (const AVCodecTag*[]){codec_au_tags, 0}, + .codec_tag= (const AVCodecTag* const []){codec_au_tags, 0}, }; #endif //CONFIG_AU_MUXER |