summaryrefslogtreecommitdiffstats
path: root/mencoder.c
diff options
context:
space:
mode:
authorcorey <corey@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-04-26 20:24:03 +0000
committercorey <corey@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-04-26 20:24:03 +0000
commiteea7b9044c8498c28e1f270663d4b0f00226a7e8 (patch)
treec7eb0d7b3c8b20e7908c68b63017d3fec54ffd78 /mencoder.c
parentbfc6feb3c5fc1e8e972d3fd5b434cf1e8c7f6e75 (diff)
downloadmpv-eea7b9044c8498c28e1f270663d4b0f00226a7e8.tar.bz2
mpv-eea7b9044c8498c28e1f270663d4b0f00226a7e8.tar.xz
Make mencoder stream size printing use 64 bits.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18301 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mencoder.c')
-rw-r--r--mencoder.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mencoder.c b/mencoder.c
index 223f96de30..71b6a8c6f9 100644
--- a/mencoder.c
+++ b/mencoder.c
@@ -1572,10 +1572,10 @@ if(out_video_codec==VCODEC_FRAMENO && mux_v->timer>100){
}
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; }