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:
wm4 2015-08-19 21:24:56 +02:00
parent d0e19b659e
commit cab1f6439c
1 changed files with 1 additions and 2 deletions

View File

@ -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.