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
33966830
Commit
33966830
authored
Mar 28, 2016
by
Matthieu Bouron
Committed by
Matthieu Bouron
Apr 01, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
swscale/arm/yuv2rgb: re-order compute_rgba macro arguments
parent
ff4885fa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
yuv2rgb_neon.S
libswscale/arm/yuv2rgb_neon.S
+6
-6
No files found.
libswscale/arm/yuv2rgb_neon.S
View file @
33966830
...
...
@@ -56,8 +56,8 @@
vqrshrun.s16 \dst_comp2, q2, #6
.endm
.macro compute_rgba r1
r2 g1 g2 b1 b2 a1
a2
compute_color \r1, \r2, q8,
q9
.macro compute_rgba r1
g1 b1 a1 r2 g2 b2
a2
compute_color \r1, \r2, q8, q9
compute_color \g1, \g2, q10, q11
compute_color \b1, \b2, q12, q13
vmov.u8 \a1, #255
...
...
@@ -80,19 +80,19 @@
.ifc \ofmt,argb
compute_rgba d7, d
11, d8, d12, d9, d13, d6
, d10
compute_rgba d7, d
8, d9, d6, d11, d12, d13
, d10
.endif
.ifc \ofmt,rgba
compute_rgba d6, d
10, d7, d11, d8, d12, d9
, d13
compute_rgba d6, d
7, d8, d9, d10, d11, d12
, d13
.endif
.ifc \ofmt,abgr
compute_rgba d9, d
13, d8, d12, d7, d11, d6
, d10
compute_rgba d9, d
8, d7, d6, d13, d12, d11
, d10
.endif
.ifc \ofmt,bgra
compute_rgba d8, d
12, d7, d11, d6, d10, d9
, d13
compute_rgba d8, d
7, d6, d9, d12, d11, d10
, d13
.endif
vst4.8 {q3, q4}, [\dst,:128]!
vst4.8 {q5, q6}, [\dst,:128]!
...
...
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