matroskadec: index timestamps are supposed to be in the timebase of the stream

Originally committed as revision 14984 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Aurelien Jacobs 2008-08-26 20:32:27 +00:00
parent 2a242f4514
commit 8e44312d3f
1 changed files with 2 additions and 4 deletions

View File

@ -1337,8 +1337,7 @@ static int matroska_read_header(AVFormatContext *s, AVFormatParameters *ap)
if (track && track->stream)
av_add_index_entry(track->stream,
pos[j].pos + matroska->segment_start,
index[i].time*matroska->time_scale/AV_TIME_BASE,
0, 0, AVINDEX_KEYFRAME);
index[i].time, 0, 0, AVINDEX_KEYFRAME);
}
}
@ -1627,8 +1626,7 @@ static int matroska_parse_cluster(MatroskaDemuxContext *matroska)
}
if (key_frame)
av_add_index_entry(matroska->vstream, pos,
cluster.timecode*matroska->time_scale/AV_TIME_BASE,
0, 0, AVINDEX_KEYFRAME);
cluster.timecode, 0, 0, AVINDEX_KEYFRAME);
ebml_free(matroska_cluster, &cluster);
if (res < 0) matroska->done = 1;
return res;