diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-02-08 17:26:06 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-02-08 17:26:06 +0100 |
commit | fba318a4b02faf7b591dd941f0857db2ea1b3a8f (patch) | |
tree | f10957a8391d9bc54bece181cc5388e67dcfe8c0 | |
parent | 160008a60f464bfade4495698beedb18c8f11d42 (diff) | |
download | ffmpeg-fba318a4b02faf7b591dd941f0857db2ea1b3a8f.tar.gz |
ffmpeg: update (next_)pts in the stream copy case
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | ffmpeg.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -2318,6 +2318,8 @@ static int output_packet(InputStream *ist, } break; } + ist->pts = ist->dts; + ist->next_pts = ist->next_dts; } for (i = 0; pkt && i < nb_ostreams; i++) { OutputStream *ost = &ost_table[i]; |