Index: webrtc/modules/audio_coding/codecs/isac/main/source/lpc_analysis.c |
diff --git a/webrtc/modules/audio_coding/codecs/isac/main/source/lpc_analysis.c b/webrtc/modules/audio_coding/codecs/isac/main/source/lpc_analysis.c |
index 4708a5c3526f487fd70ebebe5dbffeed8bad5d0e..60fc25b98bb874e5a64f0b5c28ec1b15a048b49a 100644 |
--- a/webrtc/modules/audio_coding/codecs/isac/main/source/lpc_analysis.c |
+++ b/webrtc/modules/audio_coding/codecs/isac/main/source/lpc_analysis.c |
@@ -75,11 +75,11 @@ static const double kLpcCorrWindow[WINLEN] = { |
0.00155690, 0.00124918, 0.00094895, 0.00066112, 0.00039320, 0.00015881 |
}; |
-double WebRtcIsac_LevDurb(double *a, double *k, double *r, int order) |
+double WebRtcIsac_LevDurb(double *a, double *k, double *r, size_t order) |
{ |
double sum, alpha; |
- int m, m_h, i; |
+ size_t m, m_h, i; |
alpha = 0; //warning -DH |
a[0] = 1.0; |
if (r[0] < LEVINSON_EPS) { /* if r[0] <= 0, set LPC coeff. to zero */ |