From: Pavel Vlasov Date: Thu, 29 Oct 2015 10:21:13 +0000 (+0300) Subject: Condition update for 8u IPP in GaussianBlur. Bug was fixed in 9.0.1; X-Git-Tag: accepted/tizen/6.0/unified/20201030.111113~2178^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5ae3693567710075937b736b110fa5584bd0e907;p=platform%2Fupstream%2Fopencv.git Condition update for 8u IPP in GaussianBlur. Bug was fixed in 9.0.1; --- diff --git a/modules/imgproc/src/smooth.cpp b/modules/imgproc/src/smooth.cpp index 855c432..cd19f49 100644 --- a/modules/imgproc/src/smooth.cpp +++ b/modules/imgproc/src/smooth.cpp @@ -1716,7 +1716,7 @@ static bool ipp_GaussianBlur( InputArray _src, OutputArray _dst, Size ksize, IppStatus status = ippStsErr; #if !HAVE_ICV -#if IPP_VERSION_X100 > 901 // Buffer overflow in IPP +#if IPP_VERSION_X100 > 900 // Buffer overflow may happen in IPP 9.0.0 and less if (type == CV_8UC1) IPP_FILTER_GAUSS_C1(8u) else