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
67ca5b58
Commit
67ca5b58
authored
10 years ago
by
Yunqing Wang
Committed by
Gerrit Code Review
10 years ago
Browse files
Options
Download
Plain Diff
Merge "Fix decoder mismatch in sub-pixel SSSE3 intrinsic filters"
parents
d7d7ceda
c5443fc8
v1.14.0-linphone
1.4.X
feature/update_to_v1.9.0-linphone
feature/uwp_nuget
frame_parallel
highbitdepth
indianrunnerduck
javanwhistlingduck
khakicampbell
linphone
linphone-android
linphone-old
longtailedduck
m49-2623
m52-2743
m54-2840
m56-2924
m66-3359
m68-3440
mandarinduck
nextgen
nextgenv2
playground
sandbox/Jingning/experimental
sandbox/Jingning/transcode
sandbox/Jingning/vpx
sandbox/aconverse@google.com/ansbench
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
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
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
vp9/common/x86/vp9_asm_stubs.c
+14
-0
vp9/common/x86/vp9_asm_stubs.c
vp9/common/x86/vp9_subpixel_8t_intrin_ssse3.c
+19
-17
vp9/common/x86/vp9_subpixel_8t_intrin_ssse3.c
with
33 additions
and
17 deletions
vp9/common/x86/vp9_asm_stubs.c
+
14
−
0
View file @
67ca5b58
...
...
@@ -192,12 +192,26 @@ FUN_CONV_1D(vert, y_step_q4, filter_y, v, src - src_stride * 3, , avx2);
FUN_CONV_2D
(,
avx2
);
#endif
#if HAVE_SSSE3
#if (ARCH_X86_64)
filter8_1dfunction
vp9_filter_block1d16_v8_intrin_ssse3
;
filter8_1dfunction
vp9_filter_block1d16_h8_intrin_ssse3
;
filter8_1dfunction
vp9_filter_block1d8_v8_intrin_ssse3
;
filter8_1dfunction
vp9_filter_block1d8_h8_intrin_ssse3
;
filter8_1dfunction
vp9_filter_block1d4_v8_ssse3
;
filter8_1dfunction
vp9_filter_block1d4_h8_intrin_ssse3
;
#define vp9_filter_block1d16_v8_ssse3 vp9_filter_block1d16_v8_intrin_ssse3
#define vp9_filter_block1d16_h8_ssse3 vp9_filter_block1d16_h8_intrin_ssse3
#define vp9_filter_block1d8_v8_ssse3 vp9_filter_block1d8_v8_intrin_ssse3
#define vp9_filter_block1d8_h8_ssse3 vp9_filter_block1d8_h8_intrin_ssse3
#define vp9_filter_block1d4_h8_ssse3 vp9_filter_block1d4_h8_intrin_ssse3
#else
filter8_1dfunction
vp9_filter_block1d16_v8_ssse3
;
filter8_1dfunction
vp9_filter_block1d16_h8_ssse3
;
filter8_1dfunction
vp9_filter_block1d8_v8_ssse3
;
filter8_1dfunction
vp9_filter_block1d8_h8_ssse3
;
filter8_1dfunction
vp9_filter_block1d4_v8_ssse3
;
filter8_1dfunction
vp9_filter_block1d4_h8_ssse3
;
#endif
filter8_1dfunction
vp9_filter_block1d16_v8_avg_ssse3
;
filter8_1dfunction
vp9_filter_block1d16_h8_avg_ssse3
;
filter8_1dfunction
vp9_filter_block1d8_v8_avg_ssse3
;
...
...
This diff is collapsed.
Click to expand it.
vp9/common/x86/vp9_subpixel_8t_intrin_ssse3.c
+
19
−
17
View file @
67ca5b58
...
...
@@ -44,7 +44,7 @@ void vp9_filter_block1d4_h8_intrin_ssse3(unsigned char *src_ptr,
unsigned
int
output_pitch
,
unsigned
int
output_height
,
int16_t
*
filter
)
{
__m128i
firstFilters
,
secondFilters
,
thirdFilters
,
forthFilters
;
__m128i
firstFilters
,
secondFilters
,
shuffle1
,
shuffle2
;
__m128i
srcRegFilt1
,
srcRegFilt2
,
srcRegFilt3
,
srcRegFilt4
;
__m128i
addFilterReg64
,
filtersReg
,
srcReg
,
minReg
;
unsigned
int
i
;
...
...
@@ -61,20 +61,22 @@ void vp9_filter_block1d4_h8_intrin_ssse3(unsigned char *src_ptr,
// duplicate only the third 16 bit in the filter into the first lane
secondFilters
=
_mm_shufflelo_epi16
(
filtersReg
,
0xAAu
);
// duplicate only the seconds 16 bits in the filter into the second lane
// firstFilters: k0 k1 k0 k1 k0 k1 k0 k1 k2 k3 k2 k3 k2 k3 k2 k3
firstFilters
=
_mm_shufflehi_epi16
(
firstFilters
,
0x55u
);
// duplicate only the forth 16 bits in the filter into the second lane
// secondFilters: k4 k5 k4 k5 k4 k5 k4 k5 k6 k7 k6 k7 k6 k7 k6 k7
secondFilters
=
_mm_shufflehi_epi16
(
secondFilters
,
0xFFu
);
// loading the local filters
thirdFilters
=
_mm_load_si128
((
__m128i
const
*
)
filt1_4_h8
);
forthFilters
=
_mm_load_si128
((
__m128i
const
*
)
filt2_4_h8
);
shuffle1
=
_mm_load_si128
((
__m128i
const
*
)
filt1_4_h8
);
shuffle2
=
_mm_load_si128
((
__m128i
const
*
)
filt2_4_h8
);
for
(
i
=
0
;
i
<
output_height
;
i
++
)
{
srcReg
=
_mm_loadu_si128
((
__m128i
*
)(
src_ptr
-
3
));
// filter the source buffer
srcRegFilt1
=
_mm_shuffle_epi8
(
srcReg
,
thirdFilters
);
srcRegFilt2
=
_mm_shuffle_epi8
(
srcReg
,
forthFilters
);
srcRegFilt1
=
_mm_shuffle_epi8
(
srcReg
,
shuffle1
);
srcRegFilt2
=
_mm_shuffle_epi8
(
srcReg
,
shuffle2
);
// multiply 2 adjacent elements with the filter and add the result
srcRegFilt1
=
_mm_maddubs_epi16
(
srcRegFilt1
,
firstFilters
);
...
...
@@ -164,12 +166,12 @@ void vp9_filter_block1d8_h8_intrin_ssse3(unsigned char *src_ptr,
srcRegFilt4
=
_mm_maddubs_epi16
(
srcRegFilt4
,
forthFilters
);
// add and saturate all the results together
minReg
=
_mm_min_epi16
(
srcRegFilt
4
,
srcRegFilt3
);
srcRegFilt1
=
_mm_adds_epi16
(
srcRegFilt1
,
srcRegFilt
2
);
minReg
=
_mm_min_epi16
(
srcRegFilt
2
,
srcRegFilt3
);
srcRegFilt1
=
_mm_adds_epi16
(
srcRegFilt1
,
srcRegFilt
4
);
srcRegFilt
4
=
_mm_max_epi16
(
srcRegFilt
4
,
srcRegFilt3
);
srcRegFilt
2
=
_mm_max_epi16
(
srcRegFilt
2
,
srcRegFilt3
);
srcRegFilt1
=
_mm_adds_epi16
(
srcRegFilt1
,
minReg
);
srcRegFilt1
=
_mm_adds_epi16
(
srcRegFilt1
,
srcRegFilt
4
);
srcRegFilt1
=
_mm_adds_epi16
(
srcRegFilt1
,
srcRegFilt
2
);
srcRegFilt1
=
_mm_adds_epi16
(
srcRegFilt1
,
addFilterReg64
);
// shift by 7 bit each 16 bits
...
...
@@ -229,21 +231,21 @@ void vp9_filter_block1d16_h8_intrin_ssse3(unsigned char *src_ptr,
// filter the source buffer
srcRegFilt1_1
=
_mm_shuffle_epi8
(
srcReg1
,
filt1Reg
);
srcRegFilt2
=
_mm_shuffle_epi8
(
srcReg1
,
filt
2
Reg
);
srcRegFilt2
=
_mm_shuffle_epi8
(
srcReg1
,
filt
4
Reg
);
// multiply 2 adjacent elements with the filter and add the result
srcRegFilt1_1
=
_mm_maddubs_epi16
(
srcRegFilt1_1
,
firstFilters
);
srcRegFilt2
=
_mm_maddubs_epi16
(
srcRegFilt2
,
second
Filters
);
srcRegFilt2
=
_mm_maddubs_epi16
(
srcRegFilt2
,
forth
Filters
);
// add and saturate the results together
srcRegFilt1_1
=
_mm_adds_epi16
(
srcRegFilt1_1
,
srcRegFilt2
);
// filter the source buffer
srcRegFilt3
=
_mm_shuffle_epi8
(
srcReg1
,
filt
4
Reg
);
srcRegFilt3
=
_mm_shuffle_epi8
(
srcReg1
,
filt
2
Reg
);
srcRegFilt2
=
_mm_shuffle_epi8
(
srcReg1
,
filt3Reg
);
// multiply 2 adjacent elements with the filter and add the result
srcRegFilt3
=
_mm_maddubs_epi16
(
srcRegFilt3
,
forth
Filters
);
srcRegFilt3
=
_mm_maddubs_epi16
(
srcRegFilt3
,
second
Filters
);
srcRegFilt2
=
_mm_maddubs_epi16
(
srcRegFilt2
,
thirdFilters
);
// add and saturate the results together
...
...
@@ -260,21 +262,21 @@ void vp9_filter_block1d16_h8_intrin_ssse3(unsigned char *src_ptr,
// filter the source buffer
srcRegFilt2_1
=
_mm_shuffle_epi8
(
srcReg2
,
filt1Reg
);
srcRegFilt2
=
_mm_shuffle_epi8
(
srcReg2
,
filt
2
Reg
);
srcRegFilt2
=
_mm_shuffle_epi8
(
srcReg2
,
filt
4
Reg
);
// multiply 2 adjacent elements with the filter and add the result
srcRegFilt2_1
=
_mm_maddubs_epi16
(
srcRegFilt2_1
,
firstFilters
);
srcRegFilt2
=
_mm_maddubs_epi16
(
srcRegFilt2
,
second
Filters
);
srcRegFilt2
=
_mm_maddubs_epi16
(
srcRegFilt2
,
forth
Filters
);
// add and saturate the results together
srcRegFilt2_1
=
_mm_adds_epi16
(
srcRegFilt2_1
,
srcRegFilt2
);
// filter the source buffer
srcRegFilt3
=
_mm_shuffle_epi8
(
srcReg2
,
filt
4
Reg
);
srcRegFilt3
=
_mm_shuffle_epi8
(
srcReg2
,
filt
2
Reg
);
srcRegFilt2
=
_mm_shuffle_epi8
(
srcReg2
,
filt3Reg
);
// multiply 2 adjacent elements with the filter and add the result
srcRegFilt3
=
_mm_maddubs_epi16
(
srcRegFilt3
,
forth
Filters
);
srcRegFilt3
=
_mm_maddubs_epi16
(
srcRegFilt3
,
second
Filters
);
srcRegFilt2
=
_mm_maddubs_epi16
(
srcRegFilt2
,
thirdFilters
);
// add and saturate the results together
...
...
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