summaryrefslogtreecommitdiffstats
path: root/player
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-03-24 22:00:01 +0100
committerwm4 <wm4@nowhere>2015-03-24 22:00:01 +0100
commit36c4ac8464fc19bd8820ee02e2c0f228071764af (patch)
tree84a04cd82b9a380e1d44c805cbd2e878727d5f2e /player
parent81a63545a031fdb5ca9fc459e59c9f4b02992511 (diff)
downloadmpv-36c4ac8464fc19bd8820ee02e2c0f228071764af.tar.bz2
mpv-36c4ac8464fc19bd8820ee02e2c0f228071764af.tar.xz
command: add property returning current working directory
Requested; fixes #1717.
Diffstat (limited to 'player')
-rw-r--r--player/command.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/player/command.c b/player/command.c
index 4193bbd24f..a2886cdea2 100644
--- a/player/command.c
+++ b/player/command.c
@@ -3149,6 +3149,24 @@ static int mp_property_packet_bitrate(void *ctx, struct m_property *prop,
return m_property_int64_ro(action, arg, r[type] * 8 / 1000.0 + 0.5);
}
+static int mp_property_cwd(void *ctx, struct m_property *prop,
+ int action, void *arg)
+{
+ switch (action) {
+ case M_PROPERTY_GET: {
+ char *cwd = mp_getcwd(NULL);
+ if (!cwd)
+ return M_PROPERTY_ERROR;
+ *(char **)arg = cwd;
+ return M_PROPERTY_OK;
+ }
+ case M_PROPERTY_GET_TYPE:
+ *(struct m_option *)arg = (struct m_option){.type = CONF_TYPE_STRING};
+ return M_PROPERTY_OK;
+ }
+ return M_PROPERTY_NOT_IMPLEMENTED;
+}
+
static int mp_property_version(void *ctx, struct m_property *prop,
int action, void *arg)
{
@@ -3524,6 +3542,8 @@ static const struct m_property mp_properties[] = {
{"display-names", mp_property_display_names},
{"display-fps", mp_property_display_fps},
+ {"working-directory", mp_property_cwd},
+
{"mpv-version", mp_property_version},
{"mpv-configuration", mp_property_configuration},