From 41215fdeb33df3f192de48396fab35ac90fca1af Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 16 Sep 2011 06:07:07 +0200 Subject: libavfilter/formats.c: fix compile of test Signed-off-by: Michael Niedermayer --- libavfilter/formats.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavfilter/formats.c') diff --git a/libavfilter/formats.c b/libavfilter/formats.c index 33be69bedd..46698ef990 100644 --- a/libavfilter/formats.c +++ b/libavfilter/formats.c @@ -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); } -- cgit v1.2.3