blit_frame is useless - noticed by Nick K.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5985 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi 2002-05-05 17:42:09 +00:00
parent 920a8107e2
commit 816258171c
1 changed files with 1 additions and 3 deletions

View File

@ -174,7 +174,6 @@ extern int vo_directrendering;
int decode_video(sh_video_t *sh_video,unsigned char *start,int in_size,int drop_frame){
vf_instance_t* vf=sh_video->vfilter;
mp_image_t *mpi=NULL;
int blit_frame=0;
unsigned int t=GetTimer();
unsigned int t2;
double tt;
@ -208,7 +207,6 @@ vf->control(vf,VFCTRL_DRAW_OSD,NULL);
t2=GetTimer()-t2;
tt=t2*0.000001f;
vout_time_usage+=tt;
blit_frame=1;
return blit_frame;
return 1;
}