mirror of https://github.com/mpv-player/mpv
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:
parent
9d613c659c
commit
10baacbf5f
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue