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
A
aom-rav1e
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xiph.Org
aom-rav1e
Commits
d85ae871
Commit
d85ae871
authored
Jul 04, 2013
by
Mans Rullgard
Committed by
Johann
Aug 02, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vp9: neon: add vp9_mb_lpf_* functions
Change-Id: I13e0880df234f15abc4cc7c57fe84488d5d46a75
parent
d91e9f4e
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
621 additions
and
2 deletions
+621
-2
vp9/common/arm/neon/vp9_mb_lpf_neon.asm
vp9/common/arm/neon/vp9_mb_lpf_neon.asm
+618
-0
vp9/common/vp9_rtcd_defs.sh
vp9/common/vp9_rtcd_defs.sh
+2
-2
vp9/vp9_common.mk
vp9/vp9_common.mk
+1
-0
No files found.
vp9/common/arm/neon/vp9_mb_lpf_neon.asm
0 → 100644
View file @
d85ae871
This diff is collapsed.
Click to expand it.
vp9/common/vp9_rtcd_defs.sh
View file @
d85ae871
...
...
@@ -214,7 +214,7 @@ fi
# Loopfilter
#
prototype void vp9_mb_lpf_vertical_edge_w
"uint8_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh"
specialize vp9_mb_lpf_vertical_edge_w sse2
specialize vp9_mb_lpf_vertical_edge_w sse2
neon
prototype void vp9_mbloop_filter_vertical_edge
"uint8_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count"
specialize vp9_mbloop_filter_vertical_edge sse2 neon
...
...
@@ -223,7 +223,7 @@ prototype void vp9_loop_filter_vertical_edge "uint8_t *s, int pitch, const uint8
specialize vp9_loop_filter_vertical_edge mmx neon
prototype void vp9_mb_lpf_horizontal_edge_w
"uint8_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count"
specialize vp9_mb_lpf_horizontal_edge_w sse2
specialize vp9_mb_lpf_horizontal_edge_w sse2
neon
prototype void vp9_mbloop_filter_horizontal_edge
"uint8_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count"
specialize vp9_mbloop_filter_horizontal_edge sse2 neon
...
...
vp9/vp9_common.mk
View file @
d85ae871
...
...
@@ -91,5 +91,6 @@ VP9_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/vp9_convolve8_avg_neon$(ASM)
VP9_COMMON_SRCS-$(HAVE_NEON)
+=
common/arm/neon/vp9_loopfilter_neon
$(ASM)
VP9_COMMON_SRCS-$(HAVE_NEON)
+=
common/arm/neon/vp9_dc_only_idct_add_neon
$(ASM)
VP9_COMMON_SRCS-$(HAVE_NEON)
+=
common/arm/neon/vp9_short_idct8x8_add_neon
$(ASM)
VP9_COMMON_SRCS-$(HAVE_NEON)
+=
common/arm/neon/vp9_mb_lpf_neon
$(ASM)
$(eval
$(call
rtcd_h_template,vp9_rtcd,vp9/common/vp9_rtcd_defs.sh))
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