Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
1c9af983
Commit
1c9af983
authored
Apr 21, 2015
by
Parag Salasakar
Committed by
Gerrit Code Review
Apr 21, 2015
Browse files
Merge "mips msa vp9 convolve8 horiz optimization"
parents
3b35e962
ca90d4fd
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
test/convolve_test.cc
View file @
1c9af983
...
...
@@ -1818,7 +1818,7 @@ INSTANTIATE_TEST_CASE_P(DSPR2, ConvolveTest, ::testing::Values(
#if HAVE_MSA
const
ConvolveFunctions
convolve8_msa
(
vp9_convolve_copy_c
,
vp9_convolve_avg_c
,
vp9_convolve8_horiz_
c
,
vp9_convolve8_avg_horiz_c
,
vp9_convolve8_horiz_
msa
,
vp9_convolve8_avg_horiz_c
,
vp9_convolve8_vert_msa
,
vp9_convolve8_avg_vert_c
,
vp9_convolve8_msa
,
vp9_convolve8_avg_c
,
0
);
...
...
vp9/common/mips/msa/vp9_convolve8_horiz_msa.c
0 → 100644
View file @
1c9af983
This diff is collapsed.
Click to expand it.
vp9/common/vp9_rtcd_defs.pl
View file @
1c9af983
...
...
@@ -295,7 +295,7 @@ add_proto qw/void vp9_convolve8/, "const uint8_t *src, ptrdiff_t src_stride, uin
specialize
qw/vp9_convolve8 sse2 ssse3 neon dspr2 msa/
,
"
$avx2_ssse3
";
add_proto
qw/void vp9_convolve8_horiz/
,
"
const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h
";
specialize
qw/vp9_convolve8_horiz sse2 ssse3 neon dspr2/
,
"
$avx2_ssse3
";
specialize
qw/vp9_convolve8_horiz sse2 ssse3 neon dspr2
msa
/
,
"
$avx2_ssse3
";
add_proto
qw/void vp9_convolve8_vert/
,
"
const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h
";
specialize
qw/vp9_convolve8_vert sse2 ssse3 neon dspr2 msa/
,
"
$avx2_ssse3
";
...
...
vp9/vp9_common.mk
View file @
1c9af983
...
...
@@ -131,6 +131,7 @@ VP9_COMMON_SRCS-$(HAVE_DSPR2) += common/mips/dspr2/vp9_mblpf_vert_loopfilter_ds
# common (msa)
VP9_COMMON_SRCS-$(HAVE_MSA)
+=
common/mips/msa/vp9_macros_msa.h
VP9_COMMON_SRCS-$(HAVE_MSA)
+=
common/mips/msa/vp9_convolve8_horiz_msa.c
VP9_COMMON_SRCS-$(HAVE_MSA)
+=
common/mips/msa/vp9_convolve8_msa.c
VP9_COMMON_SRCS-$(HAVE_MSA)
+=
common/mips/msa/vp9_convolve8_vert_msa.c
VP9_COMMON_SRCS-$(HAVE_MSA)
+=
common/mips/msa/vp9_convolve_msa.h
...
...
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