blob: a660a2cb0869e21204ff3a29f8cdc3ef7149d09e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--- media/audio/pulse/pulse_util.cc.orig 2025-05-07 06:48:23 UTC
+++ media/audio/pulse/pulse_util.cc
@@ -50,7 +50,11 @@ constexpr char kBrowserDisplayName[] = "chromium-brows
#if defined(DLOPEN_PULSEAUDIO)
static const base::FilePath::CharType kPulseLib[] =
+#if BUILDFLAG(IS_BSD)
+ FILE_PATH_LITERAL("libpulse.so");
+#else
FILE_PATH_LITERAL("libpulse.so.0");
+#endif
#endif
void DestroyMainloop(pa_threaded_mainloop* mainloop) {
|