Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-11-15 04:00:46 +0300
committerMichael Niedermayer <michaelni@gmx.at>2014-11-15 04:05:25 +0300
commitd4065a9f475589823608218e3b25a0df941495a6 (patch)
tree1081d1ca666747cc3d50335bc2bd614b57f1244e /libavcodec/lpc.h
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>
Diffstat (limited to 'libavcodec/lpc.h')
-rw-r--r--libavcodec/lpc.h2
1 files changed, 1 insertions, 1 deletions
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);