diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-04-16 23:23:11 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-04-16 23:23:16 +0200 |
commit | 0ea97a1c5b4510d276db105a1bb1766ef535e488 (patch) | |
tree | f4c43afb1778b72de565d1815a40e6fa88bc1aa7 /cmdutils.c | |
parent | c1fe41ed472e66e6198bbdaf4faf6fa10f7b79c4 (diff) | |
parent | 7f1fd9763668c5863e743d108f501a00d1806da0 (diff) | |
download | ffmpeg-0ea97a1c5b4510d276db105a1bb1766ef535e488.tar.gz |
Merge remote-tracking branch 'qatar/master'
* qatar/master:
cmdutils: Fix build with lavfi disabled
flvenc: do not mux more than one stream per type
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'cmdutils.c')
-rw-r--r-- | cmdutils.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cmdutils.c b/cmdutils.c index 4b625fd2d1..2b5ba3355a 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -1635,6 +1635,7 @@ static void show_help_muxer(const char *name) show_help_children(fmt->priv_class, AV_OPT_FLAG_ENCODING_PARAM); } +#if CONFIG_AVFILTER static void show_help_filter(const char *name) { #if CONFIG_AVFILTER @@ -1682,6 +1683,7 @@ static void show_help_filter(const char *name) "can not to satisfy request\n"); #endif } +#endif int show_help(void *optctx, const char *opt, const char *arg) { @@ -1703,8 +1705,10 @@ int show_help(void *optctx, const char *opt, const char *arg) show_help_demuxer(par); } else if (!strcmp(topic, "muxer")) { show_help_muxer(par); +#if CONFIG_AVFILTER } else if (!strcmp(topic, "filter")) { show_help_filter(par); +#endif } else { show_help_default(topic, par); } |