1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

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: c4a36b6f70
See: 0dd99628ea
Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer
2014-11-15 02:00:46 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -175,7 +175,7 @@ int ff_lpc_calc_coefs(LPCContext *s,
int omethod, int max_shift, int zero_shift) int omethod, int max_shift, int zero_shift)
{ {
double autoc[MAX_LPC_ORDER+1]; 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]; double lpc[MAX_LPC_ORDER][MAX_LPC_ORDER];
int i, j, pass = 0; int i, j, pass = 0;
int opt_order; int opt_order;

View File

@@ -153,7 +153,7 @@ static inline int compute_lpc_coefs(const LPC_TYPE *autoc, int max_order,
int normalize) int normalize)
{ {
int i, j; int i, j;
LPC_TYPE err; LPC_TYPE err = { 0 };
LPC_TYPE *lpc_last = lpc; LPC_TYPE *lpc_last = lpc;
av_assert2(normalize || !fail); av_assert2(normalize || !fail);