summaryrefslogtreecommitdiffstats
path: root/player/command.c
diff options
context:
space:
mode:
Diffstat (limited to 'player/command.c')
-rw-r--r--player/command.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/player/command.c b/player/command.c
index feaf4788d2..7712a6e550 100644
--- a/player/command.c
+++ b/player/command.c
@@ -916,6 +916,12 @@ static int mp_property_volume(m_option_t *prop, int action, void *arg,
case M_PROPERTY_GET:
mixer_getbothvolume(mpctx->mixer, arg);
return M_PROPERTY_OK;
+ case M_PROPERTY_PRINT: {
+ float val;
+ mixer_getbothvolume(mpctx->mixer, &val);
+ *(char **)arg = talloc_asprintf(NULL, "%i", (int)val);
+ return M_PROPERTY_OK;
+ }
case M_PROPERTY_SET:
if (!mixer_audio_initialized(mpctx->mixer))
return M_PROPERTY_ERROR;