summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-02-08 17:25:01 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-02-08 17:25:01 +0100
commite7f4de34ad442ae91671e8288724b2e63a81072f (patch)
tree2b5e0ae382447bee9cda0cab826f1d5ae6015e71 /ffmpeg.c
parent67c63176ad5c4bf6498169959a63d032ff4df104 (diff)
ffmpeg: use ist->dts in do_streamcopy()
Based on change by Anton Khirnov. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 01359ad395..a80b632cc5 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -1902,7 +1902,7 @@ static void do_streamcopy(InputStream *ist, OutputStream *ost, const AVPacket *p
opkt.pts = AV_NOPTS_VALUE;
if (pkt->dts == AV_NOPTS_VALUE)
- opkt.dts = av_rescale_q(ist->pts, AV_TIME_BASE_Q, ost->st->time_base);
+ opkt.dts = av_rescale_q(ist->dts, AV_TIME_BASE_Q, ost->st->time_base);
else
opkt.dts = av_rescale_q(pkt->dts, ist->st->time_base, ost->st->time_base);
opkt.dts -= ost_tb_start_time;