mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Set dts in tta demuxer
Originally committed as revision 10077 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
ddb8ebe7a1
commit
160ab30fcc
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user