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
36eae455
Commit
36eae455
authored
Mar 25, 2017
by
James Almer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fate/checkasm: use LOCAL_ALINGED_32 on hevc_add_res tests
parent
b68068ee
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
hevc_add_res.c
tests/checkasm/hevc_add_res.c
+4
-4
No files found.
tests/checkasm/hevc_add_res.c
View file @
36eae455
...
...
@@ -45,10 +45,10 @@
static
void
check_add_res
(
HEVCDSPContext
h
,
int
bit_depth
)
{
int
i
;
LOCAL_ALIGNED
(
32
,
int16_t
,
res0
,
[
32
*
32
]);
LOCAL_ALIGNED
(
32
,
int16_t
,
res1
,
[
32
*
32
]);
LOCAL_ALIGNED
(
32
,
uint8_t
,
dst0
,
[
32
*
32
*
2
]);
LOCAL_ALIGNED
(
32
,
uint8_t
,
dst1
,
[
32
*
32
*
2
]);
LOCAL_ALIGNED
_32
(
int16_t
,
res0
,
[
32
*
32
]);
LOCAL_ALIGNED
_32
(
int16_t
,
res1
,
[
32
*
32
]);
LOCAL_ALIGNED
_32
(
uint8_t
,
dst0
,
[
32
*
32
*
2
]);
LOCAL_ALIGNED
_32
(
uint8_t
,
dst1
,
[
32
*
32
*
2
]);
for
(
i
=
2
;
i
<=
5
;
i
++
)
{
int
block_size
=
1
<<
i
;
...
...
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