[Mplayer-cvslog] CVS: main/libmpdemux muxer_avi.c,1.22,1.23
Tobias Diedrich CVS
syncmail at mplayerhq.hu
Wed Mar 24 16:21:23 CET 2004
- Previous message: [Mplayer-cvslog] CVS: main/libmpcodecs ve_divx4.c, 1.14, 1.15 ve_lavc.c, 1.92, 1.93 ve_libdv.c, 1.9, 1.10 ve_nuv.c, 1.2, 1.3 ve_qtvideo.c, 1.7, 1.8 ve_raw.c, 1.1, 1.2 ve_vfw.c, 1.15, 1.16 ve_xvid.c, 1.26, 1.27 ve_xvid4.c, 1.6, 1.7
- Next message: [Mplayer-cvslog] CVS: main/osdep getch2.c,1.16,1.17
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
CVS change done by Tobias Diedrich CVS
Update of /cvsroot/mplayer/main/libmpdemux
In directory mail:/var2/tmp/cvs-serv10345/libmpdemux
Modified Files:
muxer_avi.c
Log Message:
Round Chunklen to word boundary
Index: muxer_avi.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpdemux/muxer_avi.c,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- muxer_avi.c 24 Mar 2004 15:16:36 -0000 1.22
+++ muxer_avi.c 24 Mar 2004 15:21:21 -0000 1.23
@@ -236,7 +236,7 @@
s->size+=len;
if((unsigned int)len>s->h.dwSuggestedBufferSize) s->h.dwSuggestedBufferSize=len;
- muxer->file_end += len + 8;
+ muxer->file_end += len + len&1 + 8;
}
static void write_avi_list(FILE *f,unsigned int id,int len){
- Previous message: [Mplayer-cvslog] CVS: main/libmpcodecs ve_divx4.c, 1.14, 1.15 ve_lavc.c, 1.92, 1.93 ve_libdv.c, 1.9, 1.10 ve_nuv.c, 1.2, 1.3 ve_qtvideo.c, 1.7, 1.8 ve_raw.c, 1.1, 1.2 ve_vfw.c, 1.15, 1.16 ve_xvid.c, 1.26, 1.27 ve_xvid4.c, 1.6, 1.7
- Next message: [Mplayer-cvslog] CVS: main/osdep getch2.c,1.16,1.17
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the MPlayer-cvslog
mailing list