apply clang-format

missed in:
9abdec6 simp-mv-pred integration with ref-mv

Change-Id: Ib155fb418ec77c1e53ca25b6654a4a47d0d2110e
diff --git a/av1/common/mvref_common.c b/av1/common/mvref_common.c
index b806947..09926c1 100644
--- a/av1/common/mvref_common.c
+++ b/av1/common/mvref_common.c
@@ -396,7 +396,7 @@
     mode_context[ref_frame] |= (1 << ZEROMV_OFFSET);
   }
 
-  // Scan the second outer area.
+// Scan the second outer area.
 #if CONFIG_SIMP_MV_PRED
   scan_blk_mbmi(cm, xd, mi_row, mi_col, block, rf, -1, -1, ref_mv_stack,
                 refmv_count);
@@ -586,8 +586,7 @@
       const MB_MODE_INFO *const candidate =
           &xd->mi[mv_ref->col + mv_ref->row * xd->mi_stride]->mbmi;
 #if CONFIG_SIMP_MV_PRED
-      if (candidate == NULL)
-        continue;
+      if (candidate == NULL) continue;
       if ((mi_row % 8) + mv_ref->row >= 8 || (mi_col % 8) + mv_ref->col >= 8)
         continue;
 #endif
@@ -638,8 +637,7 @@
         const MB_MODE_INFO *const candidate =
             &xd->mi[mv_ref->col + mv_ref->row * xd->mi_stride]->mbmi;
 #if CONFIG_SIMP_MV_PRED
-        if (candidate == NULL)
-          continue;
+        if (candidate == NULL) continue;
         if ((mi_row % 8) + mv_ref->row >= 8 || (mi_col % 8) + mv_ref->col >= 8)
           continue;
 #endif