summaryrefslogtreecommitdiff
path: root/doc/filters.texi
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2020-04-25 12:35:22 +0200
committerPaul B Mahol <onemda@gmail.com>2020-04-25 12:35:22 +0200
commitb29b934e4fd3de69dc45a23bb779a22b2fecd194 (patch)
treed6030581c1fc1f5fecc47d9cdd84b5ba0a804114 /doc/filters.texi
parent6cfb33f976812a52bceba29b3db3bbdb84ab7c32 (diff)
avfilter/f_interleave: add duration option
Diffstat (limited to 'doc/filters.texi')
-rw-r--r--doc/filters.texi15
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi
index 80c33f5edb..71a6787289 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -23316,6 +23316,21 @@ These filters accept the following options:
@table @option
@item nb_inputs, n
Set the number of different inputs, it is 2 by default.
+
+@item duration
+How to determine the end-of-stream.
+
+@table @option
+@item longest
+The duration of the longest input. (default)
+
+@item shortest
+The duration of the shortest input.
+
+@item first
+The duration of the first input.
+@end table
+
@end table
@subsection Examples