diff options
-rw-r--r-- | libavcodec/lpc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/lpc.c b/libavcodec/lpc.c index 315997cc15..5cda7797e4 100644 --- a/libavcodec/lpc.c +++ b/libavcodec/lpc.c @@ -172,7 +172,7 @@ double ff_lpc_calc_ref_coefs_f(LPCContext *s, const float *samples, int len, { int i; double signal = 0.0f, avg_err = 0.0f; - double autoc[MAX_LPC_ORDER+1] = {0}, error[MAX_LPC_ORDER] = {0}; + double autoc[MAX_LPC_ORDER+1] = {0}, error[MAX_LPC_ORDER+1] = {0}; const double c = (len - 1)/2.0f; /* Welch window */ |