OSDN Git Service

libavfilter/formats.c: fix compile of test
authorMichael Niedermayer <michaelni@gmx.at>
Fri, 16 Sep 2011 04:07:07 +0000 (06:07 +0200)
committerMichael Niedermayer <michaelni@gmx.at>
Fri, 16 Sep 2011 04:07:07 +0000 (06:07 +0200)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavfilter/formats.c

index 33be69b..46698ef 100644 (file)
@@ -315,7 +315,7 @@ int main(void)
     const int64_t *cl;
     char buf[512];
 
-    for (cl = avfilter_all_channel_layouts_int64; *cl != -1; cl++) {
+    for (cl = avfilter_all_channel_layouts; *cl != -1; cl++) {
         av_get_channel_layout_string(buf, sizeof(buf), -1, *cl);
         printf("%s\n", buf);
     }