diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-11-15 02:00:46 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-11-15 02:05:25 +0100 |
commit | d4065a9f475589823608218e3b25a0df941495a6 (patch) | |
tree | 1081d1ca666747cc3d50335bc2bd614b57f1244e /libavcodec/lpc.h | |
parent | a5adeff45745ec973bb42217a61752dc80d256c4 (diff) | |
parent | 60e0ee7ca25bd3bea54043b0607efe4cd51acaf3 (diff) | |
download | ffmpeg-d4065a9f475589823608218e3b25a0df941495a6.tar.gz |
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.h | 2 |
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); |