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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Liu <lq@chinaffmpeg.org>2017-03-11 06:12:23 +0300
committerSteven Liu <lq@chinaffmpeg.org>2017-03-11 06:12:23 +0300
commit51e3501993e3296727678c95bfcffe5b85525a12 (patch)
treebe4c0bb0e640846756825eef6793fafb20feb06c /ffprobe.c
parent6e913f212907048d7009cf2f15551781c69b9985 (diff)
ffprobe: add AVCodecContext help message into ffprobe
because the ffprobe can use AVCodecContext parameters Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
Diffstat (limited to 'ffprobe.c')
-rw-r--r--ffprobe.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ffprobe.c b/ffprobe.c
index c85c3a104b..b104390990 100644
--- a/ffprobe.c
+++ b/ffprobe.c
@@ -3004,6 +3004,7 @@ void show_help_default(const char *opt, const char *arg)
printf("\n");
show_help_children(avformat_get_class(), AV_OPT_FLAG_DECODING_PARAM);
+ show_help_children(avcodec_get_class(), AV_OPT_FLAG_DECODING_PARAM);
}
/**