From 9e8d61d4f1b285f77e6b3642c8658e7408207fa0 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Sun, 8 Feb 2009 09:48:59 +0000 Subject: rewrite pts also, as comment says Originally committed as revision 17051 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/audiointerleave.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/audiointerleave.c') diff --git a/libavformat/audiointerleave.c b/libavformat/audiointerleave.c index e34026c408..056fbe1942 100644 --- a/libavformat/audiointerleave.c +++ b/libavformat/audiointerleave.c @@ -105,7 +105,7 @@ int ff_audio_interleave(AVFormatContext *s, AVPacket *out, AVPacket *pkt, int fl av_fifo_generic_write(&aic->fifo, pkt->data, pkt->size, NULL); } else { // rewrite pts and dts to be decoded time line position - pkt->dts = aic->dts; + pkt->pts = pkt->dts = aic->dts; aic->dts += pkt->duration; ff_interleave_add_packet(s, pkt, compare_ts); } -- cgit v1.2.3