[Ffmpeg-cvslog] CVS: ffmpeg/libavformat movenc.c,1.49,1.50

Benjamin Larsson CVS banan
Mon Jan 23 15:28:52 CET 2006


Update of /cvsroot/ffmpeg/ffmpeg/libavformat
In directory mail:/var2/tmp/cvs-serv16294/libavformat

Modified Files:
	movenc.c 
Log Message:
gcc 2.95 fix


Index: movenc.c
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/libavformat/movenc.c,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -d -r1.49 -r1.50
--- movenc.c	23 Jan 2006 14:12:03 -0000	1.49
+++ movenc.c	23 Jan 2006 14:28:50 -0000	1.50
@@ -112,9 +112,9 @@
 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");





More information about the ffmpeg-cvslog mailing list