Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
libvpx
Commits
fb7fc1db
Commit
fb7fc1db
authored
Jul 31, 2017
by
Alexandra Hájková
Browse files
ppc: Add vpx_idct32x32_1024_add_vsx
Change-Id: I55cd0a1569ccc47a53d0ecf751aac259d510e10d
parent
c8f6e7b9
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
test/dct32x32_test.cc
View file @
fb7fc1db
...
...
@@ -365,4 +365,13 @@ INSTANTIATE_TEST_CASE_P(
make_tuple
(
&
vpx_fdct32x32_rd_msa
,
&
vpx_idct32x32_1024_add_msa
,
1
,
VPX_BITS_8
)));
#endif // HAVE_MSA && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE
#if HAVE_VSX && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE
INSTANTIATE_TEST_CASE_P
(
VSX
,
Trans32x32Test
,
::
testing
::
Values
(
make_tuple
(
&
vpx_fdct32x32_c
,
&
vpx_idct32x32_1024_add_vsx
,
0
,
VPX_BITS_8
),
make_tuple
(
&
vpx_fdct32x32_rd_c
,
&
vpx_idct32x32_1024_add_vsx
,
1
,
VPX_BITS_8
)));
#endif // HAVE_VSX && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE
}
// namespace
vpx_dsp/ppc/inv_txfm_vsx.c
View file @
fb7fc1db
This diff is collapsed.
Click to expand it.
vpx_dsp/vpx_dsp_rtcd_defs.pl
View file @
fb7fc1db
...
...
@@ -611,7 +611,7 @@ if (vpx_config("CONFIG_EMULATE_HARDWARE") ne "yes") {
specialize
qw/vpx_idct16x16_38_add neon sse2/
;
specialize
qw/vpx_idct16x16_10_add neon sse2/
;
specialize
qw/vpx_idct16x16_1_add neon sse2/
;
specialize
qw/vpx_idct32x32_1024_add neon sse2/
;
specialize
qw/vpx_idct32x32_1024_add neon sse2
vsx
/
;
specialize
qw/vpx_idct32x32_135_add neon sse2 ssse3/
;
specialize
qw/vpx_idct32x32_34_add neon sse2 ssse3/
;
specialize
qw/vpx_idct32x32_1_add neon sse2/
;
...
...
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