fftools/ffmpeg: remove OutputStream.sync_ist

It is not actually used for anything.
This commit is contained in:
Anton Khirnov
2022-08-03 11:54:08 +02:00
parent 8e092c3eac
commit 49123dd058
3 changed files with 6 additions and 17 deletions

View File

@@ -3409,10 +3409,6 @@ static int transcode_init(void)
input_streams[ost->source_index]->st->index,
ost->file_index,
ost->index);
if (ost->sync_ist != input_streams[ost->source_index])
av_log(NULL, AV_LOG_INFO, " [sync #%d:%d]",
ost->sync_ist->file_index,
ost->sync_ist->st->index);
if (ost->enc_ctx) {
const AVCodec *in_codec = input_streams[ost->source_index]->dec;
const AVCodec *out_codec = ost->enc;