# HG changeset patch # User atmos4 # Date 1027894143 0 # Node ID 2d7dfcc796512b773949d81e558361c34d9bacfc # Parent a709a7662cd13292cf8635cc719fa8521c3e8e15 Fix overall frametime overflow, hopefully long long int is portable. (untested, will test tomorrow) diff -r a709a7662cd1 -r 2d7dfcc79651 libmpcodecs/vd_ffmpeg.c --- 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;