summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-08-22 16:23:54 +0200
committerwm4 <wm4@nowhere>2014-08-22 16:25:55 +0200
commit005f592d54f96f25f2ba7eff1848422fc605d252 (patch)
tree1006f51bcbedb440a817d8ecb3a76dbdf38b5591
parentd5fa5a96a864b0acf3ee5e004780aeb1b83cf3b2 (diff)
downloadmpv-005f592d54f96f25f2ba7eff1848422fc605d252.tar.bz2
mpv-005f592d54f96f25f2ba7eff1848422fc605d252.tar.xz
player: some more debugging output
-rw-r--r--player/playloop.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/player/playloop.c b/player/playloop.c
index d7fed6319a..2e4cfc43ab 100644
--- a/player/playloop.c
+++ b/player/playloop.c
@@ -611,9 +611,11 @@ static void handle_input_and_seek_coalesce(struct MPContext *mpctx)
mp_cmd_t *cmd;
while ((cmd = mp_input_get_cmd(mpctx->input, 0, 1)) != NULL) {
mp_dispatch_queue_process(mpctx->dispatch, 0);
+ MP_STATS(mpctx, "start command");
cmd = mp_input_get_cmd(mpctx->input, 0, 0);
run_command(mpctx, cmd);
mp_cmd_free(cmd);
+ MP_STATS(mpctx, "end command");
if (mpctx->stop_play)
break;
}