Commit d1870624 authored by Michael Niedermayer's avatar Michael Niedermayer

audioconvert/arm: require alignment of 16

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent ceb9f8d9
......@@ -61,5 +61,7 @@ av_cold void swri_audio_convert_init_arm(struct AudioConvert *ac,
ac->simd_f = conv_fltp_to_s16_2ch_neon;
if(out_fmt == AV_SAMPLE_FMT_S16 && in_fmt == AV_SAMPLE_FMT_FLTP && channels > 2)
ac->simd_f = conv_fltp_to_s16_nch_neon;
if(ac->simd_f)
ac->in_simd_align_mask = ac->out_simd_align_mask = 15;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment