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
Open sidebar
Xiph.Org
aom-rav1e
Commits
f1b09c04
Commit
f1b09c04
authored
Jun 04, 2015
by
Parag Salasakar
Committed by
Gerrit Code Review
Jun 04, 2015
Browse files
Merge "mips msa vp9 convolve8 avg horiz optimization"
parents
5df6c045
b8c1cdcd
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
785 additions
and
2 deletions
+785
-2
test/convolve_test.cc
test/convolve_test.cc
+1
-1
vp9/common/mips/msa/vp9_convolve8_avg_horiz_msa.c
vp9/common/mips/msa/vp9_convolve8_avg_horiz_msa.c
+782
-0
vp9/common/vp9_rtcd_defs.pl
vp9/common/vp9_rtcd_defs.pl
+1
-1
vp9/vp9_common.mk
vp9/vp9_common.mk
+1
-0
No files found.
test/convolve_test.cc
View file @
f1b09c04
...
...
@@ -1818,7 +1818,7 @@ INSTANTIATE_TEST_CASE_P(DSPR2, ConvolveTest, ::testing::Values(
#if HAVE_MSA
const
ConvolveFunctions
convolve8_msa
(
vp9_convolve_copy_msa
,
vp9_convolve_avg_msa
,
vp9_convolve8_horiz_msa
,
vp9_convolve8_avg_horiz_
c
,
vp9_convolve8_horiz_msa
,
vp9_convolve8_avg_horiz_
msa
,
vp9_convolve8_vert_msa
,
vp9_convolve8_avg_vert_msa
,
vp9_convolve8_msa
,
vp9_convolve8_avg_c
,
0
);
...
...
vp9/common/mips/msa/vp9_convolve8_avg_horiz_msa.c
0 → 100644
View file @
f1b09c04
This diff is collapsed.
Click to expand it.
vp9/common/vp9_rtcd_defs.pl
View file @
f1b09c04
...
...
@@ -304,7 +304,7 @@ add_proto qw/void vp9_convolve8_avg/, "const uint8_t *src, ptrdiff_t src_stride,
specialize
qw/vp9_convolve8_avg sse2 ssse3 neon dspr2/
;
add_proto
qw/void vp9_convolve8_avg_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_avg_horiz sse2 ssse3 neon dspr2/
;
specialize
qw/vp9_convolve8_avg_horiz sse2 ssse3 neon dspr2
msa
/
;
add_proto
qw/void vp9_convolve8_avg_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_avg_vert sse2 ssse3 neon dspr2 msa/
;
...
...
vp9/vp9_common.mk
View file @
f1b09c04
...
...
@@ -132,6 +132,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_avg_horiz_msa.c
VP9_COMMON_SRCS-$(HAVE_MSA)
+=
common/mips/msa/vp9_convolve8_avg_vert_msa.c
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
...
...
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