[FFmpeg-cvslog] lavfi: flag more dynamic i/o filters.

Clément Bœsch git at videolan.org
Sat Apr 13 19:58:10 CEST 2013


ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Sat Apr 13 19:43:17 2013 +0200| [73180f5b0efd2e97e71c25acebf368db2d6380a0] | committer: Clément Bœsch

lavfi: flag more dynamic i/o filters.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=73180f5b0efd2e97e71c25acebf368db2d6380a0
---

 libavfilter/af_amerge.c  |    1 +
 libavfilter/avf_concat.c |    1 +
 libavfilter/f_ebur128.c  |    1 +
 libavfilter/src_movie.c  |    2 ++
 4 files changed, 5 insertions(+)

diff --git a/libavfilter/af_amerge.c b/libavfilter/af_amerge.c
index 58d874e..6244423 100644
--- a/libavfilter/af_amerge.c
+++ b/libavfilter/af_amerge.c
@@ -346,4 +346,5 @@ AVFilter avfilter_af_amerge = {
     .inputs        = NULL,
     .outputs       = amerge_outputs,
     .priv_class    = &amerge_class,
+    .flags         = AVFILTER_FLAG_DYNAMIC_INPUTS,
 };
diff --git a/libavfilter/avf_concat.c b/libavfilter/avf_concat.c
index ca7ed71..04812aa 100644
--- a/libavfilter/avf_concat.c
+++ b/libavfilter/avf_concat.c
@@ -419,4 +419,5 @@ AVFilter avfilter_avf_concat = {
     .inputs        = NULL,
     .outputs       = NULL,
     .priv_class    = &concat_class,
+    .flags         = AVFILTER_FLAG_DYNAMIC_INPUTS | AVFILTER_FLAG_DYNAMIC_OUTPUTS,
 };
diff --git a/libavfilter/f_ebur128.c b/libavfilter/f_ebur128.c
index caeae3d..88d37e8 100644
--- a/libavfilter/f_ebur128.c
+++ b/libavfilter/f_ebur128.c
@@ -796,4 +796,5 @@ AVFilter avfilter_af_ebur128 = {
     .inputs        = ebur128_inputs,
     .outputs       = NULL,
     .priv_class    = &ebur128_class,
+    .flags         = AVFILTER_FLAG_DYNAMIC_OUTPUTS,
 };
diff --git a/libavfilter/src_movie.c b/libavfilter/src_movie.c
index 4164cb4..7dc4d20 100644
--- a/libavfilter/src_movie.c
+++ b/libavfilter/src_movie.c
@@ -579,6 +579,7 @@ AVFilter avfilter_avsrc_movie = {
 
     .inputs    = NULL,
     .outputs   = NULL,
+    .flags     = AVFILTER_FLAG_DYNAMIC_OUTPUTS,
 };
 
 #endif  /* CONFIG_MOVIE_FILTER */
@@ -604,6 +605,7 @@ AVFilter avfilter_avsrc_amovie = {
     .inputs     = NULL,
     .outputs    = NULL,
     .priv_class = &amovie_class,
+    .flags      = AVFILTER_FLAG_DYNAMIC_OUTPUTS,
 };
 
 #endif /* CONFIG_AMOVIE_FILTER */



More information about the ffmpeg-cvslog mailing list