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
4bcd637d
Commit
4bcd637d
authored
Jul 09, 2012
by
Justin Ruggles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
alac: use sizeof() instead of hardcoded data sizes
parent
91620a04
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
alac.c
libavcodec/alac.c
+4
-2
No files found.
libavcodec/alac.c
View file @
4bcd637d
...
...
@@ -142,7 +142,8 @@ static void bastardized_rice_decompress(ALACContext *alac,
av_log
(
alac
->
avctx
,
AV_LOG_ERROR
,
"invalid zero block size of %d %d %d
\n
"
,
block_size
,
output_size
,
output_count
);
block_size
=
output_size
-
output_count
-
1
;
}
memset
(
&
output_buffer
[
output_count
+
1
],
0
,
block_size
*
4
);
memset
(
&
output_buffer
[
output_count
+
1
],
0
,
block_size
*
sizeof
(
*
output_buffer
));
output_count
+=
block_size
;
}
...
...
@@ -176,7 +177,8 @@ static void predictor_decompress_fir_adapt(int32_t *error_buffer,
if
(
output_size
<=
1
)
return
;
memcpy
(
buffer_out
+
1
,
error_buffer
+
1
,
(
output_size
-
1
)
*
4
);
memcpy
(
&
buffer_out
[
1
],
&
error_buffer
[
1
],
(
output_size
-
1
)
*
sizeof
(
*
buffer_out
));
return
;
}
...
...
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