diff options
author | Anton Khirnov <anton@khirnov.net> | 2023-04-15 10:21:44 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2023-04-24 16:56:06 +0200 |
commit | 65b1350ad482b465c984a4987317e2b15be9d939 (patch) | |
tree | 160c66139b3ffa8ee127cb71e54f4283d604d909 | |
parent | d8bc37f1f446d5798d77830e197f02188919a313 (diff) | |
download | ffmpeg-65b1350ad482b465c984a4987317e2b15be9d939.tar.gz |
fftools/ffmpeg: stop setting InputStream.pts for streamcopy
It is not used in that case anymore.
Forgotten in d56652fdc8e1315309516be320a7250854550fa5.
-rw-r--r-- | fftools/ffmpeg.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fftools/ffmpeg.c b/fftools/ffmpeg.c index a498a68b20..c55d67f8f9 100644 --- a/fftools/ffmpeg.c +++ b/fftools/ffmpeg.c @@ -1713,7 +1713,6 @@ static int process_input_packet(InputStream *ist, const AVPacket *pkt, int no_eo } break; } - ist->pts = ist->dts; } else if (!ist->decoding_needed) eof_reached = 1; |