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
38004051
Commit
38004051
authored
Dec 29, 2013
by
Nicolas George
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc/utils: check av_frame_alloc() failure.
parent
a55692a9
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
utils.c
libavcodec/utils.c
+4
-0
No files found.
libavcodec/utils.c
View file @
38004051
...
@@ -1721,6 +1721,8 @@ int attribute_align_arg avcodec_encode_audio(AVCodecContext *avctx,
...
@@ -1721,6 +1721,8 @@ int attribute_align_arg avcodec_encode_audio(AVCodecContext *avctx,
if
(
samples
)
{
if
(
samples
)
{
frame
=
av_frame_alloc
();
frame
=
av_frame_alloc
();
if
(
!
frame
)
return
AVERROR
(
ENOMEM
);
if
(
avctx
->
frame_size
)
{
if
(
avctx
->
frame_size
)
{
frame
->
nb_samples
=
avctx
->
frame_size
;
frame
->
nb_samples
=
avctx
->
frame_size
;
...
@@ -2158,6 +2160,8 @@ int attribute_align_arg avcodec_decode_audio3(AVCodecContext *avctx, int16_t *sa
...
@@ -2158,6 +2160,8 @@ int attribute_align_arg avcodec_decode_audio3(AVCodecContext *avctx, int16_t *sa
AVFrame
*
frame
=
av_frame_alloc
();
AVFrame
*
frame
=
av_frame_alloc
();
int
ret
,
got_frame
=
0
;
int
ret
,
got_frame
=
0
;
if
(
!
frame
)
return
AVERROR
(
ENOMEM
);
if
(
avctx
->
get_buffer
!=
avcodec_default_get_buffer
)
{
if
(
avctx
->
get_buffer
!=
avcodec_default_get_buffer
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Custom get_buffer() for use with"
av_log
(
avctx
,
AV_LOG_ERROR
,
"Custom get_buffer() for use with"
"avcodec_decode_audio3() detected. Overriding with avcodec_default_get_buffer
\n
"
);
"avcodec_decode_audio3() detected. Overriding with avcodec_default_get_buffer
\n
"
);
...
...
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