]> granicus.if.org Git - libvpx/commitdiff
Clang-format ransac.c
authorAlex Converse <aconverse@google.com>
Wed, 28 Sep 2016 19:04:27 +0000 (12:04 -0700)
committerAlex Converse <aconverse@google.com>
Wed, 28 Sep 2016 19:07:00 +0000 (12:07 -0700)
Change-Id: I1679da4fb8832133ab1bcb396f4bed4e5448e504

av1/encoder/ransac.c

index 0a263961c5ba1f7f860b893f984045e6fc364466..e7cb6b7f57df4f74976a60cee6f295fa5ec41a52 100644 (file)
@@ -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;