summaryrefslogtreecommitdiff
path: root/libavfilter/framesync.c
diff options
context:
space:
mode:
authorNicolas George <george@nsup.org>2017-09-12 11:14:25 +0200
committerNicolas George <george@nsup.org>2017-09-12 11:14:25 +0200
commit9bad5e53191092ee17c0a95c597cccd527594d10 (patch)
tree1a842df191fc1602054cbea98953534ec50fdd50 /libavfilter/framesync.c
parent064c9d45ff10fec5d735c49999212881e93a0fd4 (diff)
lavfi/framesync: reword repeatlast option help.
Diffstat (limited to 'libavfilter/framesync.c')
-rw-r--r--libavfilter/framesync.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/framesync.c b/libavfilter/framesync.c
index ebfbcaf090..5567d660ab 100644
--- a/libavfilter/framesync.c
+++ b/libavfilter/framesync.c
@@ -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" },
{ "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 },
- { "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 }
};
static const AVClass framesync_class = {