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
1e2084a2
Commit
1e2084a2
authored
Feb 14, 2018
by
Yaowu Xu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
align a stack array to prevent segfault
BUG=aomedia:1383 Change-Id: I8c3de068fd158b4706b578f7609c8ef939364525
parent
365f73bb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
av1/common/x86/av1_inv_txfm_sse2.c
av1/common/x86/av1_inv_txfm_sse2.c
+1
-1
No files found.
av1/common/x86/av1_inv_txfm_sse2.c
View file @
1e2084a2
...
...
@@ -1993,7 +1993,7 @@ void av1_lowbd_inv_txfm2d_add_64x64_sse2(const int32_t *input, uint8_t *output,
// Remap 32x32 input into a modified 64x64 by:
// - Copying over these values in top-left 32x32 locations.
// - Setting the rest of the locations to 0.
int32_t
mod_input
[
64
*
64
]
;
DECLARE_ALIGNED
(
32
,
int32_t
,
mod_input
[
64
*
64
])
;
for
(
int
row
=
0
;
row
<
32
;
++
row
)
{
memcpy
(
mod_input
+
row
*
64
,
input
+
row
*
32
,
32
*
sizeof
(
*
mod_input
));
memset
(
mod_input
+
row
*
64
+
32
,
0
,
32
*
sizeof
(
*
mod_input
));
...
...
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