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
e80be5a0
Commit
e80be5a0
authored
Jan 22, 2013
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/showwaves: fail in case of push_frame() error
parent
e4e36a4d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
6 deletions
+9
-6
avf_showwaves.c
libavfilter/avf_showwaves.c
+9
-6
No files found.
libavfilter/avf_showwaves.c
View file @
e80be5a0
...
...
@@ -160,14 +160,16 @@ static int config_output(AVFilterLink *outlink)
return
0
;
}
inline
static
void
push_frame
(
AVFilterLink
*
outlink
)
inline
static
int
push_frame
(
AVFilterLink
*
outlink
)
{
ShowWavesContext
*
showwaves
=
outlink
->
src
->
priv
;
int
ret
;
ff_filter_frame
(
outlink
,
showwaves
->
outpicref
);
showwaves
->
req_fullfilled
=
1
;
if
((
ret
=
ff_filter_frame
(
outlink
,
showwaves
->
outpicref
))
>=
0
)
showwaves
->
req_fullfilled
=
1
;
showwaves
->
outpicref
=
NULL
;
showwaves
->
buf_idx
=
0
;
return
ret
;
}
static
int
request_frame
(
AVFilterLink
*
outlink
)
...
...
@@ -198,7 +200,7 @@ static int filter_frame(AVFilterLink *inlink, AVFilterBufferRef *insamples)
int
linesize
=
outpicref
?
outpicref
->
linesize
[
0
]
:
0
;
int16_t
*
p
=
(
int16_t
*
)
insamples
->
data
[
0
];
int
nb_channels
=
av_get_channel_layout_nb_channels
(
insamples
->
audio
->
channel_layout
);
int
i
,
j
,
k
,
h
;
int
i
,
j
,
k
,
h
,
ret
=
0
;
const
int
n
=
showwaves
->
n
;
const
int
x
=
255
/
(
nb_channels
*
n
);
/* multiplication factor, pre-computed to avoid in-loop divisions */
...
...
@@ -244,12 +246,13 @@ static int filter_frame(AVFilterLink *inlink, AVFilterBufferRef *insamples)
showwaves
->
buf_idx
++
;
}
if
(
showwaves
->
buf_idx
==
showwaves
->
w
)
push_frame
(
outlink
);
if
((
ret
=
push_frame
(
outlink
))
<
0
)
break
;
outpicref
=
showwaves
->
outpicref
;
}
avfilter_unref_buffer
(
insamples
);
return
0
;
return
ret
;
}
static
const
AVFilterPad
showwaves_inputs
[]
=
{
...
...
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