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
2b858d0b
Commit
2b858d0b
authored
Jan 30, 2008
by
Reimar Döffinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplify: use DECLARE_ASM_CONST
Originally committed as revision 11669 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
4ad08acc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
postprocess.c
libpostproc/postprocess.c
+8
-8
No files found.
libpostproc/postprocess.c
View file @
2b858d0b
...
...
@@ -101,14 +101,14 @@ try to unroll inner for(x=0 ... loop to avoid these damn if(x ... checks
//#define NUM_BLOCKS_AT_ONCE 16 //not used yet
#if defined(ARCH_X86)
static
DECLARE_ALIGNED
(
8
,
const
uint64_t
attribute_used
,
w05
)
=
0x0005000500050005LL
;
static
DECLARE_ALIGNED
(
8
,
const
uint64_t
attribute_used
,
w04
)
=
0x0004000400040004LL
;
static
DECLARE_ALIGNED
(
8
,
const
uint64_t
attribute_used
,
w20
)
=
0x0020002000200020LL
;
static
DECLARE_ALIGNED
(
8
,
const
uint64_t
attribute_used
,
b00
)
=
0x0000000000000000LL
;
static
DECLARE_ALIGNED
(
8
,
const
uint64_t
attribute_used
,
b01
)
=
0x0101010101010101LL
;
static
DECLARE_ALIGNED
(
8
,
const
uint64_t
attribute_used
,
b02
)
=
0x0202020202020202LL
;
static
DECLARE_ALIGNED
(
8
,
const
uint64_t
attribute_used
,
b08
)
=
0x0808080808080808LL
;
static
DECLARE_ALIGNED
(
8
,
const
uint64_t
attribute_used
,
b80
)
=
0x8080808080808080LL
;
DECLARE_ASM_CONST
(
8
,
uint64_t
,
w05
)
=
0x0005000500050005LL
;
DECLARE_ASM_CONST
(
8
,
uint64_t
,
w04
)
=
0x0004000400040004LL
;
DECLARE_ASM_CONST
(
8
,
uint64_t
,
w20
)
=
0x0020002000200020LL
;
DECLARE_ASM_CONST
(
8
,
uint64_t
,
b00
)
=
0x0000000000000000LL
;
DECLARE_ASM_CONST
(
8
,
uint64_t
,
b01
)
=
0x0101010101010101LL
;
DECLARE_ASM_CONST
(
8
,
uint64_t
,
b02
)
=
0x0202020202020202LL
;
DECLARE_ASM_CONST
(
8
,
uint64_t
,
b08
)
=
0x0808080808080808LL
;
DECLARE_ASM_CONST
(
8
,
uint64_t
,
b80
)
=
0x8080808080808080LL
;
#endif
static
const
int
attribute_used
deringThreshold
=
20
;
...
...
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