Mercurial > mplayer.hg
changeset 6834:2d7dfcc79651
Fix overall frametime overflow, hopefully long long int is portable. (untested, will test tomorrow)
author | atmos4 |
---|---|
date | Sun, 28 Jul 2002 22:09:03 +0000 |
parents | a709a7662cd1 |
children | a9ba8559ca6f |
files | libmpcodecs/vd_ffmpeg.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libmpcodecs/vd_ffmpeg.c Sun Jul 28 21:56:18 2002 +0000 +++ b/libmpcodecs/vd_ffmpeg.c Sun Jul 28 22:09:03 2002 +0000 @@ -389,7 +389,7 @@ while(lavc_param_vstats){ // always one time loop static FILE *fvstats=NULL; char filename[20]; - static int all_len=0; + static long long int all_len=0; static int frame_number=0; static double all_frametime=0.0;