[MPlayer-cvslog] CVS: main/libmpdemux demux_audio.c,1.51,1.52
Reimar Döffinger CVS
syncmail at mplayerhq.hu
Sun Apr 16 15:45:23 CEST 2006
- Previous message: [MPlayer-cvslog] CVS: main/libvo video_out.c, 1.104, 1.105 video_out.h, 1.63, 1.64 vo_gl.c, 1.118, 1.119 vo_gl2.c, 1.88, 1.89 vo_x11.c, 1.146, 1.147 vo_xmga.c, 1.94, 1.95 vo_xover.c, 1.14, 1.15 vo_xv.c, 1.169, 1.170 vo_xvidix.c, 1.74, 1.75 vo_xvmc.c, 1.26, 1.27 w32_common.c, 1.23, 1.24 x11_common.c, 1.205, 1.206 x11_common.h, 1.45, 1.46
- Next message: [MPlayer-cvslog] CVS: main/Gui app.h,1.20,1.21
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
CVS change done by Reimar Döffinger CVS
Update of /cvsroot/mplayer/main/libmpdemux
In directory mail:/var2/tmp/cvs-serv5669
Modified Files:
demux_audio.c
Log Message:
Use ULL for > 32 bits constant.
Index: demux_audio.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpdemux/demux_audio.c,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- demux_audio.c 11 Apr 2006 10:46:52 -0000 1.51
+++ demux_audio.c 16 Apr 2006 13:45:21 -0000 1.52
@@ -512,7 +512,7 @@
stream_read(s, (char *)&srate, 3);
srate = be2me_32(srate) >> 12;
stream_read(s, (char *)&num_samples, 5);
- num_samples = (be2me_64(num_samples) >> 24) & 0xfffffffff;
+ num_samples = (be2me_64(num_samples) >> 24) & 0xfffffffffULL;
if (num_samples && srate)
sh_audio->i_bps = size * srate / num_samples;
}
- Previous message: [MPlayer-cvslog] CVS: main/libvo video_out.c, 1.104, 1.105 video_out.h, 1.63, 1.64 vo_gl.c, 1.118, 1.119 vo_gl2.c, 1.88, 1.89 vo_x11.c, 1.146, 1.147 vo_xmga.c, 1.94, 1.95 vo_xover.c, 1.14, 1.15 vo_xv.c, 1.169, 1.170 vo_xvidix.c, 1.74, 1.75 vo_xvmc.c, 1.26, 1.27 w32_common.c, 1.23, 1.24 x11_common.c, 1.205, 1.206 x11_common.h, 1.45, 1.46
- Next message: [MPlayer-cvslog] CVS: main/Gui app.h,1.20,1.21
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the MPlayer-cvslog
mailing list