summaryrefslogtreecommitdiffstats
path: root/libavcodec/lpc.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-06-30 11:30:07 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-06-30 11:35:52 +0200
commit78b547963362cc9827d92dc0808534b757ab05d4 (patch)
tree5b15d364e43e987ea2be5c381d0e99e9b303d958 /libavcodec/lpc.c
parentc93a424718c38c6add273745f3792b531332ea88 (diff)
parent502ab21af0ca68f76d6112722c46d2f35c004053 (diff)
downloadffmpeg-streaming-78b547963362cc9827d92dc0808534b757ab05d4.zip
ffmpeg-streaming-78b547963362cc9827d92dc0808534b757ab05d4.tar.gz
Merge commit '502ab21af0ca68f76d6112722c46d2f35c004053'
* commit '502ab21af0ca68f76d6112722c46d2f35c004053': x86: lpc: simd av_update_lls The versions are bumped due to changes in lls.h which is used across libraries affecting intra library ABI (This version bump also covers changes to lls.h in the immedeatly previous commits) Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/lpc.c')
-rw-r--r--libavcodec/lpc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/lpc.c b/libavcodec/lpc.c
index e2c0aac..559a87d 100644
--- a/libavcodec/lpc.c
+++ b/libavcodec/lpc.c
@@ -201,7 +201,9 @@ int ff_lpc_calc_coefs(LPCContext *s,
ref[i] = fabs(lpc[i][i]);
} else if (lpc_type == FF_LPC_TYPE_CHOLESKY) {
LLSModel m[2];
- double var[MAX_LPC_ORDER+1], av_uninit(weight);
+ LOCAL_ALIGNED(32, double, var, [FFALIGN(MAX_LPC_ORDER+1,4)]);
+ double av_uninit(weight);
+ memset(var, 0, FFALIGN(MAX_LPC_ORDER+1,4)*sizeof(*var));
if(lpc_passes <= 0)
lpc_passes = 2;
OpenPOWER on IntegriCloud