Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libvpx
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
External Wiki
External Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
BC
public
external
libvpx
Commits
794a5ad7
Commit
794a5ad7
authored
Jun 23, 2017
by
Johann Koenig
Committed by
Gerrit Code Review
Jun 23, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge "fdct32x32 neon implementation"
parents
4f917912
e67660cf
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
1124 additions
and
7 deletions
+1124
-7
dct32x32_test.cc
test/dct32x32_test.cc
+4
-4
dct_test.cc
test/dct_test.cc
+4
-1
fdct32x32_neon.c
vpx_dsp/arm/fdct32x32_neon.c
+1113
-0
vpx_dsp.mk
vpx_dsp/vpx_dsp.mk
+1
-0
vpx_dsp_rtcd_defs.pl
vpx_dsp/vpx_dsp_rtcd_defs.pl
+2
-2
No files found.
test/dct32x32_test.cc
View file @
794a5ad7
...
...
@@ -383,14 +383,14 @@ INSTANTIATE_TEST_CASE_P(C, PartialTrans32x32Test,
VPX_BITS_8
)));
#endif // CONFIG_VP9_HIGHBITDEPTH
#if HAVE_NEON && !CONFIG_
VP9_HIGHBITDEPTH && !CONFIG_
EMULATE_HARDWARE
#if HAVE_NEON && !CONFIG_EMULATE_HARDWARE
INSTANTIATE_TEST_CASE_P
(
NEON
,
Trans32x32Test
,
::
testing
::
Values
(
make_tuple
(
&
vpx_fdct32x32_
c
,
&
vpx_idct32x32_1024_add_
neon
,
0
,
VPX_BITS_8
),
::
testing
::
Values
(
make_tuple
(
&
vpx_fdct32x32_neon
,
&
vpx_idct32x32_1024_add_neon
,
0
,
VPX_BITS_8
),
make_tuple
(
&
vpx_fdct32x32_rd_c
,
&
vpx_idct32x32_1024_add_neon
,
1
,
VPX_BITS_8
)));
#endif // HAVE_NEON && !CONFIG_
VP9_HIGHBITDEPTH && !CONFIG_
EMULATE_HARDWARE
#endif // HAVE_NEON && !CONFIG_EMULATE_HARDWARE
#if HAVE_SSE2 && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE
INSTANTIATE_TEST_CASE_P
(
...
...
test/dct_test.cc
View file @
794a5ad7
...
...
@@ -527,7 +527,10 @@ INSTANTIATE_TEST_CASE_P(
#if !CONFIG_EMULATE_HARDWARE
INSTANTIATE_TEST_CASE_P
(
NEON
,
TransDCT
,
::
testing
::
Values
(
make_tuple
(
&
vpx_fdct16x16_neon
,
::
testing
::
Values
(
make_tuple
(
&
vpx_fdct32x32_neon
,
&
vpx_idct32x32_1024_add_neon
,
32
,
0
,
VPX_BITS_8
),
make_tuple
(
&
vpx_fdct16x16_neon
,
&
vpx_idct16x16_256_add_neon
,
16
,
0
,
VPX_BITS_8
),
make_tuple
(
&
vpx_fdct8x8_neon
,
&
vpx_idct8x8_64_add_neon
,
8
,
...
...
vpx_dsp/arm/fdct32x32_neon.c
0 → 100644
View file @
794a5ad7
This diff is collapsed.
Click to expand it.
vpx_dsp/vpx_dsp.mk
View file @
794a5ad7
...
...
@@ -195,6 +195,7 @@ DSP_SRCS-$(HAVE_AVX2) += x86/fwd_txfm_avx2.c
DSP_SRCS-$(HAVE_AVX2) += x86/fwd_dct32x32_impl_avx2.h
DSP_SRCS-$(HAVE_NEON) += arm/fdct_neon.c
DSP_SRCS-$(HAVE_NEON) += arm/fdct16x16_neon.c
DSP_SRCS-$(HAVE_NEON) += arm/fdct32x32_neon.c
DSP_SRCS-$(HAVE_NEON) += arm/fwd_txfm_neon.c
DSP_SRCS-$(HAVE_MSA) += mips/fwd_txfm_msa.h
DSP_SRCS-$(HAVE_MSA) += mips/fwd_txfm_msa.c
...
...
vpx_dsp/vpx_dsp_rtcd_defs.pl
View file @
794a5ad7
...
...
@@ -502,7 +502,7 @@ if (vpx_config("CONFIG_VP9_HIGHBITDEPTH") eq "yes") {
specialize
qw/vpx_fdct16x16_1 sse2/
;
add_proto
qw/void vpx_fdct32x32/
,
"const int16_t *input, tran_low_t *output, int stride"
;
specialize
qw/vpx_fdct32x32 sse2/
;
specialize
qw/vpx_fdct32x32
neon
sse2/
;
add_proto
qw/void vpx_fdct32x32_rd/
,
"const int16_t *input, tran_low_t *output, int stride"
;
specialize
qw/vpx_fdct32x32_rd sse2/
;
...
...
@@ -550,7 +550,7 @@ if (vpx_config("CONFIG_VP9_HIGHBITDEPTH") eq "yes") {
specialize
qw/vpx_fdct16x16_1 sse2 msa/
;
add_proto
qw/void vpx_fdct32x32/
,
"const int16_t *input, tran_low_t *output, int stride"
;
specialize
qw/vpx_fdct32x32 sse2 avx2 msa/
;
specialize
qw/vpx_fdct32x32
neon
sse2 avx2 msa/
;
add_proto
qw/void vpx_fdct32x32_rd/
,
"const int16_t *input, tran_low_t *output, int stride"
;
specialize
qw/vpx_fdct32x32_rd sse2 avx2 msa/
;
...
...
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