Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(40)

Unified Diff: webrtc/modules/audio_device/audio_device_buffer.cc

Issue 2333273002: Now uses rtc::Buffer in AudioDeviceBuffer (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_device/audio_device_buffer.cc
diff --git a/webrtc/modules/audio_device/audio_device_buffer.cc b/webrtc/modules/audio_device/audio_device_buffer.cc
index b6c5df25aafb3ca1dfaaf88feef68c5b8fa6acfa..3b912826c7fe1bc74552ecb7573ba0c64c5849c2 100644
--- a/webrtc/modules/audio_device/audio_device_buffer.cc
+++ b/webrtc/modules/audio_device/audio_device_buffer.cc
@@ -39,13 +39,8 @@ AudioDeviceBuffer::AudioDeviceBuffer()
play_sample_rate_(0),
rec_channels_(0),
play_channels_(0),
- rec_channel_(AudioDeviceModule::kChannelBoth),
rec_bytes_per_sample_(0),
play_bytes_per_sample_(0),
- rec_samples_per_10ms_(0),
- rec_bytes_per_10ms_(0),
- play_samples_per_10ms_(0),
- play_bytes_per_10ms_(0),
current_mic_level_(0),
new_mic_level_(0),
typing_status_(false),
@@ -66,10 +61,6 @@ AudioDeviceBuffer::AudioDeviceBuffer()
max_play_level_(0),
num_rec_level_is_zero_(0) {
LOG(INFO) << "AudioDeviceBuffer::ctor";
- // TODO(henrika): improve buffer handling and ensure that we don't allocate
- // more than what is required.
- play_buffer_.reset(new int8_t[kMaxBufferSizeBytes]);
- rec_buffer_.reset(new int8_t[kMaxBufferSizeBytes]);
}
AudioDeviceBuffer::~AudioDeviceBuffer() {
@@ -108,7 +99,7 @@ AudioDeviceBuffer::~AudioDeviceBuffer() {
int32_t AudioDeviceBuffer::RegisterAudioCallback(
AudioTransport* audio_callback) {
LOG(INFO) << __FUNCTION__;
- rtc::CritScope lock(&_critSectCb);
+ rtc::CritScope lock(&lock_cb_);
audio_transport_cb_ = audio_callback;
return 0;
}
@@ -137,14 +128,14 @@ int32_t AudioDeviceBuffer::InitRecording() {
int32_t AudioDeviceBuffer::SetRecordingSampleRate(uint32_t fsHz) {
LOG(INFO) << "SetRecordingSampleRate(" << fsHz << ")";
- rtc::CritScope lock(&_critSect);
+ RTC_DCHECK(thread_checker_.CalledOnValidThread());
rec_sample_rate_ = fsHz;
return 0;
}
int32_t AudioDeviceBuffer::SetPlayoutSampleRate(uint32_t fsHz) {
LOG(INFO) << "SetPlayoutSampleRate(" << fsHz << ")";
- rtc::CritScope lock(&_critSect);
+ RTC_DCHECK(thread_checker_.CalledOnValidThread());
play_sample_rate_ = fsHz;
return 0;
}
@@ -159,46 +150,34 @@ int32_t AudioDeviceBuffer::PlayoutSampleRate() const {
int32_t AudioDeviceBuffer::SetRecordingChannels(size_t channels) {
LOG(INFO) << "SetRecordingChannels(" << channels << ")";
- rtc::CritScope lock(&_critSect);
+ rtc::CritScope lock(&lock_);
rec_channels_ = channels;
- rec_bytes_per_sample_ =
- 2 * channels; // 16 bits per sample in mono, 32 bits in stereo
+ rec_bytes_per_sample_ = sizeof(int16_t) * channels;
return 0;
}
int32_t AudioDeviceBuffer::SetPlayoutChannels(size_t channels) {
LOG(INFO) << "SetPlayoutChannels(" << channels << ")";
- rtc::CritScope lock(&_critSect);
+ rtc::CritScope lock(&lock_);
play_channels_ = channels;
- // 16 bits per sample in mono, 32 bits in stereo
- play_bytes_per_sample_ = 2 * channels;
+ play_bytes_per_sample_ = sizeof(int16_t) * channels;
return 0;
}
int32_t AudioDeviceBuffer::SetRecordingChannel(
const AudioDeviceModule::ChannelType channel) {
- rtc::CritScope lock(&_critSect);
-
- if (rec_channels_ == 1) {
- return -1;
- }
-
- if (channel == AudioDeviceModule::kChannelBoth) {
- // two bytes per channel
- rec_bytes_per_sample_ = 4;
- } else {
- // only utilize one out of two possible channels (left or right)
- rec_bytes_per_sample_ = 2;
- }
- rec_channel_ = channel;
-
- return 0;
+ LOG(INFO) << "SetRecordingChannel(" << channel << ")";
+ LOG(LS_WARNING) << "Not implemented";
+ // Add DCHECK to ensure that user does not try to use this API with a non-
+ // default parameter.
+ RTC_DCHECK_EQ(channel, AudioDeviceModule::kChannelBoth);
+ return -1;
}
int32_t AudioDeviceBuffer::RecordingChannel(
AudioDeviceModule::ChannelType& channel) const {
- channel = rec_channel_;
- return 0;
+ LOG(LS_WARNING) << "Not implemented";
+ return -1;
}
size_t AudioDeviceBuffer::RecordingChannels() const {
@@ -255,31 +234,14 @@ int32_t AudioDeviceBuffer::StopOutputFileRecording() {
int32_t AudioDeviceBuffer::SetRecordedBuffer(const void* audio_buffer,
size_t num_samples) {
- UpdateRecordingParameters();
- // WebRTC can only receive audio in 10ms chunks, hence we fail if the native
- // audio layer tries to deliver something else.
- RTC_CHECK_EQ(num_samples, rec_samples_per_10ms_);
-
- rtc::CritScope lock(&_critSect);
-
- if (rec_channel_ == AudioDeviceModule::kChannelBoth) {
- // Copy the complete input buffer to the local buffer.
- memcpy(&rec_buffer_[0], audio_buffer, rec_bytes_per_10ms_);
- } else {
- int16_t* ptr16In = (int16_t*)audio_buffer;
- int16_t* ptr16Out = (int16_t*)&rec_buffer_[0];
- if (AudioDeviceModule::kChannelRight == rec_channel_) {
- ptr16In++;
- }
- // Exctract left or right channel from input buffer to the local buffer.
- for (size_t i = 0; i < rec_samples_per_10ms_; i++) {
- *ptr16Out = *ptr16In;
- ptr16Out++;
- ptr16In++;
- ptr16In++;
- }
+ size_t rec_bytes_per_sample;
+ {
+ rtc::CritScope lock(&lock_);
+ rec_bytes_per_sample = rec_bytes_per_sample_;
}
kwiberg-webrtc 2016/09/14 08:39:04 An elegant way to do this, which avoids the use of
henrika_webrtc 2016/09/14 10:26:53 Thanks, will change. Must admit that I have not wo
kwiberg-webrtc 2016/09/14 11:17:17 It's the capture list---the list of variables of t
henrika_webrtc 2016/10/07 12:18:05 Acknowledged.
henrika_webrtc 2016/10/07 12:18:05 Done.
-
+ // Copy the complete input buffer to the local buffer.
+ size_t size_in_bytes = num_samples * rec_bytes_per_sample;
kwiberg-webrtc 2016/09/14 08:39:04 const
henrika_webrtc 2016/09/14 10:26:53 Acknowledged.
+ rec_buffer_.SetData(static_cast<const int8_t*>(audio_buffer), size_in_bytes);
// Update some stats but do it on the task queue to ensure that the members
// are modified and read on the same thread.
task_queue_.PostTask(rtc::Bind(&AudioDeviceBuffer::UpdateRecStats, this,
@@ -288,27 +250,28 @@ int32_t AudioDeviceBuffer::SetRecordedBuffer(const void* audio_buffer,
}
int32_t AudioDeviceBuffer::DeliverRecordedData() {
- RTC_DCHECK(audio_transport_cb_);
- rtc::CritScope lock(&_critSectCb);
-
+ rtc::CritScope lock(&lock_cb_);
if (!audio_transport_cb_) {
LOG(LS_WARNING) << "Invalid audio transport";
return 0;
}
-
- int32_t res(0);
- uint32_t newMicLevel(0);
- uint32_t totalDelayMS = play_delay_ms_ + rec_delay_ms_;
- res = audio_transport_cb_->RecordedDataIsAvailable(
- &rec_buffer_[0], rec_samples_per_10ms_, rec_bytes_per_sample_,
- rec_channels_, rec_sample_rate_, totalDelayMS, clock_drift_,
- current_mic_level_, typing_status_, newMicLevel);
+ size_t rec_bytes_per_sample;
+ {
+ rtc::CritScope lock(&lock_);
+ rec_bytes_per_sample = rec_bytes_per_sample_;
+ }
kwiberg-webrtc 2016/09/14 08:39:04 You can use the lambda trick here too.
henrika_webrtc 2016/09/14 10:26:53 Acknowledged.
+ uint32_t new_mic_level(0);
+ uint32_t total_delay_ms = play_delay_ms_ + rec_delay_ms_;
+ size_t num_samples = rec_buffer_.size() / rec_bytes_per_sample;
+ int32_t res = audio_transport_cb_->RecordedDataIsAvailable(
+ rec_buffer_.data(), num_samples, rec_bytes_per_sample_, rec_channels_,
+ rec_sample_rate_, total_delay_ms, clock_drift_, current_mic_level_,
+ typing_status_, new_mic_level);
if (res != -1) {
- new_mic_level_ = newMicLevel;
+ new_mic_level_ = new_mic_level;
} else {
LOG(LS_ERROR) << "RecordedDataIsAvailable() failed";
}
-
return 0;
}
@@ -324,12 +287,7 @@ int32_t AudioDeviceBuffer::RequestPlayoutData(size_t num_samples) {
last_playout_time_ = now_time;
playout_diff_times_[diff_time]++;
- UpdatePlayoutParameters();
- // WebRTC can only provide audio in 10ms chunks, hence we fail if the native
- // audio layer asks for something else.
- RTC_CHECK_EQ(num_samples, play_samples_per_10ms_);
-
- rtc::CritScope lock(&_critSectCb);
+ rtc::CritScope lock(&lock_cb_);
// It is currently supported to start playout without a valid audio
// transport object. Leads to warning and silence.
@@ -338,12 +296,26 @@ int32_t AudioDeviceBuffer::RequestPlayoutData(size_t num_samples) {
return 0;
}
- uint32_t res(0);
+ size_t play_bytes_per_sample;
+ {
+ rtc::CritScope lock(&lock_);
+ play_bytes_per_sample = play_bytes_per_sample_;
+ }
kwiberg-webrtc 2016/09/14 08:39:04 lambda
henrika_webrtc 2016/09/14 10:26:53 Acknowledged.
+
+ // The consumer can change the request size on the fly and we therefore
+ // resize the buffer accordingly. Also takes place at the first call to this
+ // method.
+ size_t size_in_bytes = num_samples * play_bytes_per_sample;
kwiberg-webrtc 2016/09/14 08:39:04 const
henrika_webrtc 2016/09/14 10:26:53 Acknowledged.
+ if (play_buffer_.size() != size_in_bytes) {
+ play_buffer_.SetSize(size_in_bytes);
+ LOG(LS_INFO) << "Size of playout buffer: " << play_buffer_.size();
+ }
+
int64_t elapsed_time_ms = -1;
int64_t ntp_time_ms = -1;
size_t num_samples_out(0);
- res = audio_transport_cb_->NeedMorePlayData(
- play_samples_per_10ms_, play_bytes_per_sample_, play_channels_,
+ uint32_t res = audio_transport_cb_->NeedMorePlayData(
+ num_samples, play_bytes_per_sample_, play_channels_,
play_sample_rate_, &play_buffer_[0], num_samples_out, &elapsed_time_ms,
&ntp_time_ms);
if (res != 0) {
@@ -358,27 +330,14 @@ int32_t AudioDeviceBuffer::RequestPlayoutData(size_t num_samples) {
}
int32_t AudioDeviceBuffer::GetPlayoutData(void* audio_buffer) {
- rtc::CritScope lock(&_critSect);
- memcpy(audio_buffer, &play_buffer_[0], play_bytes_per_10ms_);
- return static_cast<int32_t>(play_samples_per_10ms_);
-}
-
-void AudioDeviceBuffer::UpdatePlayoutParameters() {
- RTC_CHECK(play_bytes_per_sample_);
- rtc::CritScope lock(&_critSect);
- // Update the required buffer size given sample rate and number of channels.
- play_samples_per_10ms_ = static_cast<size_t>(play_sample_rate_ * 10 / 1000);
- play_bytes_per_10ms_ = play_bytes_per_sample_ * play_samples_per_10ms_;
- RTC_DCHECK_LE(play_bytes_per_10ms_, kMaxBufferSizeBytes);
-}
-
-void AudioDeviceBuffer::UpdateRecordingParameters() {
- RTC_CHECK(rec_bytes_per_sample_);
- rtc::CritScope lock(&_critSect);
- // Update the required buffer size given sample rate and number of channels.
- rec_samples_per_10ms_ = static_cast<size_t>(rec_sample_rate_ * 10 / 1000);
- rec_bytes_per_10ms_ = rec_bytes_per_sample_ * rec_samples_per_10ms_;
- RTC_DCHECK_LE(rec_bytes_per_10ms_, kMaxBufferSizeBytes);
+ RTC_DCHECK_GT(play_buffer_.size(), 0u);
+ size_t play_bytes_per_sample;
+ {
+ rtc::CritScope lock(&lock_);
+ play_bytes_per_sample = play_bytes_per_sample_;
+ }
kwiberg-webrtc 2016/09/14 08:39:04 lambda
henrika_webrtc 2016/09/14 10:26:53 Acknowledged.
+ memcpy(audio_buffer, &play_buffer_[0], play_buffer_.size());
kwiberg-webrtc 2016/09/14 08:39:04 play_buffer_.data() instead of &play_buffer_[0]; b
henrika_webrtc 2016/09/14 10:26:53 Acknowledged.
+ return static_cast<int32_t>(play_buffer_.size() / play_bytes_per_sample);
}
void AudioDeviceBuffer::StartTimer() {

Powered by Google App Engine
This is Rietveld 408576698