From 11e9e375a3a44330eb29bb6e299d14687c94c7da Mon Sep 17 00:00:00 2001 From: Vadim Pisarevsky Date: Mon, 28 Jul 2014 19:23:46 +0400 Subject: [PATCH] fixed compile warning with GCC --- modules/imgproc/src/demosaicing.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/imgproc/src/demosaicing.cpp b/modules/imgproc/src/demosaicing.cpp index 61a4fe7ed0..3265545583 100644 --- a/modules/imgproc/src/demosaicing.cpp +++ b/modules/imgproc/src/demosaicing.cpp @@ -350,7 +350,7 @@ public: B G B G | B G B G | B G B G | B G B G */ - uint16x8_t masklo = vdupq_n_s16(255); + uint16x8_t masklo = vdupq_n_u16(255); const uchar* bayer_end = bayer + width; for( ; bayer <= bayer_end - 18; bayer += 14, dst += 14 )