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/vocenc.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/vocenc.c')
-rw-r--r-- | libavformat/vocenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/vocenc.c b/libavformat/vocenc.c index 88fc41c51a..0802f50e62 100644 --- a/libavformat/vocenc.c +++ b/libavformat/vocenc.c @@ -99,5 +99,5 @@ AVOutputFormat voc_muxer = { voc_write_header, voc_write_packet, voc_write_trailer, - .codec_tag=(const AVCodecTag*[]){ff_voc_codec_tags, 0}, + .codec_tag=(const AVCodecTag* const []){ff_voc_codec_tags, 0}, }; |