Fix overall frametime overflow, hopefully long long int is portable. (untested, will test tomorrow)

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6835 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
atmos4 2002-07-28 22:09:03 +00:00
parent 9d613c659c
commit 10baacbf5f
1 changed files with 1 additions and 1 deletions

View File

@ -389,7 +389,7 @@ static mp_image_t* decode(sh_video_t *sh,void* data,int len,int flags){
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;