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
9bad5e53
Commit
9bad5e53
authored
Sep 12, 2017
by
Nicolas George
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/framesync: reword repeatlast option help.
parent
064c9d45
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
filters.texi
doc/filters.texi
+3
-3
framesync.c
libavfilter/framesync.c
+1
-1
No files found.
doc/filters.texi
View file @
9bad5e53
...
@@ -337,9 +337,9 @@ If set to 1, force the output to terminate when the shortest input
...
@@ -337,9 +337,9 @@ If set to 1, force the output to terminate when the shortest input
terminates. Default value is 0.
terminates. Default value is 0.
@item repeatlast
@item repeatlast
If set to 1, force the filter to
draw the last overlay frame over the
If set to 1, force the filter to
extend the last frame of secondary streams
main input until the end of the stream. A value of 0 disables this
until the end of the primary stream. A value of 0 disables this behavior.
behavior.
Default value is 1.
Default value is 1.
@end table
@end table
@c man end OPTIONS FOR FILTERS WITH SEVERAL INPUTS
@c man end OPTIONS FOR FILTERS WITH SEVERAL INPUTS
...
...
libavfilter/framesync.c
View file @
9bad5e53
...
@@ -41,7 +41,7 @@ static const AVOption framesync_options[] = {
...
@@ -41,7 +41,7 @@ static const AVOption framesync_options[] = {
{
"endall"
,
"End both streams."
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
EOF_ACTION_ENDALL
},
.
flags
=
FLAGS
,
"eof_action"
},
{
"endall"
,
"End both streams."
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
EOF_ACTION_ENDALL
},
.
flags
=
FLAGS
,
"eof_action"
},
{
"pass"
,
"Pass through the main input."
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
EOF_ACTION_PASS
},
.
flags
=
FLAGS
,
"eof_action"
},
{
"pass"
,
"Pass through the main input."
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
EOF_ACTION_PASS
},
.
flags
=
FLAGS
,
"eof_action"
},
{
"shortest"
,
"force termination when the shortest input terminates"
,
OFFSET
(
opt_shortest
),
AV_OPT_TYPE_BOOL
,
{
.
i64
=
0
},
0
,
1
,
FLAGS
},
{
"shortest"
,
"force termination when the shortest input terminates"
,
OFFSET
(
opt_shortest
),
AV_OPT_TYPE_BOOL
,
{
.
i64
=
0
},
0
,
1
,
FLAGS
},
{
"repeatlast"
,
"
repeat overlay of the last overlay frame
"
,
OFFSET
(
opt_repeatlast
),
AV_OPT_TYPE_BOOL
,
{
.
i64
=
1
},
0
,
1
,
FLAGS
},
{
"repeatlast"
,
"
extend last frame of secondary streams beyond EOF
"
,
OFFSET
(
opt_repeatlast
),
AV_OPT_TYPE_BOOL
,
{
.
i64
=
1
},
0
,
1
,
FLAGS
},
{
NULL
}
{
NULL
}
};
};
static
const
AVClass
framesync_class
=
{
static
const
AVClass
framesync_class
=
{
...
...
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