summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavcodec/lpc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/lpc.c b/libavcodec/lpc.c
index 92c701beab..896db51759 100644
--- a/libavcodec/lpc.c
+++ b/libavcodec/lpc.c
@@ -123,7 +123,7 @@ int ff_lpc_calc_coefs(DSPContext *s,
ref[i] = fabs(lpc[i][i]);
}else{
LLSModel m[2];
- double var[MAX_LPC_ORDER+1], weight;
+ double var[MAX_LPC_ORDER+1], av_uninit(weight);
for(pass=0; pass<use_lpc-1; pass++){
av_init_lls(&m[pass&1], max_order);