commit 4b9ab24c87f6df03264785f003bd8fa9da6a0ecd
parent 221b3d2981d8ae15b73e925619ee7082bb23fc6f
Author: Mattias Andrée <maandree@kth.se>
Date: Fri, 20 Jan 2017 11:45:08 +0100
Fix blind-cut
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat:
2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/TODO b/TODO
@@ -13,5 +13,4 @@ blind-find-frame a graphical tool for locating frames, should highlight key fram
Add [-j jobs] to blind-from-video and blind-to-video.
UNTESTED:
- blind-cut
blind-rewrite-head
diff --git a/src/blind-cut.c b/src/blind-cut.c
@@ -24,7 +24,7 @@ main(int argc, char *argv[])
if (!strcmp(argv[0], "end"))
eprintf("refusing to create video with zero frames\n");
else
- start = etozu_arg("the start point", argv[1], 0, SIZE_MAX);
+ start = etozu_arg("the start point", argv[0], 0, SIZE_MAX);
if (!strcmp(argv[1], "end"))
to_end = 1;