Mercurial > libavformat.hg
diff aiff.c @ 3766:f062deeedb8d libavformat
Change codec_tag type from const struct AVCodecTag ** to const struct AVCodecTag * const *
| author | reimar |
|---|---|
| date | Sun, 24 Aug 2008 16:51:50 +0000 |
| parents | d7fa8d9effe5 |
| children | e6aeb2733e34 |
line wrap: on
line diff
--- a/aiff.c Sun Aug 24 16:22:40 2008 +0000 +++ b/aiff.c Sun Aug 24 16:51:50 2008 +0000 @@ -445,7 +445,7 @@ 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 @@ 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
