summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Ekström <jeebjp@gmail.com>2021-11-02 23:17:40 +0200
committersfan5 <sfan5@live.de>2021-11-10 17:08:16 +0100
commite6a75075b22d8e620dc9645cc9cd1fa50bf45f16 (patch)
treeb938b8fb5aaa55d59b844756aea02d6c442ed45e
parentdd6fce51385d7c8af89000172bfe93163bd8c1c7 (diff)
downloadmpv-e6a75075b22d8e620dc9645cc9cd1fa50bf45f16.tar.bz2
mpv-e6a75075b22d8e620dc9645cc9cd1fa50bf45f16.tar.xz
ao_oss: define PATH_DEV_MIXER as it is an internal define
This fixes a mismatch between configure working and build time failing with Linux + OSSv4, enabling compilation on Debian based Linux systems with the oss4-dev package. Fixes #9378
-rw-r--r--audio/out/ao_oss.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/audio/out/ao_oss.c b/audio/out/ao_oss.c
index 11b182e52d..3f85774d02 100644
--- a/audio/out/ao_oss.c
+++ b/audio/out/ao_oss.c
@@ -49,6 +49,7 @@
#endif
#define PATH_DEV_DSP "/dev/dsp"
+#define PATH_DEV_MIXER "/dev/mixer"
struct priv {
int dsp_fd;