mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2025-02-16 01:48:26 +00:00
ape: Replace memset(0) by zero initialization
This commit is contained in:
parent
8d695dc411
commit
f83896abda
@ -935,10 +935,8 @@ static void long_filter_ehigh_3830(int32_t *buffer, int length)
|
||||
{
|
||||
int i, j;
|
||||
int32_t dotprod, sign;
|
||||
int32_t coeffs[8], delay[8];
|
||||
int32_t coeffs[8] = { 0 }, delay[8] = { 0 };
|
||||
|
||||
memset(coeffs, 0, sizeof(coeffs));
|
||||
memset(delay, 0, sizeof(delay));
|
||||
for (i = 0; i < length; i++) {
|
||||
dotprod = 0;
|
||||
sign = APESIGN(buffer[i]);
|
||||
|
Loading…
x
Reference in New Issue
Block a user