Browse code

avfilter/motion_estimation: Fix pre processor formating

IIRC, The spaces are not standard before the #

Reviewed-by: James Almer <jamrial@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

Michael Niedermayer authored on 2016/08/27 03:19:29
Showing 1 changed files
... ...
@@ -262,10 +262,10 @@ uint64_t ff_me_search_ds(AVMotionEstContext *me_ctx, int x_mb, int y_mb, int *mv
262 262
         x = mv[0];
263 263
         y = mv[1];
264 264
 
265
-    #if 1
265
+#if 1
266 266
         for (i = 0; i < 8; i++)
267 267
             COST_P_MV(x + dia2[i][0], y + dia2[i][1]);
268
-    #else
268
+#else
269 269
         /* this version skips previously examined 3 or 5 locations based on prev origin */
270 270
         if (dir_x <= 0)
271 271
             COST_P_MV(x - 2, y);
... ...
@@ -286,7 +286,7 @@ uint64_t ff_me_search_ds(AVMotionEstContext *me_ctx, int x_mb, int y_mb, int *mv
286 286
 
287 287
         dir_x = mv[0] - x;
288 288
         dir_y = mv[1] - y;
289
-    #endif
289
+#endif
290 290
 
291 291
     } while (x != mv[0] || y != mv[1]);
292 292