Index: webrtc/modules/audio_coding/neteq/expand.cc |
diff --git a/webrtc/modules/audio_coding/neteq/expand.cc b/webrtc/modules/audio_coding/neteq/expand.cc |
index 2aa9fb0a8d6b9a69e4df95596b362923a4fa772b..ef7af46597e4344156dc48b553d467934622f4b2 100644 |
--- a/webrtc/modules/audio_coding/neteq/expand.cc |
+++ b/webrtc/modules/audio_coding/neteq/expand.cc |
@@ -519,7 +519,7 @@ void Expand::AnalyzeSignal(int16_t* random_vector) { |
energy2 = WebRtcSpl_DotProductWithScale(vector2, vector2, expansion_length, |
correlation_scale); |
// Confirm that amplitude ratio sqrt(energy1 / energy2) is within 0.5 - 2.0, |
- // i.e., energy1 / energy1 is within 0.25 - 4. |
+ // i.e., energy1 / energy2 is within 0.25 - 4. |
int16_t amplitude_ratio; |
if ((energy1 / 4 < energy2) && (energy1 > energy2 / 4)) { |
// Energy constraint fulfilled. Use both vectors and scale them |