| 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 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AGC_AGC_H_ | 11 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AGC_AGC_H_ |
| 12 #define WEBRTC_MODULES_AUDIO_PROCESSING_AGC_AGC_H_ | 12 #define WEBRTC_MODULES_AUDIO_PROCESSING_AGC_AGC_H_ |
| 13 | 13 |
| 14 #include "webrtc/base/scoped_ptr.h" | 14 #include "webrtc/base/scoped_ptr.h" |
| 15 #include "webrtc/modules/audio_processing/vad/voice_activity_detector.h" |
| 15 #include "webrtc/typedefs.h" | 16 #include "webrtc/typedefs.h" |
| 16 | 17 |
| 17 namespace webrtc { | 18 namespace webrtc { |
| 18 | 19 |
| 19 class AudioFrame; | 20 class AudioFrame; |
| 20 class AgcAudioProc; | |
| 21 class Histogram; | 21 class Histogram; |
| 22 class PitchBasedVad; | |
| 23 class Resampler; | |
| 24 class StandaloneVad; | |
| 25 | 22 |
| 26 class Agc { | 23 class Agc { |
| 27 public: | 24 public: |
| 28 Agc(); | 25 Agc(); |
| 29 virtual ~Agc(); | 26 virtual ~Agc(); |
| 30 | 27 |
| 31 // Returns the proportion of samples in the buffer which are at full-scale | 28 // Returns the proportion of samples in the buffer which are at full-scale |
| 32 // (and presumably clipped). | 29 // (and presumably clipped). |
| 33 virtual float AnalyzePreproc(const int16_t* audio, int length); | 30 virtual float AnalyzePreproc(const int16_t* audio, int length); |
| 34 // |audio| must be mono; in a multi-channel stream, provide the first (usually | 31 // |audio| must be mono; in a multi-channel stream, provide the first (usually |
| 35 // left) channel. | 32 // left) channel. |
| 36 virtual int Process(const int16_t* audio, int length, int sample_rate_hz); | 33 virtual int Process(const int16_t* audio, int length, int sample_rate_hz); |
| 37 | 34 |
| 38 // Retrieves the difference between the target RMS level and the current | 35 // Retrieves the difference between the target RMS level and the current |
| 39 // signal RMS level in dB. Returns true if an update is available and false | 36 // signal RMS level in dB. Returns true if an update is available and false |
| 40 // otherwise, in which case |error| should be ignored and no action taken. | 37 // otherwise, in which case |error| should be ignored and no action taken. |
| 41 virtual bool GetRmsErrorDb(int* error); | 38 virtual bool GetRmsErrorDb(int* error); |
| 42 virtual void Reset(); | 39 virtual void Reset(); |
| 43 | 40 |
| 44 virtual int set_target_level_dbfs(int level); | 41 virtual int set_target_level_dbfs(int level); |
| 45 virtual int target_level_dbfs() const { return target_level_dbfs_; } | 42 virtual int target_level_dbfs() const { return target_level_dbfs_; } |
| 46 | 43 |
| 47 virtual void EnableStandaloneVad(bool enable); | 44 virtual float voice_probability() const { |
| 48 virtual bool standalone_vad_enabled() const { | 45 return vad_.last_voice_probability(); |
| 49 return standalone_vad_enabled_; | |
| 50 } | 46 } |
| 51 | 47 |
| 52 virtual double voice_probability() const { return last_voice_probability_; } | |
| 53 | |
| 54 private: | 48 private: |
| 55 double target_level_loudness_; | 49 double target_level_loudness_; |
| 56 double last_voice_probability_; | |
| 57 int target_level_dbfs_; | 50 int target_level_dbfs_; |
| 58 bool standalone_vad_enabled_; | |
| 59 rtc::scoped_ptr<Histogram> histogram_; | 51 rtc::scoped_ptr<Histogram> histogram_; |
| 60 rtc::scoped_ptr<Histogram> inactive_histogram_; | 52 rtc::scoped_ptr<Histogram> inactive_histogram_; |
| 61 rtc::scoped_ptr<AgcAudioProc> audio_processing_; | 53 VoiceActivityDetector vad_; |
| 62 rtc::scoped_ptr<PitchBasedVad> pitch_based_vad_; | |
| 63 rtc::scoped_ptr<StandaloneVad> standalone_vad_; | |
| 64 rtc::scoped_ptr<Resampler> resampler_; | |
| 65 }; | 54 }; |
| 66 | 55 |
| 67 } // namespace webrtc | 56 } // namespace webrtc |
| 68 | 57 |
| 69 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AGC_AGC_H_ | 58 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AGC_AGC_H_ |
| OLD | NEW |