Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-10-22 03:04:14 +0400
committerMichael Niedermayer <michaelni@gmx.at>2012-11-09 06:08:29 +0400
commit769354348a3acddb36582277a7d3f26e6d179369 (patch)
treeeb6ca65f38d51831011ec302e4c75cddffef6918 /cmdutils.c
parentaeb4d27dec4ad42ee31973b1b2fc5ccc30ef0f78 (diff)
PRINT_CODEC_SUPPORTED: fix used variable
Reviewed-by: Stefano Sabatini <stefasab@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'cmdutils.c')
-rw-r--r--cmdutils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmdutils.c b/cmdutils.c
index 2375d4e8a0..1c392d7c71 100644
--- a/cmdutils.c
+++ b/cmdutils.c
@@ -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) { \