You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
mov: Fix empty edit detection.
This commit is contained in:
committed by
Alex Converse
parent
8d3d3436e2
commit
ae88e9cf99
@@ -2193,7 +2193,7 @@ static int mov_read_elst(MOVContext *c, AVIOContext *pb, MOVAtom atom)
|
||||
time = avio_rb64(pb);
|
||||
} else {
|
||||
duration = avio_rb32(pb); /* segment duration */
|
||||
time = avio_rb32(pb); /* media time */
|
||||
time = (int32_t)avio_rb32(pb); /* media time */
|
||||
}
|
||||
avio_rb32(pb); /* Media rate */
|
||||
if (i == 0 && time >= -1) {
|
||||
|
Reference in New Issue
Block a user