shithub: libvpx

Download patch

ref: 8f4787a383c47c9b35f29b8b25b90847a42fc461
parent: af58254267e1cec851c9eb4b6e7d60af17b13a58
author: James Zern <jzern@google.com>
date: Sat Jul 13 15:07:20 EDT 2013

vp9_loopfilter_intrin_sse2: cosmetics: fix indent

Change-Id: I892e76d5ad1443b2ea0d1a7839fe26afe9c68ffb

--- a/vp9/common/x86/vp9_loopfilter_intrin_sse2.c
+++ b/vp9/common/x86/vp9_loopfilter_intrin_sse2.c
@@ -1346,7 +1346,7 @@
 
   /* Loop filtering */
   vp9_mbloop_filter_horizontal_edge_sse2(t_dst + 8 * 16, 16, blimit, limit,
-                                           thresh, 1);
+                                         thresh, 1);
   src[0] = t_dst + 3 * 16;
   src[1] = t_dst + 3 * 16 + 8;
 
@@ -1358,10 +1358,10 @@
 }
 
 void vp9_mb_lpf_vertical_edge_w_sse2(unsigned char *s,
-                                          int p,
-                                          const unsigned char *blimit,
-                                          const unsigned char *limit,
-                                          const unsigned char *thresh) {
+                                     int p,
+                                     const unsigned char *blimit,
+                                     const unsigned char *limit,
+                                     const unsigned char *thresh) {
   DECLARE_ALIGNED_ARRAY(16, unsigned char, t_dst, 256);
   unsigned char *src[4];
   unsigned char *dst[4];