diff options
author | Anton Khirnov <anton@khirnov.net> | 2022-08-03 11:54:08 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2022-08-08 16:20:58 +0200 |
commit | 49123dd05814901fa198c31de62c70a7d482288c (patch) | |
tree | 684c3e92fa1c82fb9c0180c0924d0aa49e04b25d /fftools/ffmpeg.c | |
parent | 8e092c3eac399d457e470decffa1081251d00648 (diff) | |
download | ffmpeg-49123dd05814901fa198c31de62c70a7d482288c.tar.gz |
fftools/ffmpeg: remove OutputStream.sync_ist
It is not actually used for anything.
Diffstat (limited to 'fftools/ffmpeg.c')
-rw-r--r-- | fftools/ffmpeg.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/fftools/ffmpeg.c b/fftools/ffmpeg.c index a38e758e77..7f5c6690dd 100644 --- a/fftools/ffmpeg.c +++ b/fftools/ffmpeg.c @@ -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; |