core: fix convertTo() AVX2 optimization

pull/9176/head
Alexander Alekhin 8 years ago
parent c0dc2f2bb3
commit b4716b1d92
  1. 2
      modules/core/src/convert.cpp

@ -3678,7 +3678,7 @@ cvtScale_<short, int, float>( const short* src, size_t sstep,
if (CV_CPU_HAS_SUPPORT_AVX2) if (CV_CPU_HAS_SUPPORT_AVX2)
{ {
opt_AVX2::cvtScale_s16s32f32Line_AVX2(src, dst, scale, shift, size.width); opt_AVX2::cvtScale_s16s32f32Line_AVX2(src, dst, scale, shift, size.width);
return; continue;
} }
#endif #endif
#if CV_SSE2 #if CV_SSE2

Loading…
Cancel
Save