diff aiff.c @ 1679:ba58d49d4685 libavformat

get rid of the [4] limitation of codec tag lists
author michael
date Sun, 21 Jan 2007 12:08:31 +0000
parents 71078c1009c4
children 8b062c65fe0d
line wrap: on
line diff
--- a/aiff.c	Sun Jan 21 02:12:34 2007 +0000
+++ b/aiff.c	Sun Jan 21 12:08:31 2007 +0000
@@ -417,7 +417,7 @@
     aiff_read_packet,
     aiff_read_close,
     aiff_read_seek,
-    .codec_tag= {codec_aiff_tags},
+    .codec_tag= (const AVCodecTag*[]){codec_aiff_tags, 0},
 };
 #endif
 
@@ -433,6 +433,6 @@
     aiff_write_header,
     aiff_write_packet,
     aiff_write_trailer,
-    .codec_tag= {codec_aiff_tags},
+    .codec_tag= (const AVCodecTag*[]){codec_aiff_tags, 0},
 };
 #endif