mirror of https://github.com/mpv-player/mpv
video: don't decode 2 frames ahead with display-sync
This is not needed. It was used only temporarily in a development branch, and is a leftover from earlier rebasing.
This commit is contained in:
parent
d0e19b659e
commit
cab1f6439c
|
@ -610,9 +610,8 @@ static int get_req_frames(struct MPContext *mpctx, bool eof)
|
|||
if (eof || mpctx->video_pts == MP_NOPTS_VALUE)
|
||||
return 1;
|
||||
|
||||
int min = 2 + (VS_IS_DISP(mpctx->opts->video_sync) ? 1 : 0);
|
||||
int req = vo_get_num_req_frames(mpctx->video_out);
|
||||
return MPCLAMP(req, min, MP_ARRAY_SIZE(mpctx->next_frames));
|
||||
return MPCLAMP(req, 2, MP_ARRAY_SIZE(mpctx->next_frames));
|
||||
}
|
||||
|
||||
// Whether it's fine to call add_new_frame() now.
|
||||
|
|
Loading…
Reference in New Issue