Commit 1955d7d1 authored by bcoudurier's avatar bcoudurier

do not set start time to 0, it is not the case with elst time offset

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17161 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a1d86dab
......@@ -1346,7 +1346,6 @@ static int mov_read_trak(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
st->priv_data = sc;
st->codec->codec_type = CODEC_TYPE_DATA;
st->start_time = 0; /* XXX: check */
sc->ffindex = st->index;
if ((ret = mov_read_default(c, pb, atom)) < 0)
......@@ -1506,7 +1505,7 @@ static int mov_read_tkhd(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
}
st->id = (int)get_be32(pb); /* track id (NOT 0 !)*/
get_be32(pb); /* reserved */
st->start_time = 0; /* check */
/* highlevel (considering edits) duration in movie timebase */
(version == 1) ? get_be64(pb) : get_be32(pb);
get_be32(pb); /* reserved */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment