summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-04-01 01:10:23 +0200
committerwm4 <wm4@nowhere>2015-04-01 01:10:23 +0200
commitab3a64ee4c485bf45bcf187c7c562c308ad2d990 (patch)
tree4f580daa3f503fc802961d9753059ddd99593290
parent62030e1090dde45f1f743d8632e616e69c8be1d4 (diff)
downloadmpv-ab3a64ee4c485bf45bcf187c7c562c308ad2d990.tar.bz2
mpv-ab3a64ee4c485bf45bcf187c7c562c308ad2d990.tar.xz
ao_coreaudio: do not signal per-app volume
CoreAudio doesn't seem to have this concept. The volume is reset the next time audio is opened.
-rw-r--r--audio/out/ao_coreaudio.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/audio/out/ao_coreaudio.c b/audio/out/ao_coreaudio.c
index 8c8970bc26..5e923ac084 100644
--- a/audio/out/ao_coreaudio.c
+++ b/audio/out/ao_coreaudio.c
@@ -118,8 +118,6 @@ static int control(struct ao *ao, enum aocontrol cmd, void *arg)
return set_volume(ao, arg);
case AOCONTROL_HAS_SOFT_VOLUME:
return CONTROL_TRUE;
- case AOCONTROL_HAS_PER_APP_VOLUME:
- return CONTROL_TRUE;
}
return CONTROL_UNKNOWN;
}