From 8dd16259287f58f9273002717ec4d27e97127719 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 12 Jun 2024 07:43:14 +0200 Subject: Merging upstream version 127.0. Signed-off-by: Daniel Baumann --- dom/media/AudioStream.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'dom/media/AudioStream.cpp') diff --git a/dom/media/AudioStream.cpp b/dom/media/AudioStream.cpp index 7d80a3738e..bb0248d942 100644 --- a/dom/media/AudioStream.cpp +++ b/dom/media/AudioStream.cpp @@ -316,7 +316,8 @@ void AudioStream::SetStreamName(const nsAString& aStreamName) { } MonitorAutoLock mon(mMonitor); - if (InvokeCubeb(cubeb_stream_set_name, aRawStreamName.get()) != CUBEB_OK) { + int r = InvokeCubeb(cubeb_stream_set_name, aRawStreamName.get()); + if (r && r != CUBEB_ERROR_NOT_SUPPORTED) { LOGE("Could not set cubeb stream name."); } } -- cgit v1.2.3