1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

Merge pull request #5756 from mshabunin:smooth_neon_fix

This commit is contained in:
Maksim Shabunin
2015-12-08 08:59:58 +00:00
+2 -2
View File
@@ -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