summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Ekström <jeebjp@gmail.com>2021-11-02 23:17:40 +0200
committersfan5 <sfan5@live.de>2021-12-19 15:53:25 +0100
commit22c1468b5a80068f7cce1f5c5e82ec69435f9d28 (patch)
treee1476621c00a37e34382ec1b463bcbe11c626d74
parent01843cf9e7484ad94aa910ee6da08ca4d6a4a114 (diff)
downloadmpv-22c1468b5a80068f7cce1f5c5e82ec69435f9d28.tar.bz2
mpv-22c1468b5a80068f7cce1f5c5e82ec69435f9d28.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;