summaryrefslogtreecommitdiff
path: root/audio/pulseaudio/patches/patch-src_modules_module-detect.c
blob: cba229b150a24b5014581cfefd956faa1b2bd45f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
$NetBSD: patch-src_modules_module-detect.c,v 1.8 2021/07/30 12:21:06 ryoon Exp $

Hack to set proper sound device on NetBSD.

--- src/modules/module-detect.c.orig	2021-07-27 20:02:27.767868500 +0000
+++ src/modules/module-detect.c
@@ -121,7 +121,28 @@ static int detect_alsa(pa_core *c, int j
 static int detect_oss(pa_core *c, int just_one) {
     FILE *f;
     int n = 0, b = 0;
+    pa_module *m = NULL;
+
+#if defined(__NetBSD__)
+/*
+ * Use audio and audio0 to audio3 that are enabled by default
+ * under NetBSD.
+ */
+    char args[64];
 
+    pa_snprintf(args, sizeof(args), "mmap=0 device=@DEVOSSAUDIO@");
+    if (pa_module_load(&m, c, "module-oss", args) < 0)
+      return 0;
+    n = 1;
+
+    for (int i = 0; i < 4; i++) {
+      pa_snprintf(args, sizeof(args), "mmap=0 device=@DEVOSSAUDIO@%d", i);
+      if (pa_module_load(&m, c, "module-oss", args) < 0)
+        return n;
+      n++;
+    }
+
+#else /* __linux__ or __FreeBSD__ */
     if (!(f = pa_fopen_cloexec("/dev/sndstat", "r")) &&
         !(f = pa_fopen_cloexec("/proc/sndstat", "r")) &&
         !(f = pa_fopen_cloexec("/proc/asound/oss/sndstat", "r"))) {
@@ -135,7 +156,6 @@ static int detect_oss(pa_core *c, int ju
     while (!feof(f)) {
         char line[256], args[64];
         unsigned device;
-        pa_module *m = NULL;
 
         if (!fgets(line, sizeof(line), f))
             break;
@@ -203,6 +223,7 @@ static int detect_oss(pa_core *c, int ju
     }
 
     fclose(f);
+#endif
     return n;
 }
 #endif