mov: Fix empty edit detection.
authorYusuke Nakamura <muken.the.vfrmaniac@gmail.com>
Sat, 4 Jun 2011 16:28:43 +0000 (01:28 +0900)
committerAlex Converse <alex.converse@gmail.com>
Mon, 20 Jun 2011 01:15:56 +0000 (18:15 -0700)
libavformat/mov.c

index ab5c4e2..c720440 100644 (file)
@@ -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) {