summaryrefslogtreecommitdiff
path: root/vp9/common/x86
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2013-07-13 18:47:52 -0700
committerJames Zern <jzern@google.com>2013-07-13 18:48:00 -0700
commit04606d7258a065fbd4069a5f58f5e71c319a8747 (patch)
tree2d3c60fa01a9c890c088ef633d8d632a754d1fd0 /vp9/common/x86
parentdc968d3d4581b96c39e61afe24c91ed06fdcad22 (diff)
downloadlibvpx-04606d7258a065fbd4069a5f58f5e71c319a8747.tar
libvpx-04606d7258a065fbd4069a5f58f5e71c319a8747.tar.gz
libvpx-04606d7258a065fbd4069a5f58f5e71c319a8747.tar.bz2
libvpx-04606d7258a065fbd4069a5f58f5e71c319a8747.zip
vp9_loopfilter_intrin_sse2: make some funcs static
+ drop 'vp9_' Change-Id: I4a4bec175316aab8f65c3a23bacc8362399a1357
Diffstat (limited to 'vp9/common/x86')
-rw-r--r--vp9/common/x86/vp9_loopfilter_intrin_sse2.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/vp9/common/x86/vp9_loopfilter_intrin_sse2.c b/vp9/common/x86/vp9_loopfilter_intrin_sse2.c
index 94a85fba3..64afedade 100644
--- a/vp9/common/x86/vp9_loopfilter_intrin_sse2.c
+++ b/vp9/common/x86/vp9_loopfilter_intrin_sse2.c
@@ -15,11 +15,11 @@
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,