[Ffmpeg-cvslog] CVS: ffmpeg qt-faststart.c,1.5,1.6
Baptiste Coudurier CVS
bcoudurier
Fri Mar 17 00:57:42 CET 2006
- Previous message: [Ffmpeg-cvslog] CVS: ffmpeg/libavcodec snow.h, NONE, 1.1 snow.c, 1.92, 1.93 dsputil.c, 1.134, 1.135 dsputil.h, 1.129, 1.130
- Next message: [Ffmpeg-cvslog] CVS: ffmpeg qt-faststart.c,1.5,1.6
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/ffmpeg/ffmpeg
In directory mail:/var2/tmp/cvs-serv8734
Modified Files:
qt-faststart.c
Log Message:
> 2GB file fix
Index: qt-faststart.c
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/qt-faststart.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- qt-faststart.c 16 Mar 2006 16:37:05 -0000 1.5
+++ qt-faststart.c 16 Mar 2006 23:57:40 -0000 1.6
@@ -99,7 +99,7 @@
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) &&
- Previous message: [Ffmpeg-cvslog] CVS: ffmpeg/libavcodec snow.h, NONE, 1.1 snow.c, 1.92, 1.93 dsputil.c, 1.134, 1.135 dsputil.h, 1.129, 1.130
- Next message: [Ffmpeg-cvslog] CVS: ffmpeg qt-faststart.c,1.5,1.6
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the ffmpeg-cvslog
mailing list