Commit 056a1117 authored by Florent's avatar Florent Committed by Maksim Shabunin

Fixed histogram substraction bug with NEON instructions (arguments in wrong order).

parent 7172c164
......@@ -1851,8 +1851,8 @@ static inline void histogram_add_simd( const HT x[16], HT y[16] )
static inline void histogram_sub_simd( const HT x[16], HT y[16] )
{
vst1q_u16(y, vsubq_u16(vld1q_u16(x), vld1q_u16(y)));
vst1q_u16(y + 8, vsubq_u16(vld1q_u16(x + 8), vld1q_u16(y + 8)));
vst1q_u16(y, vsubq_u16(vld1q_u16(y), vld1q_u16(x)));
vst1q_u16(y + 8, vsubq_u16(vld1q_u16(y + 8), vld1q_u16(x + 8)));
}
#else
......
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