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
4959c4a7
Commit
4959c4a7
authored
Jun 08, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/pthread_slice: Use av_malloc(z)_array()
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
ab1e1917
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
pthread_slice.c
libavcodec/pthread_slice.c
+4
-4
No files found.
libavcodec/pthread_slice.c
View file @
4959c4a7
...
@@ -201,7 +201,7 @@ int ff_slice_thread_init(AVCodecContext *avctx)
...
@@ -201,7 +201,7 @@ int ff_slice_thread_init(AVCodecContext *avctx)
if
(
!
c
)
if
(
!
c
)
return
-
1
;
return
-
1
;
c
->
workers
=
av_mallocz
(
sizeof
(
pthread_t
)
*
thread_count
);
c
->
workers
=
av_mallocz
_array
(
thread_count
,
sizeof
(
pthread_t
)
);
if
(
!
c
->
workers
)
{
if
(
!
c
->
workers
)
{
av_free
(
c
);
av_free
(
c
);
return
-
1
;
return
-
1
;
...
@@ -266,15 +266,15 @@ int ff_alloc_entries(AVCodecContext *avctx, int count)
...
@@ -266,15 +266,15 @@ int ff_alloc_entries(AVCodecContext *avctx, int count)
if
(
avctx
->
active_thread_type
&
FF_THREAD_SLICE
)
{
if
(
avctx
->
active_thread_type
&
FF_THREAD_SLICE
)
{
SliceThreadContext
*
p
=
avctx
->
internal
->
thread_ctx
;
SliceThreadContext
*
p
=
avctx
->
internal
->
thread_ctx
;
p
->
thread_count
=
avctx
->
thread_count
;
p
->
thread_count
=
avctx
->
thread_count
;
p
->
entries
=
av_mallocz
(
count
*
sizeof
(
int
));
p
->
entries
=
av_mallocz
_array
(
count
,
sizeof
(
int
));
if
(
!
p
->
entries
)
{
if
(
!
p
->
entries
)
{
return
AVERROR
(
ENOMEM
);
return
AVERROR
(
ENOMEM
);
}
}
p
->
entries_count
=
count
;
p
->
entries_count
=
count
;
p
->
progress_mutex
=
av_malloc
(
p
->
thread_count
*
sizeof
(
pthread_mutex_t
));
p
->
progress_mutex
=
av_malloc
_array
(
p
->
thread_count
,
sizeof
(
pthread_mutex_t
));
p
->
progress_cond
=
av_malloc
(
p
->
thread_count
*
sizeof
(
pthread_cond_t
));
p
->
progress_cond
=
av_malloc
_array
(
p
->
thread_count
,
sizeof
(
pthread_cond_t
));
for
(
i
=
0
;
i
<
p
->
thread_count
;
i
++
)
{
for
(
i
=
0
;
i
<
p
->
thread_count
;
i
++
)
{
pthread_mutex_init
(
&
p
->
progress_mutex
[
i
],
NULL
);
pthread_mutex_init
(
&
p
->
progress_mutex
[
i
],
NULL
);
...
...
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