From 160ab30fcccea5697b2c065e7647c370e321cca6 Mon Sep 17 00:00:00 2001 From: David Conrad Date: Sat, 11 Aug 2007 22:45:40 +0000 Subject: Set dts in tta demuxer Originally committed as revision 10077 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/tta.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'libavformat/tta.c') diff --git a/libavformat/tta.c b/libavformat/tta.c index 5799e5d727..4b9be6cf30 100644 --- a/libavformat/tta.c +++ b/libavformat/tta.c @@ -109,15 +109,17 @@ static int tta_read_packet(AVFormatContext *s, AVPacket *pkt) { TTAContext *c = s->priv_data; AVStream *st = s->streams[0]; - int size; + int size, ret; // FIXME! if (c->currentframe > c->totalframes) return -1; - size = st->index_entries[c->currentframe++].size; + size = st->index_entries[c->currentframe].size; - return av_get_packet(&s->pb, pkt, size); + ret = av_get_packet(&s->pb, pkt, size); + pkt->dts = st->index_entries[c->currentframe++].timestamp; + return ret; } static int tta_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags) -- cgit v1.2.3