summaryrefslogtreecommitdiffstats
path: root/TOOLS
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-10-09 15:48:47 +0200
committerwm4 <wm4@nowhere>2017-10-09 15:48:47 +0200
commitb6af3db5680586c209bae53a7eb779ad0d38edc8 (patch)
tree8f1a73aed6223ac70de94ff6e48e51450ac244af /TOOLS
parent622610bad50c48da106b58d458b3598aaf4a493b (diff)
downloadmpv-b6af3db5680586c209bae53a7eb779ad0d38edc8.tar.bz2
mpv-b6af3db5680586c209bae53a7eb779ad0d38edc8.tar.xz
command: drop "audio-out-detected-device" property
Coreaudio stopped setting it a few releases ago (66a958bb4fa). There is not much of a user- or API-visible change, so remove it without deprecation.
Diffstat (limited to 'TOOLS')
-rw-r--r--TOOLS/lua/audio-hotplug-test.lua5
1 files changed, 0 insertions, 5 deletions
diff --git a/TOOLS/lua/audio-hotplug-test.lua b/TOOLS/lua/audio-hotplug-test.lua
index f27b793151..8dedc68cbe 100644
--- a/TOOLS/lua/audio-hotplug-test.lua
+++ b/TOOLS/lua/audio-hotplug-test.lua
@@ -6,8 +6,3 @@ mp.observe_property("audio-device-list", "native", function(name, val)
print(" - '" .. e.name .. "' (" .. e.description .. ")")
end
end)
-
-mp.observe_property("audio-out-detected-device", "native", function(name, val)
- print("Detected audio device changed:")
- print(" - '" .. val)
-end)