diff options
author | Paul B Mahol <onemda@gmail.com> | 2013-04-25 22:05:29 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2013-04-26 09:37:28 +0000 |
commit | 1a530f9ed89766b37d3985a245ad93916b7cf427 (patch) | |
tree | 0fe05da3970217803526e3819ce1b78b704ab766 | |
parent | 721ffc691ab40420e5a4cdf4c3580f4aa33cde0f (diff) | |
download | ffmpeg-1a530f9ed89766b37d3985a245ad93916b7cf427.tar.gz |
lavfi: support timeline for colorbalance and colorchannelmixer
Signed-off-by: Paul B Mahol <onemda@gmail.com>
-rw-r--r-- | libavfilter/vf_colorbalance.c | 1 | ||||
-rw-r--r-- | libavfilter/vf_colorchannelmixer.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/vf_colorbalance.c b/libavfilter/vf_colorbalance.c index be0f4f4f95..b09d17065f 100644 --- a/libavfilter/vf_colorbalance.c +++ b/libavfilter/vf_colorbalance.c @@ -209,4 +209,5 @@ AVFilter avfilter_vf_colorbalance = { .query_formats = query_formats, .inputs = colorbalance_inputs, .outputs = colorbalance_outputs, + .flags = AVFILTER_FLAG_SUPPORT_TIMELINE, }; diff --git a/libavfilter/vf_colorchannelmixer.c b/libavfilter/vf_colorchannelmixer.c index 963d415cc5..dd87236bba 100644 --- a/libavfilter/vf_colorchannelmixer.c +++ b/libavfilter/vf_colorchannelmixer.c @@ -367,4 +367,5 @@ AVFilter avfilter_vf_colorchannelmixer = { .query_formats = query_formats, .inputs = colorchannelmixer_inputs, .outputs = colorchannelmixer_outputs, + .flags = AVFILTER_FLAG_SUPPORT_TIMELINE, }; |