mirror of https://github.com/mpv-player/mpv
Fix OSD flicker with tfields as well.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28210 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
5904de25e3
commit
8385fa3dc6
|
@ -365,7 +365,7 @@ static int continue_buffered_image(struct vf_instance_s *vf)
|
|||
if (correct_pts)
|
||||
break;
|
||||
else
|
||||
if (!i) vf_next_control(vf, VFCTRL_FLIP_PAGE, NULL);
|
||||
if (!i) vf_extra_flip(vf);
|
||||
}
|
||||
break;
|
||||
case 1:
|
||||
|
@ -395,7 +395,7 @@ static int continue_buffered_image(struct vf_instance_s *vf)
|
|||
if (correct_pts)
|
||||
break;
|
||||
else
|
||||
if (!i) vf_next_control(vf, VFCTRL_FLIP_PAGE, NULL);
|
||||
if (!i) vf_extra_flip(vf);
|
||||
}
|
||||
break;
|
||||
case 2:
|
||||
|
@ -421,7 +421,7 @@ static int continue_buffered_image(struct vf_instance_s *vf)
|
|||
if (correct_pts)
|
||||
break;
|
||||
else
|
||||
if (!i) vf_next_control(vf, VFCTRL_FLIP_PAGE, NULL);
|
||||
if (!i) vf_extra_flip(vf);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue