ports/www/chromium/files/patch-media_audio_pulse_pulse__util.cc
Robert Nagy 6acad34cb2 www/chromium: update to 125.0.6422.76 and implement selectable audio backend support
with these changes, chromium now automatically selects which
audio backend to use in the following order:

pulse (if running) -> sndio -> alsa -> fake

an additional command line option has been also implemented so
that the user can force which backend to use:

--audio-backend={auto,sndio,pulse,alsa}

Security:	https://vuxml.freebsd.org/freebsd/8247af0d-183b-11ef-9f97-a8a1599412c6.html
PR:		246449
2024-05-22 15:26:15 +02:00

14 lines
446 B
C++

--- media/audio/pulse/pulse_util.cc.orig 2024-05-21 18:07:39 UTC
+++ media/audio/pulse/pulse_util.cc
@@ -45,7 +45,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) {