diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-04-08 20:35:02 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-04-23 01:02:27 +0200 |
commit | fdd93eabfb2644f541f7aac9943abce26776ea73 (patch) | |
tree | f4639f69007ce523d30856769d246c07fb7fe3b9 /cmdutils.c | |
parent | b8a5c76131944b4cc17c6db609288d0000d56a43 (diff) | |
download | ffmpeg-fdd93eabfb2644f541f7aac9943abce26776ea73.tar.gz |
lavfi: add timeline support.
Flag added in a few simple filters. A bunch of other filters can likely
use the feature as well.
Diffstat (limited to 'cmdutils.c')
-rw-r--r-- | cmdutils.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cmdutils.c b/cmdutils.c index cc886977e8..b9985d620e 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -1683,6 +1683,8 @@ static void show_help_filter(const char *name) if (f->priv_class) show_help_children(f->priv_class, AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_AUDIO_PARAM); + if (f->flags & AVFILTER_FLAG_SUPPORT_TIMELINE) + printf("This filter has support for timeline through the 'enable' option.\n"); #else av_log(NULL, AV_LOG_ERROR, "Build without libavfilter; " "can not to satisfy request\n"); |