summaryrefslogtreecommitdiffstats
path: root/options
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-09-02 00:09:03 +0200
committerwm4 <wm4@nowhere>2014-09-02 00:12:52 +0200
commit2da246b9f715a5694263b1ed3dee30b2001b6ed4 (patch)
tree97fa275f2c0a6fd4b2d6f489262b188a8d6574ba /options
parent291d98681051713a13efaa2e381cf1e3f8efaa70 (diff)
downloadmpv-2da246b9f715a5694263b1ed3dee30b2001b6ed4.tar.bz2
mpv-2da246b9f715a5694263b1ed3dee30b2001b6ed4.tar.xz
player: add --osd-playing-msg option
Diffstat (limited to 'options')
-rw-r--r--options/options.c1
-rw-r--r--options/options.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/options/options.c b/options/options.c
index d436cb7535..a0671404e7 100644
--- a/options/options.c
+++ b/options/options.c
@@ -515,6 +515,7 @@ const m_option_t mp_opts[] = {
OPT_STRING("term-osd-bar-chars", term_osd_bar_chars, 0),
OPT_STRING("term-playing-msg", playing_msg, 0),
+ OPT_STRING("osd-playing-msg", osd_playing_msg, 0),
OPT_STRING("term-status-msg", status_msg, 0),
OPT_STRING("osd-status-msg", osd_status_msg, 0),
diff --git a/options/options.h b/options/options.h
index 83593c837a..c8a24de372 100644
--- a/options/options.h
+++ b/options/options.h
@@ -143,6 +143,7 @@ typedef struct MPOpts {
int term_osd_bar;
char *term_osd_bar_chars;
char *playing_msg;
+ char *osd_playing_msg;
char *status_msg;
char *osd_status_msg;
char *heartbeat_cmd;