On Tue, 30 Oct 2012 10:39:28 +0100 Frédéric Dalleau <frederic.dalleau@xxxxxxxxxxxxxxx> wrote: > --- > sbc/sbc_primitives.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/sbc/sbc_primitives.c b/sbc/sbc_primitives.c > index a4767ef..9311848 100644 > --- a/sbc/sbc_primitives.c > +++ b/sbc/sbc_primitives.c > @@ -568,5 +568,8 @@ void sbc_init_primitives(struct sbc_encoder_state *state) > #endif > #ifdef SBC_BUILD_WITH_NEON_SUPPORT > sbc_init_primitives_neon(state); > + > + if (state->increment == 1) > + state->sbc_analyze_8s = sbc_analyze_1b_8s_simd; > #endif > } This is not enough. As I commented earlier in http://permalink.gmane.org/gmane.linux.bluez.kernel/31567 "neon code also provides optimized "sbc_enc_process_input_*" functions, which are not going to work correctly for mSBC: state->sbc_enc_process_input_8s_le = sbc_enc_process_input_8s_le_neon; state->sbc_enc_process_input_8s_be = sbc_enc_process_input_8s_be_neon;" And if we had, for example, an SSSE3 implementation of "sbc_enc_process_input_*" functions for x86 (via PSHUFB instruction), then it would also have the same problem. -- Best regards, Siarhei Siamashka -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html