From: Alex Converse Date: Wed, 28 Sep 2016 19:04:27 +0000 (-0700) Subject: Clang-format ransac.c X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=018150d01b810b92d3d6d06371c264c104693953;p=libvpx Clang-format ransac.c Change-Id: I1679da4fb8832133ab1bcb396f4bed4e5448e504 --- diff --git a/av1/encoder/ransac.c b/av1/encoder/ransac.c index 0a263961c..e7cb6b7f5 100644 --- a/av1/encoder/ransac.c +++ b/av1/encoder/ransac.c @@ -351,7 +351,7 @@ static void project_points_double_rotzoom(double *mat, double *points, int i; for (i = 0; i < n; ++i) { const double x = *(points++), y = *(points++); - *(proj++) = mat[3] * x + mat[2] * y + mat[1]; + *(proj++) = mat[3] * x + mat[2] * y + mat[1]; *(proj++) = -mat[2] * x + mat[3] * y + mat[0]; points += stride_points - 2; proj += stride_proj - 2;