[FFmpeg-devel] [PATCH 3/4] ffmpeg: with filter_complex, avoid random in<->out mapping.
Nicolas George
nicolas.george at normalesup.org
Thu May 24 00:46:29 CEST 2012
With complex filters, an output can come from any input,
or several inputs, including inputs of a different type.
Copying the codec parameters from the first input with
the same type does not make any sense.
This does not change anything for simple 1->1 filters,
as source_index is set in that case.
Signed-off-by: Nicolas George <nicolas.george at normalesup.org>
---
ffmpeg.c | 10 ----------
1 file changed, 10 deletions(-)
diff --git a/ffmpeg.c b/ffmpeg.c
index 4e3b46a..1fb7664 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -2964,16 +2964,6 @@ static InputStream *get_input_stream(OutputStream *ost)
{
if (ost->source_index >= 0)
return input_streams[ost->source_index];
-
- if (ost->filter) {
- FilterGraph *fg = ost->filter->graph;
- int i;
-
- for (i = 0; i < fg->nb_inputs; i++)
- if (fg->inputs[i]->ist->st->codec->codec_type == ost->st->codec->codec_type)
- return fg->inputs[i]->ist;
- }
-
return NULL;
}
--
1.7.10
More information about the ffmpeg-devel
mailing list