OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2014 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 27 matching lines...) Expand all Loading... |
38 // |analysis_rate| sets the number of input blocks (containing speech!) | 38 // |analysis_rate| sets the number of input blocks (containing speech!) |
39 // to elapse before a new gain computation is made. |variance_rate| specifies | 39 // to elapse before a new gain computation is made. |variance_rate| specifies |
40 // the number of gain recomputations after which the variances are reset. | 40 // the number of gain recomputations after which the variances are reset. |
41 // |cv_*| are parameters for the VarianceArray constructor for the | 41 // |cv_*| are parameters for the VarianceArray constructor for the |
42 // clear speech stream. | 42 // clear speech stream. |
43 // TODO(bercic): the |cv_*|, |*_rate| and |gain_limit| parameters should | 43 // TODO(bercic): the |cv_*|, |*_rate| and |gain_limit| parameters should |
44 // probably go away once fine tuning is done. They override the internal | 44 // probably go away once fine tuning is done. They override the internal |
45 // constants in the class (kGainChangeLimit, kAnalyzeRate, kVarianceRate). | 45 // constants in the class (kGainChangeLimit, kAnalyzeRate, kVarianceRate). |
46 IntelligibilityEnhancer(size_t erb_resolution, | 46 IntelligibilityEnhancer(size_t erb_resolution, |
47 int sample_rate_hz, | 47 int sample_rate_hz, |
48 int channels, | 48 size_t channels, |
49 int cv_type, | 49 int cv_type, |
50 float cv_alpha, | 50 float cv_alpha, |
51 size_t cv_win, | 51 size_t cv_win, |
52 int analysis_rate, | 52 int analysis_rate, |
53 int variance_rate, | 53 int variance_rate, |
54 float gain_limit); | 54 float gain_limit); |
55 ~IntelligibilityEnhancer(); | 55 ~IntelligibilityEnhancer(); |
56 | 56 |
57 // Reads and processes chunk of noise stream in time domain. | 57 // Reads and processes chunk of noise stream in time domain. |
58 void ProcessCaptureAudio(float* const* audio); | 58 void ProcessCaptureAudio(float* const* audio); |
59 | 59 |
60 // Reads chunk of speech in time domain and updates with modified signal. | 60 // Reads chunk of speech in time domain and updates with modified signal. |
61 void ProcessRenderAudio(float* const* audio); | 61 void ProcessRenderAudio(float* const* audio); |
62 | 62 |
63 private: | 63 private: |
64 enum AudioSource { | 64 enum AudioSource { |
65 kRenderStream = 0, // Clear speech stream. | 65 kRenderStream = 0, // Clear speech stream. |
66 kCaptureStream, // Noise stream. | 66 kCaptureStream, // Noise stream. |
67 }; | 67 }; |
68 | 68 |
69 // Provides access point to the frequency domain. | 69 // Provides access point to the frequency domain. |
70 class TransformCallback : public LappedTransform::Callback { | 70 class TransformCallback : public LappedTransform::Callback { |
71 public: | 71 public: |
72 TransformCallback(IntelligibilityEnhancer* parent, AudioSource source); | 72 TransformCallback(IntelligibilityEnhancer* parent, AudioSource source); |
73 | 73 |
74 // All in frequency domain, receives input |in_block|, applies | 74 // All in frequency domain, receives input |in_block|, applies |
75 // intelligibility enhancement, and writes result to |out_block|. | 75 // intelligibility enhancement, and writes result to |out_block|. |
76 void ProcessAudioBlock(const std::complex<float>* const* in_block, | 76 void ProcessAudioBlock(const std::complex<float>* const* in_block, |
77 int in_channels, | 77 size_t in_channels, |
78 size_t frames, | 78 size_t frames, |
79 int out_channels, | 79 size_t out_channels, |
80 std::complex<float>* const* out_block) override; | 80 std::complex<float>* const* out_block) override; |
81 | 81 |
82 private: | 82 private: |
83 IntelligibilityEnhancer* parent_; | 83 IntelligibilityEnhancer* parent_; |
84 AudioSource source_; | 84 AudioSource source_; |
85 }; | 85 }; |
86 friend class TransformCallback; | 86 friend class TransformCallback; |
87 FRIEND_TEST_ALL_PREFIXES(IntelligibilityEnhancerTest, TestErbCreation); | 87 FRIEND_TEST_ALL_PREFIXES(IntelligibilityEnhancerTest, TestErbCreation); |
88 FRIEND_TEST_ALL_PREFIXES(IntelligibilityEnhancerTest, TestSolveForGains); | 88 FRIEND_TEST_ALL_PREFIXES(IntelligibilityEnhancerTest, TestSolveForGains); |
89 | 89 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 | 126 |
127 // Returns dot product of vectors specified by size |length| arrays |a|,|b|. | 127 // Returns dot product of vectors specified by size |length| arrays |a|,|b|. |
128 static float DotProduct(const float* a, const float* b, size_t length); | 128 static float DotProduct(const float* a, const float* b, size_t length); |
129 | 129 |
130 const size_t freqs_; // Num frequencies in frequency domain. | 130 const size_t freqs_; // Num frequencies in frequency domain. |
131 const size_t window_size_; // Window size in samples; also the block size. | 131 const size_t window_size_; // Window size in samples; also the block size. |
132 const size_t chunk_length_; // Chunk size in samples. | 132 const size_t chunk_length_; // Chunk size in samples. |
133 const size_t bank_size_; // Num ERB filters. | 133 const size_t bank_size_; // Num ERB filters. |
134 const int sample_rate_hz_; | 134 const int sample_rate_hz_; |
135 const int erb_resolution_; | 135 const int erb_resolution_; |
136 const int channels_; // Num channels. | 136 const size_t channels_; // Num channels. |
137 const int analysis_rate_; // Num blocks before gains recalculated. | 137 const int analysis_rate_; // Num blocks before gains recalculated. |
138 const int variance_rate_; // Num recalculations before history is cleared. | 138 const int variance_rate_; // Num recalculations before history is cleared. |
139 | 139 |
140 intelligibility::VarianceArray clear_variance_; | 140 intelligibility::VarianceArray clear_variance_; |
141 intelligibility::VarianceArray noise_variance_; | 141 intelligibility::VarianceArray noise_variance_; |
142 rtc::scoped_ptr<float[]> filtered_clear_var_; | 142 rtc::scoped_ptr<float[]> filtered_clear_var_; |
143 rtc::scoped_ptr<float[]> filtered_noise_var_; | 143 rtc::scoped_ptr<float[]> filtered_noise_var_; |
144 std::vector<std::vector<float>> filter_bank_; | 144 std::vector<std::vector<float>> filter_bank_; |
145 rtc::scoped_ptr<float[]> center_freqs_; | 145 rtc::scoped_ptr<float[]> center_freqs_; |
146 size_t start_freq_; | 146 size_t start_freq_; |
(...skipping 21 matching lines...) Expand all Loading... |
168 // Note: VAD currently does not affect anything in IntelligibilityEnhancer. | 168 // Note: VAD currently does not affect anything in IntelligibilityEnhancer. |
169 VadInst* vad_high_; | 169 VadInst* vad_high_; |
170 VadInst* vad_low_; | 170 VadInst* vad_low_; |
171 rtc::scoped_ptr<int16_t[]> vad_tmp_buffer_; | 171 rtc::scoped_ptr<int16_t[]> vad_tmp_buffer_; |
172 bool has_voice_low_; // Whether voice detected in speech stream. | 172 bool has_voice_low_; // Whether voice detected in speech stream. |
173 }; | 173 }; |
174 | 174 |
175 } // namespace webrtc | 175 } // namespace webrtc |
176 | 176 |
177 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_INTELLIGIBILITY_INTELLIGIBILITY_ENHAN
CER_H_ | 177 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_INTELLIGIBILITY_INTELLIGIBILITY_ENHAN
CER_H_ |
OLD | NEW |