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
419ce362
Commit
419ce362
authored
Aug 22, 2017
by
James Zern
Committed by
Gerrit Code Review
Aug 22, 2017
Browse files
Merge "ppc: Add vpx_idct16x16_256_add_vsx"
parents
bff5aa98
666c543f
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
323 additions
and
18 deletions
+323
-18
test/dct16x16_test.cc
test/dct16x16_test.cc
+7
-0
vpx_dsp/ppc/inv_txfm_vsx.c
vpx_dsp/ppc/inv_txfm_vsx.c
+315
-17
vpx_dsp/vpx_dsp_rtcd_defs.pl
vpx_dsp/vpx_dsp_rtcd_defs.pl
+1
-1
No files found.
test/dct16x16_test.cc
View file @
419ce362
...
...
@@ -858,4 +858,11 @@ INSTANTIATE_TEST_CASE_P(
make_tuple
(
&
vp9_fht16x16_msa
,
&
vp9_iht16x16_256_add_msa
,
3
,
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
,
Trans16x16DCT
,
::
testing
::
Values
(
make_tuple
(
&
vpx_fdct16x16_c
,
&
vpx_idct16x16_256_add_vsx
,
0
,
VPX_BITS_8
)));
#endif // HAVE_VSX && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE
}
// namespace
vpx_dsp/ppc/inv_txfm_vsx.c
View file @
419ce362
This diff is collapsed.
Click to expand it.
vpx_dsp/vpx_dsp_rtcd_defs.pl
View file @
419ce362
...
...
@@ -589,7 +589,7 @@ if (vpx_config("CONFIG_EMULATE_HARDWARE") ne "yes") {
specialize
qw/vpx_idct8x8_64_add neon sse2 vsx/
;
specialize
qw/vpx_idct8x8_12_add neon sse2 ssse3/
;
specialize
qw/vpx_idct8x8_1_add neon sse2/
;
specialize
qw/vpx_idct16x16_256_add neon sse2/
;
specialize
qw/vpx_idct16x16_256_add neon sse2
vsx
/
;
specialize
qw/vpx_idct16x16_38_add neon sse2/
;
specialize
qw/vpx_idct16x16_10_add neon sse2/
;
specialize
qw/vpx_idct16x16_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