From 860d85841338e3532fb5dd2d5f3ba681675bd50d Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Fri, 2 Jun 2017 23:15:48 +0200 Subject: Document blind-cat-rows and blind-cat-cols MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- TODO | 6 ++---- man/blind-cat-cols.1 | 22 ++++++++++++++++++++++ man/blind-cat-rows.1 | 22 ++++++++++++++++++++++ src/blind-cat-cols.c | 2 +- src/blind-cat-rows.c | 2 +- 5 files changed, 48 insertions(+), 6 deletions(-) create mode 100644 man/blind-cat-cols.1 create mode 100644 man/blind-cat-rows.1 diff --git a/TODO b/TODO index 5c4461b..1ffabe3 100644 --- a/TODO +++ b/TODO @@ -1,7 +1,3 @@ -Write manpages for: - blind-cat-rows merge video by vertically stacking streams (inverse of blind-split-rows) - blind-cat-cols merge video by putting streams beside each other (inverse of blind-split-cols) - blind-transform affine transformation by matrix multiplication, -t for tiling, -s for improve quality on downscaling (pixels' neighbours must not change). blind-chroma-key replace a chroma with transparency. @@ -62,6 +58,8 @@ Add [-j jobs] to blind-from-video and blind-to-video. Add -f (framewise) to blind-repeat +blind-rewrite-head: add support pipes + Generate a header file with the appropriate values for USING_BINARY32, USING_BINARY64. long double is slightly faster than long. long double (xyza q) could be added as another format. diff --git a/man/blind-cat-cols.1 b/man/blind-cat-cols.1 new file mode 100644 index 0000000..a2af338 --- /dev/null +++ b/man/blind-cat-cols.1 @@ -0,0 +1,22 @@ +.TH BLIND-CAT-COLS 1 blind +.SH NAME +blind-cat-cols - Place videos side by side +.SH SYNOPSIS +.B blind-cat-cols +.IR stream \ ... +.SH DESCRIPTION +.B blind-cat-cols +reads all specified video +.IR stream s +and writes them side by side, with +the first video to the left and the +last video at the right, to stdout. +.SH SEE ALSO +.BR blind (7), +.BR blind-split-cols (1), +.BR blind-concat (1), +.BR blind-interleave (1), +.BR blind-cat-rows (1), +.SH AUTHORS +Mattias Andrée +.RI < maandree@kth.se > diff --git a/man/blind-cat-rows.1 b/man/blind-cat-rows.1 new file mode 100644 index 0000000..308d219 --- /dev/null +++ b/man/blind-cat-rows.1 @@ -0,0 +1,22 @@ +.TH BLIND-CAT-ROWS 1 blind +.SH NAME +blind-cat-rows - Stack videos vertically +.SH SYNOPSIS +.B blind-cat-rows +.IR stream \ ... +.SH DESCRIPTION +.B blind-cat-rows +reads all specified video +.IR stream s +and writes them vertically stacked, with +the first video at the top and the last +video at the bottom, to stdout. +.SH SEE ALSO +.BR blind (7), +.BR blind-split-rows (1), +.BR blind-concat (1), +.BR blind-interleave (1), +.BR blind-cat-cols (1), +.SH AUTHORS +Mattias Andrée +.RI < maandree@kth.se > diff --git a/src/blind-cat-cols.c b/src/blind-cat-cols.c index ef7d15e..d8bdb8b 100644 --- a/src/blind-cat-cols.c +++ b/src/blind-cat-cols.c @@ -1,7 +1,7 @@ /* See LICENSE file for copyright and license details. */ #include "common.h" -USAGE("file ...") +USAGE("stream ...") int main(int argc, char *argv[]) diff --git a/src/blind-cat-rows.c b/src/blind-cat-rows.c index a41655c..53978cd 100644 --- a/src/blind-cat-rows.c +++ b/src/blind-cat-rows.c @@ -1,7 +1,7 @@ /* See LICENSE file for copyright and license details. */ #include "common.h" -USAGE("file ...") +USAGE("stream ...") int main(int argc, char *argv[]) -- cgit v1.2.3-70-g09d2