projects
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6e913f2
)
ffprobe: add AVCodecContext help message into ffprobe
author
Steven Liu
<lq@chinaffmpeg.org>
Sat, 11 Mar 2017 03:12:23 +0000
(11:12 +0800)
committer
Steven Liu
<lq@chinaffmpeg.org>
Sat, 11 Mar 2017 03:12:23 +0000
(11:12 +0800)
because the ffprobe can use AVCodecContext parameters
Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
ffprobe.c
patch
|
blob
|
history
diff --git
a/ffprobe.c
b/ffprobe.c
index
c85c3a1
..
b104390
100644
(file)
--- 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);
}
/**