Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
aom-rav1e
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xiph.Org
aom-rav1e
Commits
ff3f35c1
Commit
ff3f35c1
authored
Jul 21, 2016
by
Yaowu Xu
Committed by
Gerrit Code Review
Jul 21, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge "Cleanup x86inc leftovers" into nextgenv2
parents
f9c01c7b
dec16abf
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
6 deletions
+4
-6
test/subtract_test.cc
test/subtract_test.cc
+1
-1
vp10/common/vp10_rtcd_defs.pl
vp10/common/vp10_rtcd_defs.pl
+3
-3
vp10/vp10cx.mk
vp10/vp10cx.mk
+0
-2
No files found.
test/subtract_test.cc
View file @
ff3f35c1
...
...
@@ -100,7 +100,7 @@ TEST_P(VP9SubtractBlockTest, SimpleSubtract) {
INSTANTIATE_TEST_CASE_P
(
C
,
VP9SubtractBlockTest
,
::
testing
::
Values
(
vpx_subtract_block_c
));
#if HAVE_SSE2
&& CONFIG_USE_X86INC
#if HAVE_SSE2
INSTANTIATE_TEST_CASE_P
(
SSE2
,
VP9SubtractBlockTest
,
::
testing
::
Values
(
vpx_subtract_block_sse2
));
#endif
...
...
vp10/common/vp10_rtcd_defs.pl
View file @
ff3f35c1
...
...
@@ -386,16 +386,16 @@ if (vpx_config("CONFIG_VP9_HIGHBITDEPTH") eq "yes") {
specialize
qw/vp10_fdct8x8_quant/
;
}
else
{
add_proto
qw/int64_t vp10_block_error/
,
"
const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, int64_t *ssz
";
specialize
qw/vp10_block_error avx2 msa/
;
specialize
qw/vp10_block_error
sse2
avx2 msa/
;
add_proto
qw/int64_t vp10_block_error_fp/
,
"
const int16_t *coeff, const int16_t *dqcoeff, int block_size
";
specialize
qw/vp10_block_error_fp neon sse2/
;
add_proto
qw/void vp10_quantize_fp/
,
"
const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan
";
specialize
qw/vp10_quantize_fp neon sse2/
;
specialize
qw/vp10_quantize_fp neon sse2/
,
"
$ssse3_x86_64
"
;
add_proto
qw/void vp10_quantize_fp_32x32/
,
"
const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan
";
specialize
qw/vp10_quantize_fp_32x32/
;
specialize
qw/vp10_quantize_fp_32x32/
,
"
$ssse3_x86_64
"
;
add_proto
qw/void vp10_fdct8x8_quant/
,
"
const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan
";
specialize
qw/vp10_fdct8x8_quant sse2 ssse3 neon/
;
...
...
vp10/vp10cx.mk
View file @
ff3f35c1
...
...
@@ -107,10 +107,8 @@ VP10_CX_SRCS-$(HAVE_SSE2) += encoder/x86/dct_sse2.asm
VP10_CX_SRCS-$(HAVE_SSE2)
+=
encoder/x86/error_sse2.asm
ifeq
($(ARCH_X86_64),yes)
ifeq
($(CONFIG_USE_X86INC),yes)
VP10_CX_SRCS-$(HAVE_SSSE3)
+=
encoder/x86/quantize_ssse3_x86_64.asm
endif
endif
VP10_CX_SRCS-$(HAVE_SSE2)
+=
encoder/x86/dct_intrin_sse2.c
VP10_CX_SRCS-$(HAVE_SSSE3)
+=
encoder/x86/dct_ssse3.c
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment