]> granicus.if.org Git - libvpx/commitdiff
vp9_loopfilter_intrin_sse2: make some funcs static
authorJames Zern <jzern@google.com>
Sun, 14 Jul 2013 01:47:52 +0000 (18:47 -0700)
committerJames Zern <jzern@google.com>
Sun, 14 Jul 2013 01:48:00 +0000 (18:48 -0700)
+ drop 'vp9_'

Change-Id: I4a4bec175316aab8f65c3a23bacc8362399a1357

vp9/common/x86/vp9_loopfilter_intrin_sse2.c

index 94a85fba3392a027fca42e41987c3f3da2809ef1..64afedadee56c07e437ee1eb4567ecce6b71ed7c 100644 (file)
 prototype_loopfilter(vp9_loop_filter_vertical_edge_sse2);
 prototype_loopfilter(vp9_loop_filter_horizontal_edge_sse2);
 
-void vp9_mb_lpf_horizontal_edge_w_sse2_8(unsigned char *s,
-                                         int p,
-                                         const unsigned char *_blimit,
-                                         const unsigned char *_limit,
-                                         const unsigned char *_thresh) {
+static void mb_lpf_horizontal_edge_w_sse2_8(unsigned char *s,
+                                            int p,
+                                            const unsigned char *_blimit,
+                                            const unsigned char *_limit,
+                                            const unsigned char *_thresh) {
   DECLARE_ALIGNED(16, unsigned char, flat2_op[7][8]);
   DECLARE_ALIGNED(16, unsigned char, flat2_oq[7][8]);
 
@@ -480,11 +480,11 @@ void vp9_mb_lpf_horizontal_edge_w_sse2_8(unsigned char *s,
   }
 }
 
-void vp9_mb_lpf_horizontal_edge_w_sse2_16(unsigned char *s,
-                                          int p,
-                                          const unsigned char *_blimit,
-                                          const unsigned char *_limit,
-                                          const unsigned char *_thresh) {
+static void mb_lpf_horizontal_edge_w_sse2_16(unsigned char *s,
+                                             int p,
+                                             const unsigned char *_blimit,
+                                             const unsigned char *_limit,
+                                             const unsigned char *_thresh) {
   DECLARE_ALIGNED(16, unsigned char, flat2_op[7][16]);
   DECLARE_ALIGNED(16, unsigned char, flat2_oq[7][16]);
 
@@ -959,9 +959,9 @@ void vp9_mb_lpf_horizontal_edge_w_sse2(unsigned char *s,
                                        const unsigned char *_thresh,
                                        int count) {
   if (count == 1)
-    vp9_mb_lpf_horizontal_edge_w_sse2_8(s, p, _blimit, _limit, _thresh);
+    mb_lpf_horizontal_edge_w_sse2_8(s, p, _blimit, _limit, _thresh);
   else
-    vp9_mb_lpf_horizontal_edge_w_sse2_16(s, p, _blimit, _limit, _thresh);
+    mb_lpf_horizontal_edge_w_sse2_16(s, p, _blimit, _limit, _thresh);
 }
 
 void vp9_mbloop_filter_horizontal_edge_sse2(unsigned char *s,