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
9fb483fe
Commit
9fb483fe
authored
May 31, 2015
by
Vittorio Giovara
Committed by
Luca Barbato
May 31, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x264: Check memory allocation
parent
41658bc8
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
libx264.c
libavcodec/libx264.c
+4
-0
No files found.
libavcodec/libx264.c
View file @
9fb483fe
...
@@ -542,6 +542,8 @@ static av_cold int X264_init(AVCodecContext *avctx)
...
@@ -542,6 +542,8 @@ static av_cold int X264_init(AVCodecContext *avctx)
s
=
x264_encoder_headers
(
x4
->
enc
,
&
nal
,
&
nnal
);
s
=
x264_encoder_headers
(
x4
->
enc
,
&
nal
,
&
nnal
);
avctx
->
extradata
=
p
=
av_malloc
(
s
);
avctx
->
extradata
=
p
=
av_malloc
(
s
);
if
(
!
p
)
return
AVERROR
(
ENOMEM
);
for
(
i
=
0
;
i
<
nnal
;
i
++
)
{
for
(
i
=
0
;
i
<
nnal
;
i
++
)
{
/* Don't put the SEI in extradata. */
/* Don't put the SEI in extradata. */
...
@@ -549,6 +551,8 @@ static av_cold int X264_init(AVCodecContext *avctx)
...
@@ -549,6 +551,8 @@ static av_cold int X264_init(AVCodecContext *avctx)
av_log
(
avctx
,
AV_LOG_INFO
,
"%s
\n
"
,
nal
[
i
].
p_payload
+
25
);
av_log
(
avctx
,
AV_LOG_INFO
,
"%s
\n
"
,
nal
[
i
].
p_payload
+
25
);
x4
->
sei_size
=
nal
[
i
].
i_payload
;
x4
->
sei_size
=
nal
[
i
].
i_payload
;
x4
->
sei
=
av_malloc
(
x4
->
sei_size
);
x4
->
sei
=
av_malloc
(
x4
->
sei_size
);
if
(
!
x4
->
sei
)
return
AVERROR
(
ENOMEM
);
memcpy
(
x4
->
sei
,
nal
[
i
].
p_payload
,
nal
[
i
].
i_payload
);
memcpy
(
x4
->
sei
,
nal
[
i
].
p_payload
,
nal
[
i
].
i_payload
);
continue
;
continue
;
}
}
...
...
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