Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
435cd7bc
Commit
435cd7bc
authored
Jan 13, 2017
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
arm: vp9lpf: Use orrs instead of orr+cmp
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
e1f9de86
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
8 deletions
+4
-8
vp9lpf_neon.S
libavcodec/arm/vp9lpf_neon.S
+4
-8
No files found.
libavcodec/arm/vp9lpf_neon.S
View file @
435cd7bc
...
...
@@ -78,8 +78,7 @@
vdup.u8 d3, r3 @ H
vmov r2, r3, d4
orr r2, r2, r3
cmp r2, #0
orrs r2, r2, r3
@ If no pixels need filtering, just exit as soon as possible
beq 9f
...
...
@@ -192,8 +191,7 @@
.if \wd >= 8
vmov r2, r3, d6
orr r2, r2, r3
cmp r2, #0
orrs r2, r2, r3
@ If no pixels need flat8in, jump to flat8out
@ (or to a writeout of the inner 4 pixels, for wd=8)
beq 6f
...
...
@@ -248,14 +246,12 @@
6:
vorr d2, d6, d7
vmov r2, r3, d2
orr r2, r2, r3
cmp r2, #0
orrs r2, r2, r3
@ If no pixels needed flat8in nor flat8out, jump to a
@ writeout of the inner 4 pixels
beq 7f
vmov r2, r3, d7
orr r2, r2, r3
cmp r2, #0
orrs r2, r2, r3
@ If no pixels need flat8out, jump to a writeout of the inner 6 pixels
beq 8f
...
...
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