Browse Source

lavfi: flag more dynamic i/o filters.

tags/n2.0
Clément Bœsch 12 years ago
parent
commit
73180f5b0e
4 changed files with 5 additions and 0 deletions
  1. +1
    -0
      libavfilter/af_amerge.c
  2. +1
    -0
      libavfilter/avf_concat.c
  3. +1
    -0
      libavfilter/f_ebur128.c
  4. +2
    -0
      libavfilter/src_movie.c

+ 1
- 0
libavfilter/af_amerge.c View File

@@ -346,4 +346,5 @@ AVFilter avfilter_af_amerge = {
.inputs = NULL,
.outputs = amerge_outputs,
.priv_class = &amerge_class,
.flags = AVFILTER_FLAG_DYNAMIC_INPUTS,
};

+ 1
- 0
libavfilter/avf_concat.c View File

@@ -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,
};

+ 1
- 0
libavfilter/f_ebur128.c View File

@@ -796,4 +796,5 @@ AVFilter avfilter_af_ebur128 = {
.inputs = ebur128_inputs,
.outputs = NULL,
.priv_class = &ebur128_class,
.flags = AVFILTER_FLAG_DYNAMIC_OUTPUTS,
};

+ 2
- 0
libavfilter/src_movie.c View File

@@ -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 */

Loading…
Cancel
Save