Commit 6b744cea authored by banan's avatar banan

gcc 2.95 fix


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4887 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 29eabdd4
......@@ -112,9 +112,9 @@ static offset_t updateSize (ByteIOContext *pb, offset_t pos)
static int mov_write_stco_tag(ByteIOContext *pb, MOVTrack* track)
{
int i;
int mode64 = 0; // use 32 bit size variant if possible
offset_t pos = url_ftell(pb);
put_be32(pb, 0); /* size */
int mode64 = 0; // use 32 bit size variant if possible
if (pos > UINT32_MAX) {
mode64 = 1;
put_tag(pb, "co64");
......
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