Commit 76935434 authored by Michael Niedermayer's avatar Michael Niedermayer

PRINT_CODEC_SUPPORTED: fix used variable

Reviewed-by: 's avatarStefano Sabatini <stefasab@gmail.com>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent aeb4d27d
......@@ -888,7 +888,7 @@ int show_formats(void *optctx, const char *opt, const char *arg)
#define PRINT_CODEC_SUPPORTED(codec, field, type, list_name, term, get_name) \
if (codec->field) { \
const type *p = c->field; \
const type *p = codec->field; \
\
printf(" Supported " list_name ":"); \
while (*p != term) { \
......
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