summaryrefslogtreecommitdiff
path: root/fftools/ffmpeg.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2022-11-16 10:38:02 +0100
committerAnton Khirnov <anton@khirnov.net>2022-11-23 10:36:23 +0100
commitbda06c60fed8e45481ca2dad040ed9d2f521ca15 (patch)
tree9a68cba1fd942deca83ea28f732aaedd0ad1a947 /fftools/ffmpeg.c
parent50ecba7e8474966517cdd28c4ce9d9258e9b14e6 (diff)
fftools/ffmpeg: stop inventing fake source information
This code was supposed to affect copying stream dispositions, but it does not achieve that after bd55552d69, since dispositions are set earlier.
Diffstat (limited to 'fftools/ffmpeg.c')
-rw-r--r--fftools/ffmpeg.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/fftools/ffmpeg.c b/fftools/ffmpeg.c
index 2c4dc83f03..08fdd6e98f 100644
--- a/fftools/ffmpeg.c
+++ b/fftools/ffmpeg.c
@@ -3170,21 +3170,6 @@ static int transcode_init(void)
InputStream *ist;
char error[1024] = {0};
- for (i = 0; i < nb_filtergraphs; i++) {
- FilterGraph *fg = filtergraphs[i];
- for (j = 0; j < fg->nb_outputs; j++) {
- OutputFilter *ofilter = fg->outputs[j];
- if (!ofilter->ost || ofilter->ost->source_index >= 0)
- continue;
- if (fg->nb_inputs != 1)
- continue;
- for (k = nb_input_streams-1; k >= 0 ; k--)
- if (fg->inputs[0]->ist == input_streams[k])
- break;
- ofilter->ost->source_index = k;
- }
- }
-
/* init framerate emulation */
for (i = 0; i < nb_input_files; i++) {
InputFile *ifile = input_files[i];