summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2018-05-24 20:00:13 +0200
committerwm4 <wm4@nowhere>2018-05-24 20:00:13 +0200
commit4d6d3a3455e15747f318e80487831f2692ffc46c (patch)
tree8284ead72c89be7227d1df3942465f01b9067bf2
parent85271021215b3e3fd002c3c55eefd9ff38946bd9 (diff)
downloadmpv-4d6d3a3455e15747f318e80487831f2692ffc46c.tar.bz2
mpv-4d6d3a3455e15747f318e80487831f2692ffc46c.tar.xz
player: fix coding style
I'm also not sure whether this condition doesn't subtly break a lot of things.
-rw-r--r--player/playloop.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/player/playloop.c b/player/playloop.c
index 65086b2965..fa1cc544cb 100644
--- a/player/playloop.c
+++ b/player/playloop.c
@@ -997,9 +997,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;
}