dcaenc: silence address sanitizer warning

Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
Paul B Mahol 2013-04-26 11:41:00 +00:00
parent 6a8d05061f
commit 30579b7ef0
1 changed files with 6 additions and 1 deletions

View File

@ -168,8 +168,13 @@ static int encode_init(AVCodecContext *avctx)
cb_to_level[i] = (int32_t)(0x7fffffff * pow(10, -0.005 * i));
}
/* FIXME: probably incorrect */
for (i = 0; i < 256; i++) {
lfe_fir_64i[i] = (int32_t)(0x01ffffff * lfe_fir_64[i]);
lfe_fir_64i[511 - i] = (int32_t)(0x01ffffff * lfe_fir_64[i]);
}
for (i = 0; i < 512; i++) {
lfe_fir_64i[i] = (int32_t)(0x01ffffff * lfe_fir_64[i]);
band_interpolation[0][i] = (int32_t)(0x1000000000ULL * fir_32bands_perfect[i]);
band_interpolation[1][i] = (int32_t)(0x1000000000ULL * fir_32bands_nonperfect[i]);
}