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
f83896ab
Commit
f83896ab
authored
Jun 19, 2014
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ape: Replace memset(0) by zero initialization
parent
8d695dc4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
apedec.c
libavcodec/apedec.c
+1
-3
No files found.
libavcodec/apedec.c
View file @
f83896ab
...
...
@@ -935,10 +935,8 @@ static void long_filter_ehigh_3830(int32_t *buffer, int length)
{
int
i
,
j
;
int32_t
dotprod
,
sign
;
int32_t
coeffs
[
8
]
,
delay
[
8
]
;
int32_t
coeffs
[
8
]
=
{
0
},
delay
[
8
]
=
{
0
}
;
memset
(
coeffs
,
0
,
sizeof
(
coeffs
));
memset
(
delay
,
0
,
sizeof
(
delay
));
for
(
i
=
0
;
i
<
length
;
i
++
)
{
dotprod
=
0
;
sign
=
APESIGN
(
buffer
[
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