summaryrefslogtreecommitdiffstats
path: root/command.h
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2008-11-30 03:19:46 +0200
committerUoti Urpala <uau@glyph.nonexistent.invalid>2008-12-09 04:31:07 +0200
commit6fec7ec734c25424e268465ae806063273c4e5be (patch)
tree2f934dad79b7d25ac1c187070c55232a512f12af /command.h
parent77c709ad31ebe997dbd824506c145a0ac24581d0 (diff)
downloadmpv-6fec7ec734c25424e268465ae806063273c4e5be.tar.bz2
mpv-6fec7ec734c25424e268465ae806063273c4e5be.tar.xz
Allow seeking while paused
Screen is now updated immediately (doesn't always work without correct-pts yet though). Doing audio unpause after the seek reset can display errors. Main loop code now checks for possible reasons to stop command processing instead of relying on each command to also set an explicit 'break' flag.
Diffstat (limited to 'command.h')
-rw-r--r--command.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/command.h b/command.h
index f87c5a00ca..ee8c451a7c 100644
--- a/command.h
+++ b/command.h
@@ -4,7 +4,7 @@
struct MPContext;
struct mp_cmd;
-int run_command(struct MPContext *mpctx, struct mp_cmd *cmd);
+void run_command(struct MPContext *mpctx, struct mp_cmd *cmd);
char *property_expand_string(struct MPContext *mpctx, char *str);
void property_print_help(void);