merge with dev

This commit is contained in:
U-PC-BUREAU\jacques
2018-11-06 19:38:54 +01:00
19 changed files with 72 additions and 55 deletions

View File

@@ -193,7 +193,7 @@ void ImProcFunctions :: dirpyr_equalizer(float ** src, float ** dst, int srcwidt
int j;
for (j = 0; j < srcwidth - 3; j += 4) {
_mm_storeu_ps(&tmpChr[i][j], _mm_sqrt_ps(SQRV(LVFU(l_b[i][j])) + SQRV(LVFU(l_a[i][j]))) / div);
_mm_storeu_ps(&tmpChr[i][j], vsqrtf(SQRV(LVFU(l_b[i][j])) + SQRV(LVFU(l_a[i][j]))) / div);
}
for (; j < srcwidth; j++) {