mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-06-19 19:03:00 +02:00
ape: Replace memset(0) by zero initialization
This commit is contained in:
+1
-3
@@ -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]);
|
||||
|
||||
Reference in New Issue
Block a user