mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-28 12:32:17 +02:00
adjust time rate according to elst time offset
Originally committed as revision 17146 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
0cfa359660
commit
a5929abe7a
@ -1162,8 +1162,6 @@ static int mov_read_stts(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
|
|||||||
return -1;
|
return -1;
|
||||||
dprintf(c->fc, "track[%i].stts.entries = %i\n", c->fc->nb_streams-1, entries);
|
dprintf(c->fc, "track[%i].stts.entries = %i\n", c->fc->nb_streams-1, entries);
|
||||||
|
|
||||||
sc->time_rate=0;
|
|
||||||
|
|
||||||
for(i=0; i<entries; i++) {
|
for(i=0; i<entries; i++) {
|
||||||
int sample_duration;
|
int sample_duration;
|
||||||
int sample_count;
|
int sample_count;
|
||||||
@ -1768,8 +1766,10 @@ static int mov_read_elst(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
|
|||||||
get_be32(pb); /* Track duration */
|
get_be32(pb); /* Track duration */
|
||||||
time = get_be32(pb); /* Media time */
|
time = get_be32(pb); /* Media time */
|
||||||
get_be32(pb); /* Media rate */
|
get_be32(pb); /* Media rate */
|
||||||
if (i == 0 && time != -1)
|
if (i == 0 && time != -1) {
|
||||||
sc->time_offset = time;
|
sc->time_offset = time;
|
||||||
|
sc->time_rate = av_gcd(sc->time_rate, time);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(edit_count > 1)
|
if(edit_count > 1)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user