Skip to content
Snippets Groups Projects
Commit ed06cf6d authored by Benjamin Larsson's avatar Benjamin Larsson
Browse files

gcc 2.95 fix

Originally committed as revision 4887 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent b29af723
No related branches found
No related tags found
No related merge requests found
...@@ -112,9 +112,9 @@ static offset_t updateSize (ByteIOContext *pb, offset_t pos) ...@@ -112,9 +112,9 @@ static offset_t updateSize (ByteIOContext *pb, offset_t pos)
static int mov_write_stco_tag(ByteIOContext *pb, MOVTrack* track) static int mov_write_stco_tag(ByteIOContext *pb, MOVTrack* track)
{ {
int i; int i;
int mode64 = 0; // use 32 bit size variant if possible
offset_t pos = url_ftell(pb); offset_t pos = url_ftell(pb);
put_be32(pb, 0); /* size */ put_be32(pb, 0); /* size */
int mode64 = 0; // use 32 bit size variant if possible
if (pos > UINT32_MAX) { if (pos > UINT32_MAX) {
mode64 = 1; mode64 = 1;
put_tag(pb, "co64"); put_tag(pb, "co64");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment