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
1e1015f3
Commit
1e1015f3
authored
May 08, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/af_apad: Support AVFILTER_FLAG_SUPPORT_TIMELINE
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
df9f9cab
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
af_apad.c
libavfilter/af_apad.c
+3
-1
No files found.
libavfilter/af_apad.c
View file @
1e1015f3
...
...
@@ -89,7 +89,7 @@ static int request_frame(AVFilterLink *outlink)
ret
=
ff_request_frame
(
ctx
->
inputs
[
0
]);
if
(
ret
==
AVERROR_EOF
)
{
if
(
ret
==
AVERROR_EOF
&&
!
ctx
->
is_disabled
)
{
int
n_out
=
apad
->
packet_size
;
AVFrame
*
outsamplesref
;
...
...
@@ -131,6 +131,7 @@ static const AVFilterPad apad_inputs[] = {
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_AUDIO
,
.
filter_frame
=
filter_frame
,
.
passthrough_filter_frame
=
filter_frame
,
},
{
NULL
},
};
...
...
@@ -152,4 +153,5 @@ AVFilter avfilter_af_apad = {
.
inputs
=
apad_inputs
,
.
outputs
=
apad_outputs
,
.
priv_class
=
&
apad_class
,
.
flags
=
AVFILTER_FLAG_SUPPORT_TIMELINE
,
};
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