Commit 2fa3e9e3 authored by bcoudurier's avatar bcoudurier

> 2GB file fix


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5173 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent df159f06
......@@ -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) &&
......
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