summaryrefslogtreecommitdiff
path: root/libavfilter/formats.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-09-16 06:07:07 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-09-16 06:07:07 +0200
commit41215fdeb33df3f192de48396fab35ac90fca1af (patch)
tree87a9182cccac7179f1bce543a077e17533520717 /libavfilter/formats.c
parentcfe4e8c22084a8c213df0576469d170f2e6cf1a1 (diff)
libavfilter/formats.c: fix compile of test
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/formats.c')
-rw-r--r--libavfilter/formats.c2
1 files changed, 1 insertions, 1 deletions
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);
}