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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/blink/renderer/modules/webaudio/media_stream_audio_source_handler.h"
#include <inttypes.h>
#include "base/synchronization/lock.h"
#include "third_party/blink/public/platform/modules/webrtc/webrtc_logging.h"
#include "third_party/blink/renderer/modules/webaudio/audio_node_output.h"
#include "third_party/blink/renderer/modules/webaudio/base_audio_context.h"
#include "third_party/blink/renderer/platform/instrumentation/tracing/trace_event.h"
namespace blink {
namespace {
// Default to stereo. This could change depending on the format of the
// MediaStream's audio track.
constexpr unsigned kDefaultNumberOfOutputChannels = 2;
} // namespace
MediaStreamAudioSourceHandler::MediaStreamAudioSourceHandler(
AudioNode& node,
std::unique_ptr<AudioSourceProvider> audio_source_provider)
: AudioHandler(NodeType::kNodeTypeMediaStreamAudioSource,
node,
node.context()->sampleRate()),
audio_source_provider_(std::move(audio_source_provider)) {
SendLogMessage(__func__, "");
AddOutput(kDefaultNumberOfOutputChannels);
Initialize();
}
scoped_refptr<MediaStreamAudioSourceHandler>
MediaStreamAudioSourceHandler::Create(
AudioNode& node,
std::unique_ptr<AudioSourceProvider> audio_source_provider) {
return base::AdoptRef(new MediaStreamAudioSourceHandler(
node, std::move(audio_source_provider)));
}
MediaStreamAudioSourceHandler::~MediaStreamAudioSourceHandler() {
Uninitialize();
}
void MediaStreamAudioSourceHandler::SetFormat(uint32_t number_of_channels,
float source_sample_rate) {
DCHECK(IsMainThread());
SendLogMessage(
__func__,
String::Format("({number_of_channels=%u}, {source_sample_rate=%0.f})",
number_of_channels, source_sample_rate));
{
base::AutoLock locker(process_lock_);
TRACE_EVENT0(TRACE_DISABLED_BY_DEFAULT("webaudio.audionode"),
"MediaStreamAudioSourceHandler::SetFormat under lock");
// If the channel count and the sample rate match, nothing to do here.
if (number_of_channels == source_number_of_channels_ &&
source_sample_rate == Context()->sampleRate()) {
return;
}
// Checks for invalid channel count.
if (number_of_channels == 0 ||
number_of_channels > BaseAudioContext::MaxNumberOfChannels()) {
source_number_of_channels_ = 0;
SendLogMessage(
__func__,
String::Format("=> (ERROR: invalid channel count requested)"));
return;
}
// Checks for invalid sample rate.
if (source_sample_rate != Context()->sampleRate()) {
source_number_of_channels_ = 0;
SendLogMessage(
__func__,
String::Format("=> (ERROR: invalid sample rate requested)"));
return;
}
source_number_of_channels_ = number_of_channels;
}
DeferredTaskHandler::GraphAutoLocker graph_locker(Context());
Output(0).SetNumberOfChannels(number_of_channels);
}
void MediaStreamAudioSourceHandler::Process(uint32_t number_of_frames) {
TRACE_EVENT2(TRACE_DISABLED_BY_DEFAULT("webaudio.audionode"),
"MediaStreamAudioSourceHandler::Process", "this",
reinterpret_cast<void*>(this), "number_of_frames",
number_of_frames);
AudioBus* output_bus = Output(0).Bus();
base::AutoTryLock try_locker(process_lock_);
if (try_locker.is_acquired()) {
if (source_number_of_channels_ != output_bus->NumberOfChannels()) {
output_bus->Zero();
return;
}
audio_source_provider_.get()->ProvideInput(
output_bus, base::checked_cast<int>(number_of_frames));
if (!is_processing_) {
SendLogMessage(__func__, String::Format("({number_of_frames=%u})",
number_of_frames));
SendLogMessage(
__func__,
String::Format("=> (audio source is now alive and audio frames are "
"sent to the output)"));
is_processing_ = true;
}
} else {
TRACE_EVENT0(TRACE_DISABLED_BY_DEFAULT("webaudio.audionode"),
"MediaStreamAudioSourceHandler::Process TryLock failed");
// If we fail to acquire the lock, it means setFormat() is running. So
// output silence.
output_bus->Zero();
}
}
void MediaStreamAudioSourceHandler::SendLogMessage(
const char* const function_name,
const String& message) {
WebRtcLogMessage(String::Format("[WA]MSASH::%s %s [this=0x%" PRIXPTR "]",
function_name, message.Utf8().c_str(),
reinterpret_cast<uintptr_t>(this))
.Utf8());
}
} // namespace blink
|