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

Side by Side Diff: webrtc/voice_engine/transmit_mixer.cc

Issue 1238083005: [NOT FOR REVIEW] Convert channel counts to size_t. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@size_t
Patch Set: Checkpoint Created 5 years, 4 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 unified diff | Download patch
« no previous file with comments | « webrtc/voice_engine/transmit_mixer.h ('k') | webrtc/voice_engine/utility.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 TransmitMixer::SetAudioProcessingModule(AudioProcessing* audioProcessingModule) 288 TransmitMixer::SetAudioProcessingModule(AudioProcessing* audioProcessingModule)
289 { 289 {
290 WEBRTC_TRACE(kTraceInfo, kTraceVoice, VoEId(_instanceId, -1), 290 WEBRTC_TRACE(kTraceInfo, kTraceVoice, VoEId(_instanceId, -1),
291 "TransmitMixer::SetAudioProcessingModule(" 291 "TransmitMixer::SetAudioProcessingModule("
292 "audioProcessingModule=0x%x)", 292 "audioProcessingModule=0x%x)",
293 audioProcessingModule); 293 audioProcessingModule);
294 audioproc_ = audioProcessingModule; 294 audioproc_ = audioProcessingModule;
295 return 0; 295 return 0;
296 } 296 }
297 297
298 void TransmitMixer::GetSendCodecInfo(int* max_sample_rate, int* max_channels) { 298 void TransmitMixer::GetSendCodecInfo(int* max_sample_rate,
299 size_t* max_channels) {
299 *max_sample_rate = 8000; 300 *max_sample_rate = 8000;
300 *max_channels = 1; 301 *max_channels = 1;
301 for (ChannelManager::Iterator it(_channelManagerPtr); it.IsValid(); 302 for (ChannelManager::Iterator it(_channelManagerPtr); it.IsValid();
302 it.Increment()) { 303 it.Increment()) {
303 Channel* channel = it.GetChannel(); 304 Channel* channel = it.GetChannel();
304 if (channel->Sending()) { 305 if (channel->Sending()) {
305 CodecInst codec; 306 CodecInst codec;
306 channel->GetSendCodec(codec); 307 channel->GetSendCodec(codec);
307 *max_sample_rate = std::max(*max_sample_rate, codec.plfreq); 308 *max_sample_rate = std::max(*max_sample_rate, codec.plfreq);
308 *max_channels = std::max(*max_channels, codec.channels); 309 *max_channels = std::max(*max_channels, codec.channels);
309 } 310 }
310 } 311 }
311 } 312 }
312 313
313 int32_t 314 int32_t
314 TransmitMixer::PrepareDemux(const void* audioSamples, 315 TransmitMixer::PrepareDemux(const void* audioSamples,
315 size_t nSamples, 316 size_t nSamples,
316 uint8_t nChannels, 317 size_t nChannels,
317 uint32_t samplesPerSec, 318 uint32_t samplesPerSec,
318 uint16_t totalDelayMS, 319 uint16_t totalDelayMS,
319 int32_t clockDrift, 320 int32_t clockDrift,
320 uint16_t currentMicLevel, 321 uint16_t currentMicLevel,
321 bool keyPressed) 322 bool keyPressed)
322 { 323 {
323 WEBRTC_TRACE(kTraceStream, kTraceVoice, VoEId(_instanceId, -1), 324 WEBRTC_TRACE(kTraceStream, kTraceVoice, VoEId(_instanceId, -1),
324 "TransmitMixer::PrepareDemux(nSamples=%" PRIuS ", " 325 "TransmitMixer::PrepareDemux(nSamples=%" PRIuS ", "
325 "nChannels=%u, samplesPerSec=%u, totalDelayMS=%u, " 326 "nChannels=%" PRIuS ", samplesPerSec=%u, totalDelayMS=%u, "
326 "clockDrift=%d, currentMicLevel=%u)", 327 "clockDrift=%d, currentMicLevel=%u)",
327 nSamples, nChannels, samplesPerSec, totalDelayMS, clockDrift, 328 nSamples, nChannels, samplesPerSec, totalDelayMS, clockDrift,
328 currentMicLevel); 329 currentMicLevel);
329 330
330 // --- Resample input audio and create/store the initial audio frame 331 // --- Resample input audio and create/store the initial audio frame
331 GenerateAudioFrame(static_cast<const int16_t*>(audioSamples), 332 GenerateAudioFrame(static_cast<const int16_t*>(audioSamples),
332 nSamples, 333 nSamples,
333 nChannels, 334 nChannels,
334 samplesPerSec); 335 samplesPerSec);
335 336
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
420 { 421 {
421 // Demultiplex makes a copy of its input. 422 // Demultiplex makes a copy of its input.
422 channelPtr->Demultiplex(_audioFrame); 423 channelPtr->Demultiplex(_audioFrame);
423 channelPtr->PrepareEncodeAndSend(_audioFrame.sample_rate_hz_); 424 channelPtr->PrepareEncodeAndSend(_audioFrame.sample_rate_hz_);
424 } 425 }
425 } 426 }
426 return 0; 427 return 0;
427 } 428 }
428 429
429 void TransmitMixer::DemuxAndMix(const int voe_channels[], 430 void TransmitMixer::DemuxAndMix(const int voe_channels[],
430 int number_of_voe_channels) { 431 size_t number_of_voe_channels) {
431 for (int i = 0; i < number_of_voe_channels; ++i) { 432 for (size_t i = 0; i < number_of_voe_channels; ++i) {
432 voe::ChannelOwner ch = _channelManagerPtr->GetChannel(voe_channels[i]); 433 voe::ChannelOwner ch = _channelManagerPtr->GetChannel(voe_channels[i]);
433 voe::Channel* channel_ptr = ch.channel(); 434 voe::Channel* channel_ptr = ch.channel();
434 if (channel_ptr) { 435 if (channel_ptr) {
435 if (channel_ptr->Sending()) { 436 if (channel_ptr->Sending()) {
436 // Demultiplex makes a copy of its input. 437 // Demultiplex makes a copy of its input.
437 channel_ptr->Demultiplex(_audioFrame); 438 channel_ptr->Demultiplex(_audioFrame);
438 channel_ptr->PrepareEncodeAndSend(_audioFrame.sample_rate_hz_); 439 channel_ptr->PrepareEncodeAndSend(_audioFrame.sample_rate_hz_);
439 } 440 }
440 } 441 }
441 } 442 }
(...skipping 11 matching lines...) Expand all
453 Channel* channelPtr = it.GetChannel(); 454 Channel* channelPtr = it.GetChannel();
454 if (channelPtr->Sending()) 455 if (channelPtr->Sending())
455 { 456 {
456 channelPtr->EncodeAndSend(); 457 channelPtr->EncodeAndSend();
457 } 458 }
458 } 459 }
459 return 0; 460 return 0;
460 } 461 }
461 462
462 void TransmitMixer::EncodeAndSend(const int voe_channels[], 463 void TransmitMixer::EncodeAndSend(const int voe_channels[],
463 int number_of_voe_channels) { 464 size_t number_of_voe_channels) {
464 for (int i = 0; i < number_of_voe_channels; ++i) { 465 for (size_t i = 0; i < number_of_voe_channels; ++i) {
465 voe::ChannelOwner ch = _channelManagerPtr->GetChannel(voe_channels[i]); 466 voe::ChannelOwner ch = _channelManagerPtr->GetChannel(voe_channels[i]);
466 voe::Channel* channel_ptr = ch.channel(); 467 voe::Channel* channel_ptr = ch.channel();
467 if (channel_ptr && channel_ptr->Sending()) 468 if (channel_ptr && channel_ptr->Sending())
468 channel_ptr->EncodeAndSend(); 469 channel_ptr->EncodeAndSend();
469 } 470 }
470 } 471 }
471 472
472 uint32_t TransmitMixer::CaptureLevel() const 473 uint32_t TransmitMixer::CaptureLevel() const
473 { 474 {
474 return _captureLevel; 475 return _captureLevel;
(...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after
1124 } 1125 }
1125 1126
1126 bool TransmitMixer::IsRecordingMic() 1127 bool TransmitMixer::IsRecordingMic()
1127 { 1128 {
1128 CriticalSectionScoped cs(&_critSect); 1129 CriticalSectionScoped cs(&_critSect);
1129 return _fileRecording; 1130 return _fileRecording;
1130 } 1131 }
1131 1132
1132 void TransmitMixer::GenerateAudioFrame(const int16_t* audio, 1133 void TransmitMixer::GenerateAudioFrame(const int16_t* audio,
1133 size_t samples_per_channel, 1134 size_t samples_per_channel,
1134 int num_channels, 1135 size_t num_channels,
1135 int sample_rate_hz) { 1136 int sample_rate_hz) {
1136 int codec_rate; 1137 int codec_rate;
1137 int num_codec_channels; 1138 size_t num_codec_channels;
1138 GetSendCodecInfo(&codec_rate, &num_codec_channels); 1139 GetSendCodecInfo(&codec_rate, &num_codec_channels);
1139 // TODO(ajm): This currently restricts the sample rate to 32 kHz. 1140 // TODO(ajm): This currently restricts the sample rate to 32 kHz.
1140 // See: https://code.google.com/p/webrtc/issues/detail?id=3146 1141 // See: https://code.google.com/p/webrtc/issues/detail?id=3146
1141 // When 48 kHz is supported natively by AudioProcessing, this will have 1142 // When 48 kHz is supported natively by AudioProcessing, this will have
1142 // to be changed to handle 44.1 kHz. 1143 // to be changed to handle 44.1 kHz.
1143 int max_sample_rate_hz = kAudioProcMaxNativeSampleRateHz; 1144 int max_sample_rate_hz = kAudioProcMaxNativeSampleRateHz;
1144 if (audioproc_->echo_control_mobile()->is_enabled()) { 1145 if (audioproc_->echo_control_mobile()->is_enabled()) {
1145 // AECM only supports 8 and 16 kHz. 1146 // AECM only supports 8 and 16 kHz.
1146 max_sample_rate_hz = 16000; 1147 max_sample_rate_hz = 16000;
1147 } 1148 }
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
1337 void TransmitMixer::EnableStereoChannelSwapping(bool enable) { 1338 void TransmitMixer::EnableStereoChannelSwapping(bool enable) {
1338 swap_stereo_channels_ = enable; 1339 swap_stereo_channels_ = enable;
1339 } 1340 }
1340 1341
1341 bool TransmitMixer::IsStereoChannelSwappingEnabled() { 1342 bool TransmitMixer::IsStereoChannelSwappingEnabled() {
1342 return swap_stereo_channels_; 1343 return swap_stereo_channels_;
1343 } 1344 }
1344 1345
1345 } // namespace voe 1346 } // namespace voe
1346 } // namespace webrtc 1347 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/voice_engine/transmit_mixer.h ('k') | webrtc/voice_engine/utility.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698