summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-11-15 02:00:46 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-11-15 02:05:25 +0100
commitd4065a9f475589823608218e3b25a0df941495a6 (patch)
tree1081d1ca666747cc3d50335bc2bd614b57f1244e
parenta5adeff45745ec973bb42217a61752dc80d256c4 (diff)
parent60e0ee7ca25bd3bea54043b0607efe4cd51acaf3 (diff)
Merge commit '60e0ee7ca25bd3bea54043b0607efe4cd51acaf3'
* commit '60e0ee7ca25bd3bea54043b0607efe4cd51acaf3': lpc: always initialize ref and err The initialization is not needed, its merged anyway as it might help suppressing warnings and might make the code more robust against future changes See: c4a36b6f70f37e668874d134f955eb96e23853c9 See: 0dd99628ea15f1fe7121b8a983c0b1fe57660027 Merged-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavcodec/lpc.c2
-rw-r--r--libavcodec/lpc.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/lpc.c b/libavcodec/lpc.c
index 1d52edf744..f54f6f883d 100644
--- a/libavcodec/lpc.c
+++ b/libavcodec/lpc.c
@@ -175,7 +175,7 @@ int ff_lpc_calc_coefs(LPCContext *s,
int omethod, int max_shift, int zero_shift)
{
double autoc[MAX_LPC_ORDER+1];
- double ref[MAX_LPC_ORDER];
+ double ref[MAX_LPC_ORDER] = { 0 };
double lpc[MAX_LPC_ORDER][MAX_LPC_ORDER];
int i, j, pass = 0;
int opt_order;
diff --git a/libavcodec/lpc.h b/libavcodec/lpc.h
index c323230b19..b36b19e6b2 100644
--- a/libavcodec/lpc.h
+++ b/libavcodec/lpc.h
@@ -153,7 +153,7 @@ static inline int compute_lpc_coefs(const LPC_TYPE *autoc, int max_order,
int normalize)
{
int i, j;
- LPC_TYPE err;
+ LPC_TYPE err = { 0 };
LPC_TYPE *lpc_last = lpc;
av_assert2(normalize || !fail);