summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2016-11-28 20:52:47 +0100
committerLuca Barbato <lu_zero@gentoo.org>2016-11-29 10:38:01 +0100
commitd0c84c41d33ffd270d5f9fe0290e08341397fdee (patch)
tree83769e62f4ec449f93aea46a6bbeb91f24aba105
parenteb135516e6f61481877163bfc55a3161d4544092 (diff)
avconv: Fix the audio next dts computation
Use the correct timebase. CC: libav-stable@libav.org
-rw-r--r--avconv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/avconv.c b/avconv.c
index 97166d9e2a..5c31332812 100644
--- a/avconv.c
+++ b/avconv.c
@@ -1350,7 +1350,7 @@ static int decode_audio(InputStream *ist, AVPacket *pkt, int *got_output,
/* if the decoder provides a pts, use it instead of the last packet pts.
the decoder could be delaying output by a packet or more. */
if (decoded_frame->pts != AV_NOPTS_VALUE)
- ist->next_dts = decoded_frame->pts;
+ ist->next_dts = av_rescale_q(decoded_frame->pts, ist->st->time_base, AV_TIME_BASE_Q);
else if (pkt && pkt->pts != AV_NOPTS_VALUE) {
decoded_frame->pts = pkt->pts;
}