[MPlayer-cvslog] CVS: main mencoder.c,1.351,1.352
Corey Hickey CVS
syncmail at mplayerhq.hu
Wed Apr 26 22:24:05 CEST 2006
CVS change done by Corey Hickey CVS
Update of /cvsroot/mplayer/main
In directory mail:/var2/tmp/cvs-serv13869
Modified Files:
mencoder.c
Log Message:
Make mencoder stream size printing use 64 bits.
Index: mencoder.c
===================================================================
RCS file: /cvsroot/mplayer/main/mencoder.c,v
retrieving revision 1.351
retrieving revision 1.352
diff -u -r1.351 -r1.352
--- mencoder.c 25 Apr 2006 02:01:21 -0000 1.351
+++ mencoder.c 26 Apr 2006 20:24:03 -0000 1.352
@@ -1572,10 +1572,10 @@
}
mp_msg(MSGT_MENCODER, MSGL_INFO, MSGTR_VideoStreamResult,
- (float)(mux_v->size/mux_v->timer*8.0f/1000.0f), (int)(mux_v->size/mux_v->timer), (int)mux_v->size, (float)mux_v->timer, decoded_frameno);
+ (float)(mux_v->size/mux_v->timer*8.0f/1000.0f), (int)(mux_v->size/mux_v->timer), (uint64_t)mux_v->size, (float)mux_v->timer, decoded_frameno);
if(sh_audio)
mp_msg(MSGT_MENCODER, MSGL_INFO, MSGTR_AudioStreamResult,
- (float)(mux_a->size/mux_a->timer*8.0f/1000.0f), (int)(mux_a->size/mux_a->timer), (int)mux_a->size, (float)mux_a->timer);
+ (float)(mux_a->size/mux_a->timer*8.0f/1000.0f), (int)(mux_a->size/mux_a->timer), (uint64_t)mux_a->size, (float)mux_a->timer);
if(sh_audio){ uninit_audio(sh_audio);sh_audio=NULL; }
if(sh_video){ uninit_video(sh_video);sh_video=NULL; }
More information about the MPlayer-cvslog
mailing list