]> granicus.if.org Git - libvpx/commitdiff
vp9_loopfilter_intrin_sse2: cosmetics: fix indent
authorJames Zern <jzern@google.com>
Sun, 14 Jul 2013 02:07:20 +0000 (19:07 -0700)
committerJames Zern <jzern@google.com>
Tue, 16 Jul 2013 20:09:16 +0000 (13:09 -0700)
Change-Id: I892e76d5ad1443b2ea0d1a7839fe26afe9c68ffb

vp9/common/x86/vp9_loopfilter_intrin_sse2.c

index 1a3537bba696fba841806cff17d201f990876cc9..4af4f9420353f67d7dc44521eee30e2ec8f93cbd 100644 (file)
@@ -1346,7 +1346,7 @@ void vp9_mbloop_filter_vertical_edge_sse2(unsigned char *s,
 
   /* 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_mbloop_filter_vertical_edge_sse2(unsigned char *s,
 }
 
 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];