OLD | NEW |
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 |
11 #include "webrtc/voice_engine/output_mixer.h" | 11 #include "webrtc/voice_engine/output_mixer.h" |
12 | 12 |
| 13 #include "webrtc/base/format_macros.h" |
13 #include "webrtc/modules/audio_processing/include/audio_processing.h" | 14 #include "webrtc/modules/audio_processing/include/audio_processing.h" |
14 #include "webrtc/modules/utility/interface/audio_frame_operations.h" | 15 #include "webrtc/modules/utility/interface/audio_frame_operations.h" |
15 #include "webrtc/system_wrappers/interface/critical_section_wrapper.h" | 16 #include "webrtc/system_wrappers/interface/critical_section_wrapper.h" |
16 #include "webrtc/system_wrappers/interface/file_wrapper.h" | 17 #include "webrtc/system_wrappers/interface/file_wrapper.h" |
17 #include "webrtc/system_wrappers/interface/trace.h" | 18 #include "webrtc/system_wrappers/interface/trace.h" |
18 #include "webrtc/voice_engine/include/voe_external_media.h" | 19 #include "webrtc/voice_engine/include/voe_external_media.h" |
19 #include "webrtc/voice_engine/statistics.h" | 20 #include "webrtc/voice_engine/statistics.h" |
20 #include "webrtc/voice_engine/utility.h" | 21 #include "webrtc/voice_engine/utility.h" |
21 | 22 |
22 namespace webrtc { | 23 namespace webrtc { |
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
455 } | 456 } |
456 _outputFileRecorderPtr->RegisterModuleFileCallback(NULL); | 457 _outputFileRecorderPtr->RegisterModuleFileCallback(NULL); |
457 FileRecorder::DestroyFileRecorder(_outputFileRecorderPtr); | 458 FileRecorder::DestroyFileRecorder(_outputFileRecorderPtr); |
458 _outputFileRecorderPtr = NULL; | 459 _outputFileRecorderPtr = NULL; |
459 _outputFileRecording = false; | 460 _outputFileRecording = false; |
460 | 461 |
461 return 0; | 462 return 0; |
462 } | 463 } |
463 | 464 |
464 int OutputMixer::GetMixedAudio(int sample_rate_hz, | 465 int OutputMixer::GetMixedAudio(int sample_rate_hz, |
465 int num_channels, | 466 size_t num_channels, |
466 AudioFrame* frame) { | 467 AudioFrame* frame) { |
467 WEBRTC_TRACE(kTraceStream, kTraceVoice, VoEId(_instanceId,-1), | 468 WEBRTC_TRACE( |
468 "OutputMixer::GetMixedAudio(sample_rate_hz=%d, num_channels=%d)", | 469 kTraceStream, kTraceVoice, VoEId(_instanceId,-1), |
469 sample_rate_hz, num_channels); | 470 "OutputMixer::GetMixedAudio(sample_rate_hz=%d, num_channels=%" PRIuS ")", |
| 471 sample_rate_hz, num_channels); |
470 | 472 |
471 // --- Record playout if enabled | 473 // --- Record playout if enabled |
472 { | 474 { |
473 CriticalSectionScoped cs(&_fileCritSect); | 475 CriticalSectionScoped cs(&_fileCritSect); |
474 if (_outputFileRecording && _outputFileRecorderPtr) | 476 if (_outputFileRecording && _outputFileRecorderPtr) |
475 _outputFileRecorderPtr->RecordAudioToFile(_audioFrame); | 477 _outputFileRecorderPtr->RecordAudioToFile(_audioFrame); |
476 } | 478 } |
477 | 479 |
478 frame->num_channels_ = num_channels; | 480 frame->num_channels_ = num_channels; |
479 frame->sample_rate_hz_ = sample_rate_hz; | 481 frame->sample_rate_hz_ = sample_rate_hz; |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
602 _audioFrame.data_[2 * i + 1] = 0; | 604 _audioFrame.data_[2 * i + 1] = 0; |
603 } | 605 } |
604 } | 606 } |
605 assert(_audioFrame.samples_per_channel_ == toneSamples); | 607 assert(_audioFrame.samples_per_channel_ == toneSamples); |
606 | 608 |
607 return 0; | 609 return 0; |
608 } | 610 } |
609 | 611 |
610 } // namespace voe | 612 } // namespace voe |
611 } // namespace webrtc | 613 } // namespace webrtc |
OLD | NEW |