From cab1f6439c201d877e709c45bb6a119feddc6a53 Mon Sep 17 00:00:00 2001 From: wm4 Date: Wed, 19 Aug 2015 21:24:56 +0200 Subject: 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. --- player/video.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'player/video.c') diff --git a/player/video.c b/player/video.c index e8f4837e69..2d6f6f5e72 100644 --- a/player/video.c +++ b/player/video.c @@ -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. -- cgit v1.2.3