@@ -43,9 +43,9 @@ static void vol_s24_to_s24_s32(struct processing_module *mod, struct input_strea
4343 struct vol_data * cd = module_get_private_data (mod );
4444 struct audio_stream * source = bsource -> data ;
4545 struct audio_stream * sink = bsink -> data ;
46- ae_f32x2 in_sample = AE_ZERO32 () ;
47- ae_f32x2 out_sample = AE_ZERO32 () ;
48- ae_f32x2 volume = AE_ZERO32 () ;
46+ ae_f32x2 in_sample ;
47+ ae_f32x2 out_sample ;
48+ ae_f32x2 volume ;
4949 int channel , n , i , m ;
5050 ae_f32 * in0 = (ae_f32 * )audio_stream_wrap (source , (char * )audio_stream_get_rptr (source )
5151 + bsource -> consumed );
@@ -118,7 +118,7 @@ static void vol_passthrough_s24_to_s24_s32(struct processing_module *mod,
118118 struct vol_data * cd = module_get_private_data (mod );
119119 struct audio_stream * source = bsource -> data ;
120120 struct audio_stream * sink = bsink -> data ;
121- ae_f32x2 in_sample = AE_ZERO32 () ;
121+ ae_f32x2 in_sample ;
122122 int channel , n , i , m ;
123123 ae_f32 * in0 = (ae_f32 * )audio_stream_wrap (source , (char * )audio_stream_get_rptr (source )
124124 + bsource -> consumed );
@@ -178,9 +178,9 @@ static void vol_s32_to_s24_s32(struct processing_module *mod, struct input_strea
178178 struct vol_data * cd = module_get_private_data (mod );
179179 struct audio_stream * source = bsource -> data ;
180180 struct audio_stream * sink = bsink -> data ;
181- ae_f32x2 in_sample = AE_ZERO32 () ;
182- ae_f32x2 out_sample = AE_ZERO32 () ;
183- ae_f32x2 volume = AE_ZERO32 () ;
181+ ae_f32x2 in_sample ;
182+ ae_f32x2 out_sample ;
183+ ae_f32x2 volume ;
184184 int i , n , channel , m ;
185185 ae_f64 mult0 ;
186186 const int channels_count = audio_stream_get_channels (sink );
@@ -254,7 +254,7 @@ static void vol_passthrough_s32_to_s24_s32(struct processing_module *mod,
254254 struct vol_data * cd = module_get_private_data (mod );
255255 struct audio_stream * source = bsource -> data ;
256256 struct audio_stream * sink = bsink -> data ;
257- ae_f32x2 in_sample = AE_ZERO32 () ;
257+ ae_f32x2 in_sample ;
258258 int i , n , channel , m ;
259259 const int channels_count = audio_stream_get_channels (sink );
260260 const int inc = sizeof (ae_f32 ) * channels_count ;
@@ -314,10 +314,10 @@ static void vol_s16_to_s16(struct processing_module *mod, struct input_stream_bu
314314 struct vol_data * cd = module_get_private_data (mod );
315315 struct audio_stream * source = bsource -> data ;
316316 struct audio_stream * sink = bsink -> data ;
317- ae_f32x2 volume = AE_ZERO32 () ;
318- ae_f32x2 out_sample0 = AE_ZERO32 () ;
319- ae_f16x4 in_sample = AE_ZERO16 () ;
320- ae_f16x4 out_sample = AE_ZERO16 () ;
317+ ae_f32x2 volume ;
318+ ae_f32x2 out_sample0 ;
319+ ae_f16x4 in_sample ;
320+ ae_f16x4 out_sample ;
321321 int i , n , channel , m ;
322322 ae_f16 * in ;
323323 ae_f16 * out ;
@@ -396,7 +396,7 @@ static void vol_passthrough_s16_to_s16(struct processing_module *mod,
396396 struct vol_data * cd = module_get_private_data (mod );
397397 struct audio_stream * source = bsource -> data ;
398398 struct audio_stream * sink = bsink -> data ;
399- ae_f16x4 in_sample = AE_ZERO16 () ;
399+ ae_f16x4 in_sample ;
400400 int i , n , channel , m ;
401401 ae_f16 * in ;
402402 ae_f16 * out ;
0 commit comments