mirror of https://git.ffmpeg.org/ffmpeg.git
PRINT_CODEC_SUPPORTED: fix used variable
Reviewed-by: Stefano Sabatini <stefasab@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
aeb4d27dec
commit
769354348a
|
@ -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) { \
|
||||
|
|
Loading…
Reference in New Issue