Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
external
libvpx
Commits
a7ef4564
Commit
a7ef4564
authored
11 years ago
by
Ronald S. Bultje
Committed by
Gerrit Code Review
11 years ago
Browse files
Options
Download
Plain Diff
Merge "Remove unused 16x3/3x16 sad SSE2 functions."
parents
7494bba6
48c53233
v1.14.0-linphone
1.4.X
experimental
feature/update_to_v1.9.0-linphone
feature/uwp_nuget
forest
frame_parallel
highbitdepth
indianrunnerduck
javanwhistlingduck
khakicampbell
linphone
linphone-android
linphone-old
longtailedduck
m31-baseline
m49-2623
m52-2743
m54-2840
m56-2924
m66-3359
m68-3440
mandarinduck
mcw
mcw2
nextgen
nextgenv2
pcs-2013
playground
sandbox/Jingning/experimental
sandbox/Jingning/transcode
sandbox/Jingning/vpx
sandbox/aconverse@google.com/ansbench
sandbox/debargha/playground
sandbox/hkuang/frame_parallel
sandbox/hkuang@google.com/decode
sandbox/jimbankoski@google.com/proposed-aom
sandbox/jingning@google.com/decoder_test_suite
sandbox/jingning@google.com/experimental
sandbox/jzern@google.com/test
sandbox/wangch@google.com/vp9
sandbox/yaowu@google.com/mergeaom
stable-vp9-decoder
v1.12.0-linphone
v1.6.1_linphone
v1.7.0-linphone
v1.9.0-linphone
v1.9.0
v1.9.0-rc1
v1.8.2
v1.8.1
v1.8.0
v1.7.0
v1.6.1
v1.6.0
v1.5.0
v1.4.0
v1.3.0
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
vp9/common/x86/vp9_sadmxn_sse2.c
+0
-95
vp9/common/x86/vp9_sadmxn_sse2.c
vp9/vp9_common.mk
+0
-1
vp9/vp9_common.mk
with
0 additions
and
96 deletions
vp9/common/x86/vp9_sadmxn_sse2.c
deleted
100644 → 0
+
0
−
95
View file @
7494bba6
/*
* Copyright (c) 2012 The WebM project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#include
<emmintrin.h>
/* SSE2 */
#include
"vpx/vpx_integer.h"
#include
"vpx_ports/emmintrin_compat.h"
unsigned
int
vp9_sad16x3_sse2
(
const
unsigned
char
*
src_ptr
,
int
src_stride
,
const
unsigned
char
*
ref_ptr
,
int
ref_stride
)
{
__m128i
s0
,
s1
,
s2
;
__m128i
r0
,
r1
,
r2
;
__m128i
sad
;
s0
=
_mm_loadu_si128
((
const
__m128i
*
)(
src_ptr
+
0
*
src_stride
));
s1
=
_mm_loadu_si128
((
const
__m128i
*
)(
src_ptr
+
1
*
src_stride
));
s2
=
_mm_loadu_si128
((
const
__m128i
*
)(
src_ptr
+
2
*
src_stride
));
r0
=
_mm_loadu_si128
((
const
__m128i
*
)(
ref_ptr
+
0
*
ref_stride
));
r1
=
_mm_loadu_si128
((
const
__m128i
*
)(
ref_ptr
+
1
*
ref_stride
));
r2
=
_mm_loadu_si128
((
const
__m128i
*
)(
ref_ptr
+
2
*
ref_stride
));
sad
=
_mm_sad_epu8
(
s0
,
r0
);
sad
=
_mm_add_epi16
(
sad
,
_mm_sad_epu8
(
s1
,
r1
));
sad
=
_mm_add_epi16
(
sad
,
_mm_sad_epu8
(
s2
,
r2
));
sad
=
_mm_add_epi16
(
sad
,
_mm_srli_si128
(
sad
,
8
));
return
_mm_cvtsi128_si32
(
sad
);
}
unsigned
int
vp9_sad3x16_sse2
(
const
unsigned
char
*
src_ptr
,
int
src_stride
,
const
unsigned
char
*
ref_ptr
,
int
ref_stride
)
{
int
r
;
__m128i
s0
,
s1
,
s2
,
s3
;
__m128i
r0
,
r1
,
r2
,
r3
;
__m128i
sad
=
_mm_setzero_si128
();
__m128i
mask
;
const
int
offset
=
(
uintptr_t
)
src_ptr
&
3
;
/* In current use case, the offset is 1 if CONFIG_SUBPELREFMV is off.
* Here, for offset=1, we adjust src_ptr to be 4-byte aligned. Then, movd
* takes much less time.
*/
if
(
offset
==
1
)
src_ptr
-=
1
;
/* mask = 0xffffffffffff0000ffffffffffff0000 */
mask
=
_mm_cmpeq_epi32
(
sad
,
sad
);
mask
=
_mm_slli_epi64
(
mask
,
16
);
for
(
r
=
0
;
r
<
16
;
r
+=
4
)
{
s0
=
_mm_cvtsi32_si128
(
*
(
const
int
*
)(
src_ptr
+
0
*
src_stride
));
s1
=
_mm_cvtsi32_si128
(
*
(
const
int
*
)(
src_ptr
+
1
*
src_stride
));
s2
=
_mm_cvtsi32_si128
(
*
(
const
int
*
)(
src_ptr
+
2
*
src_stride
));
s3
=
_mm_cvtsi32_si128
(
*
(
const
int
*
)(
src_ptr
+
3
*
src_stride
));
r0
=
_mm_cvtsi32_si128
(
*
(
const
int
*
)(
ref_ptr
+
0
*
ref_stride
));
r1
=
_mm_cvtsi32_si128
(
*
(
const
int
*
)(
ref_ptr
+
1
*
ref_stride
));
r2
=
_mm_cvtsi32_si128
(
*
(
const
int
*
)(
ref_ptr
+
2
*
ref_stride
));
r3
=
_mm_cvtsi32_si128
(
*
(
const
int
*
)(
ref_ptr
+
3
*
ref_stride
));
s0
=
_mm_unpacklo_epi8
(
s0
,
s1
);
r0
=
_mm_unpacklo_epi8
(
r0
,
r1
);
s2
=
_mm_unpacklo_epi8
(
s2
,
s3
);
r2
=
_mm_unpacklo_epi8
(
r2
,
r3
);
s0
=
_mm_unpacklo_epi64
(
s0
,
s2
);
r0
=
_mm_unpacklo_epi64
(
r0
,
r2
);
// throw out extra byte
if
(
offset
==
1
)
s0
=
_mm_and_si128
(
s0
,
mask
);
else
s0
=
_mm_slli_epi64
(
s0
,
16
);
r0
=
_mm_slli_epi64
(
r0
,
16
);
sad
=
_mm_add_epi16
(
sad
,
_mm_sad_epu8
(
s0
,
r0
));
src_ptr
+=
src_stride
*
4
;
ref_ptr
+=
ref_stride
*
4
;
}
sad
=
_mm_add_epi16
(
sad
,
_mm_srli_si128
(
sad
,
8
));
return
_mm_cvtsi128_si32
(
sad
);
}
This diff is collapsed.
Click to expand it.
vp9/vp9_common.mk
+
0
−
1
View file @
a7ef4564
...
@@ -90,7 +90,6 @@ VP9_COMMON_SRCS-$(HAVE_SSE2) += common/x86/vp9_postproc_sse2.asm
...
@@ -90,7 +90,6 @@ VP9_COMMON_SRCS-$(HAVE_SSE2) += common/x86/vp9_postproc_sse2.asm
endif
endif
VP9_COMMON_SRCS-$(HAVE_SSE2)
+=
common/x86/vp9_idct_intrin_sse2.c
VP9_COMMON_SRCS-$(HAVE_SSE2)
+=
common/x86/vp9_idct_intrin_sse2.c
VP9_COMMON_SRCS-$(HAVE_SSE2)
+=
common/x86/vp9_sadmxn_sse2.c
VP9_COMMON_SRCS-$(HAVE_NEON)
+=
common/arm/neon/vp9_loopfilter_neon
$(
ASM
)
VP9_COMMON_SRCS-$(HAVE_NEON)
+=
common/arm/neon/vp9_loopfilter_neon
$(
ASM
)
...
...
This diff is collapsed.
Click to expand it.
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets