Browse Source

> 2GB file fix

Originally committed as revision 5173 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Baptiste Coudurier 19 years ago
parent
commit
7db2245d0e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      qt-faststart.c

+ 1
- 1
qt-faststart.c View File

@@ -99,7 +99,7 @@ int main(int argc, char *argv[])
if (fread(atom_bytes, ATOM_PREAMBLE_SIZE, 1, infile) != 1) {
break;
}
atom_size = BE_32(&atom_bytes[0]);
atom_size = (uint32_t)BE_32(&atom_bytes[0]);
atom_type = BE_32(&atom_bytes[4]);

if ((atom_type != FREE_ATOM) &&


Loading…
Cancel
Save