From cb52cfae1aa7e29de08c69780a773548f708f972 Mon Sep 17 00:00:00 2001 From: wm4 Date: Thu, 24 May 2018 20:00:13 +0200 Subject: player: fix coding style I'm also not sure whether this condition doesn't subtly break a lot of things. --- player/playloop.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/player/playloop.c b/player/playloop.c index f5c1fde0ef..92b2569b8b 100644 --- a/player/playloop.c +++ b/player/playloop.c @@ -989,9 +989,9 @@ static void handle_playback_restart(struct MPContext *mpctx) struct MPOpts *opts = mpctx->opts; // Do not wait for video stream if it only has sparse frames. - if (mpctx->vo_chain && - mpctx->vo_chain->is_sparse && - mpctx->video_status < STATUS_READY) { + if (mpctx->vo_chain && mpctx->vo_chain->is_sparse && + mpctx->video_status < STATUS_READY) + { mpctx->video_status = STATUS_READY; } -- cgit v1.2.3