diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /third_party/libwebrtc/moz-patch-stack/0031.patch | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/libwebrtc/moz-patch-stack/0031.patch')
-rw-r--r-- | third_party/libwebrtc/moz-patch-stack/0031.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/third_party/libwebrtc/moz-patch-stack/0031.patch b/third_party/libwebrtc/moz-patch-stack/0031.patch new file mode 100644 index 0000000000..4602f40c31 --- /dev/null +++ b/third_party/libwebrtc/moz-patch-stack/0031.patch @@ -0,0 +1,26 @@ +From: Dan Minor <dminor@mozilla.com> +Date: Fri, 13 Nov 2020 14:34:00 -0500 +Subject: Bug 1654112 - Fully quality AudioLevel::kUri in channel_send.cc. r=ng + +Differential Revision: https://phabricator.services.mozilla.com/D130082 +Mercurial Revision: https://hg.mozilla.org/mozilla-central/rev/7163801a480d607005042292ed9e4fbb892f440d +--- + audio/channel_send.cc | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/audio/channel_send.cc b/audio/channel_send.cc +index 08dd74591d..81d5c66652 100644 +--- a/audio/channel_send.cc ++++ b/audio/channel_send.cc +@@ -625,9 +625,9 @@ void ChannelSend::SetSendAudioLevelIndicationStatus(bool enable, int id) { + RTC_DCHECK_RUN_ON(&worker_thread_checker_); + include_audio_level_indication_.store(enable); + if (enable) { +- rtp_rtcp_->RegisterRtpHeaderExtension(AudioLevel::Uri(), id); ++ rtp_rtcp_->RegisterRtpHeaderExtension(webrtc::AudioLevel::Uri(), id); + } else { +- rtp_rtcp_->DeregisterSendRtpHeaderExtension(AudioLevel::Uri()); ++ rtp_rtcp_->DeregisterSendRtpHeaderExtension(webrtc::AudioLevel::Uri()); + } + } + |