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/modules/audio_processing/level_estimator_impl.h" | 11 #include "webrtc/modules/audio_processing/level_estimator_impl.h" |
12 | 12 |
13 #include "webrtc/modules/audio_processing/audio_buffer.h" | 13 #include "webrtc/modules/audio_processing/audio_buffer.h" |
14 #include "webrtc/modules/audio_processing/include/audio_processing.h" | 14 #include "webrtc/modules/audio_processing/include/audio_processing.h" |
15 #include "webrtc/modules/audio_processing/rms_level.h" | 15 #include "webrtc/modules/audio_processing/rms_level.h" |
16 #include "webrtc/system_wrappers/include/critical_section_wrapper.h" | 16 #include "webrtc/system_wrappers/include/critical_section_wrapper.h" |
17 | 17 |
18 namespace webrtc { | 18 namespace webrtc { |
19 | 19 |
20 LevelEstimatorImpl::LevelEstimatorImpl(const AudioProcessing* apm, | 20 LevelEstimatorImpl::LevelEstimatorImpl(const AudioProcessing* apm) |
21 CriticalSectionWrapper* crit) | 21 : ProcessingComponent() {} |
22 : ProcessingComponent(), | |
23 crit_(crit) {} | |
24 | 22 |
25 LevelEstimatorImpl::~LevelEstimatorImpl() {} | 23 LevelEstimatorImpl::~LevelEstimatorImpl() {} |
26 | 24 |
27 int LevelEstimatorImpl::ProcessStream(AudioBuffer* audio) { | 25 int LevelEstimatorImpl::ProcessStream(AudioBuffer* audio) { |
| 26 // Only called from within APM so no locking needed. |
28 if (!is_component_enabled()) { | 27 if (!is_component_enabled()) { |
29 return AudioProcessing::kNoError; | 28 return AudioProcessing::kNoError; |
30 } | 29 } |
31 | 30 |
32 RMSLevel* rms_level = static_cast<RMSLevel*>(handle(0)); | 31 RMSLevel* rms_level = static_cast<RMSLevel*>(handle(0)); |
33 for (int i = 0; i < audio->num_channels(); ++i) { | 32 for (int i = 0; i < audio->num_channels(); ++i) { |
34 rms_level->Process(audio->channels_const()[i], | 33 rms_level->Process(audio->channels_const()[i], |
35 audio->num_frames()); | 34 audio->num_frames()); |
36 } | 35 } |
37 | 36 |
38 return AudioProcessing::kNoError; | 37 return AudioProcessing::kNoError; |
39 } | 38 } |
40 | 39 |
41 int LevelEstimatorImpl::Enable(bool enable) { | 40 int LevelEstimatorImpl::Enable(bool enable) { |
42 CriticalSectionScoped crit_scoped(crit_); | |
43 return EnableComponent(enable); | 41 return EnableComponent(enable); |
44 } | 42 } |
45 | 43 |
46 bool LevelEstimatorImpl::is_enabled() const { | 44 bool LevelEstimatorImpl::is_enabled() const { |
| 45 // Only called from within APM so no locking needed. |
47 return is_component_enabled(); | 46 return is_component_enabled(); |
48 } | 47 } |
49 | 48 |
50 int LevelEstimatorImpl::RMS() { | 49 int LevelEstimatorImpl::RMS() { |
| 50 // Only called from within APM so no locking needed. |
51 if (!is_component_enabled()) { | 51 if (!is_component_enabled()) { |
52 return AudioProcessing::kNotEnabledError; | 52 return AudioProcessing::kNotEnabledError; |
53 } | 53 } |
54 | 54 |
55 RMSLevel* rms_level = static_cast<RMSLevel*>(handle(0)); | 55 RMSLevel* rms_level = static_cast<RMSLevel*>(handle(0)); |
56 return rms_level->RMS(); | 56 return rms_level->RMS(); |
57 } | 57 } |
58 | 58 |
59 // The ProcessingComponent implementation is pretty weird in this class since | 59 // The ProcessingComponent implementation is pretty weird in this class since |
60 // we have only a single instance of the trivial underlying component. | 60 // we have only a single instance of the trivial underlying component. |
(...skipping 16 matching lines...) Expand all Loading... |
77 | 77 |
78 int LevelEstimatorImpl::num_handles_required() const { | 78 int LevelEstimatorImpl::num_handles_required() const { |
79 return 1; | 79 return 1; |
80 } | 80 } |
81 | 81 |
82 int LevelEstimatorImpl::GetHandleError(void* /*handle*/) const { | 82 int LevelEstimatorImpl::GetHandleError(void* /*handle*/) const { |
83 return AudioProcessing::kUnspecifiedError; | 83 return AudioProcessing::kUnspecifiedError; |
84 } | 84 } |
85 | 85 |
86 } // namespace webrtc | 86 } // namespace webrtc |
OLD | NEW |