projects
/
profile
/
ivi
/
libvpx.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7fccab3
)
Fixes a clang linking error.
author
Stefan Holmer
<holmer@google.com>
Thu, 31 May 2012 08:52:20 +0000
(10:52 +0200)
committer
Stefan Holmer
<holmer@google.com>
Thu, 31 May 2012 08:52:20 +0000
(10:52 +0200)
Change-Id: I1d2db53129dc6ec068093ad1e5fc0d94110473b3
vp8/encoder/x86/denoising_sse2.c
patch
|
blob
|
history
diff --git
a/vp8/encoder/x86/denoising_sse2.c
b/vp8/encoder/x86/denoising_sse2.c
index
34ad916
..
ee6227f
100644
(file)
--- a/
vp8/encoder/x86/denoising_sse2.c
+++ b/
vp8/encoder/x86/denoising_sse2.c
@@
-22,7
+22,7
@@
union sum_union {
short e[8];
};
-inline int sum_vec_128i(__m128i vec)
+
static
inline int sum_vec_128i(__m128i vec)
{
union sum_union s = { .v = vec };
return s.e[0] + s.e[1] + s.e[2] + s.e[3] +