Browse Source

libavfilter/formats.c: fix compile of test

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.9
Michael Niedermayer 14 years ago
parent
commit
41215fdeb3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/formats.c

+ 1
- 1
libavfilter/formats.c View 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);
}


Loading…
Cancel
Save