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
c90b8809
Commit
c90b8809
authored
Jun 24, 2017
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter: do not leak AVFrame on failed buffer allocation
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
db9e87dd
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
24 additions
and
8 deletions
+24
-8
af_aphaser.c
libavfilter/af_aphaser.c
+3
-1
af_aresample.c
libavfilter/af_aresample.c
+3
-1
af_atempo.c
libavfilter/af_atempo.c
+3
-1
af_bs2b.c
libavfilter/af_bs2b.c
+3
-1
af_pan.c
libavfilter/af_pan.c
+3
-1
af_volume.c
libavfilter/af_volume.c
+3
-1
vf_eq.c
libavfilter/vf_eq.c
+3
-1
vf_fftfilt.c
libavfilter/vf_fftfilt.c
+3
-1
No files found.
libavfilter/af_aphaser.c
View file @
c90b8809
...
...
@@ -248,8 +248,10 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *inbuf)
outbuf
=
inbuf
;
}
else
{
outbuf
=
ff_get_audio_buffer
(
inlink
,
inbuf
->
nb_samples
);
if
(
!
outbuf
)
if
(
!
outbuf
)
{
av_frame_free
(
&
inbuf
);
return
AVERROR
(
ENOMEM
);
}
av_frame_copy_props
(
outbuf
,
inbuf
);
}
...
...
libavfilter/af_aresample.c
View file @
c90b8809
...
...
@@ -195,8 +195,10 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *insamplesref)
outsamplesref
=
ff_get_audio_buffer
(
outlink
,
n_out
);
if
(
!
outsamplesref
)
if
(
!
outsamplesref
)
{
av_frame_free
(
&
insamplesref
);
return
AVERROR
(
ENOMEM
);
}
av_frame_copy_props
(
outsamplesref
,
insamplesref
);
outsamplesref
->
format
=
outlink
->
format
;
...
...
libavfilter/af_atempo.c
View file @
c90b8809
...
...
@@ -1090,8 +1090,10 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *src_buffer)
while
(
src
<
src_end
)
{
if
(
!
atempo
->
dst_buffer
)
{
atempo
->
dst_buffer
=
ff_get_audio_buffer
(
outlink
,
n_out
);
if
(
!
atempo
->
dst_buffer
)
if
(
!
atempo
->
dst_buffer
)
{
av_frame_free
(
&
src_buffer
);
return
AVERROR
(
ENOMEM
);
}
av_frame_copy_props
(
atempo
->
dst_buffer
,
src_buffer
);
atempo
->
dst
=
atempo
->
dst_buffer
->
data
[
0
];
...
...
libavfilter/af_bs2b.c
View file @
c90b8809
...
...
@@ -134,8 +134,10 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
out_frame
=
frame
;
}
else
{
out_frame
=
ff_get_audio_buffer
(
inlink
,
frame
->
nb_samples
);
if
(
!
out_frame
)
if
(
!
out_frame
)
{
av_frame_free
(
&
frame
);
return
AVERROR
(
ENOMEM
);
}
av_frame_copy
(
out_frame
,
frame
);
ret
=
av_frame_copy_props
(
out_frame
,
frame
);
if
(
ret
<
0
)
{
...
...
libavfilter/af_pan.c
View file @
c90b8809
...
...
@@ -383,8 +383,10 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *insamples)
AVFrame
*
outsamples
=
ff_get_audio_buffer
(
outlink
,
n
);
PanContext
*
pan
=
inlink
->
dst
->
priv
;
if
(
!
outsamples
)
if
(
!
outsamples
)
{
av_frame_free
(
&
insamples
);
return
AVERROR
(
ENOMEM
);
}
swr_convert
(
pan
->
swr
,
outsamples
->
extended_data
,
n
,
(
void
*
)
insamples
->
extended_data
,
n
);
av_frame_copy_props
(
outsamples
,
insamples
);
...
...
libavfilter/af_volume.c
View file @
c90b8809
...
...
@@ -411,8 +411,10 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
out_buf
=
buf
;
}
else
{
out_buf
=
ff_get_audio_buffer
(
inlink
,
nb_samples
);
if
(
!
out_buf
)
if
(
!
out_buf
)
{
av_frame_free
(
&
buf
);
return
AVERROR
(
ENOMEM
);
}
ret
=
av_frame_copy_props
(
out_buf
,
buf
);
if
(
ret
<
0
)
{
av_frame_free
(
&
out_buf
);
...
...
libavfilter/vf_eq.c
View file @
c90b8809
...
...
@@ -259,8 +259,10 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
int
i
;
out
=
ff_get_video_buffer
(
outlink
,
inlink
->
w
,
inlink
->
h
);
if
(
!
out
)
if
(
!
out
)
{
av_frame_free
(
&
in
);
return
AVERROR
(
ENOMEM
);
}
av_frame_copy_props
(
out
,
in
);
desc
=
av_pix_fmt_desc_get
(
inlink
->
format
);
...
...
libavfilter/vf_fftfilt.c
View file @
c90b8809
...
...
@@ -255,8 +255,10 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
int
i
,
j
,
plane
;
out
=
ff_get_video_buffer
(
outlink
,
inlink
->
w
,
inlink
->
h
);
if
(
!
out
)
if
(
!
out
)
{
av_frame_free
(
&
in
);
return
AVERROR
(
ENOMEM
);
}
av_frame_copy_props
(
out
,
in
);
...
...
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