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
5008605b
Commit
5008605b
authored
Jan 29, 2015
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/hevc: Replace more mallocs by av_malloc_array()
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
93fac23b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
hevc.c
libavcodec/hevc.c
+2
-2
No files found.
libavcodec/hevc.c
View file @
5008605b
...
...
@@ -97,14 +97,14 @@ static int pic_arrays_init(HEVCContext *s, const HEVCSPS *sps)
if
(
!
s
->
sao
||
!
s
->
deblock
)
goto
fail
;
s
->
skip_flag
=
av_malloc
(
sps
->
min_cb_height
*
sps
->
min_cb_width
);
s
->
skip_flag
=
av_malloc
_array
(
sps
->
min_cb_height
,
sps
->
min_cb_width
);
s
->
tab_ct_depth
=
av_malloc_array
(
sps
->
min_cb_height
,
sps
->
min_cb_width
);
if
(
!
s
->
skip_flag
||
!
s
->
tab_ct_depth
)
goto
fail
;
s
->
cbf_luma
=
av_malloc_array
(
sps
->
min_tb_width
,
sps
->
min_tb_height
);
s
->
tab_ipm
=
av_mallocz
(
min_pu_size
);
s
->
is_pcm
=
av_malloc
((
sps
->
min_pu_width
+
1
)
*
(
sps
->
min_pu_height
+
1
)
);
s
->
is_pcm
=
av_malloc
_array
(
sps
->
min_pu_width
+
1
,
sps
->
min_pu_height
+
1
);
if
(
!
s
->
tab_ipm
||
!
s
->
cbf_luma
||
!
s
->
is_pcm
)
goto
fail
;
...
...
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