Commit 41215fde authored by Michael Niedermayer's avatar Michael Niedermayer

libavfilter/formats.c: fix compile of test

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent cfe4e8c2
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment