From 60ad19d0c844e3490432d958ef0a69796977dd4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arttu=20Yl=C3=A4-Outinen?= Date: Fri, 13 Nov 2015 14:20:27 +0200 Subject: [PATCH] Fix --deblock option. Fixes --deblock option so that it takes a "beta:tc" argument as advertised in the README and command line help. --- src/cli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli.c b/src/cli.c index 1145f7c8..21743b53 100644 --- a/src/cli.c +++ b/src/cli.c @@ -45,7 +45,7 @@ static const struct option long_options[] = { { "vps-period", required_argument, NULL, 0 }, { "input-res", required_argument, NULL, 0 }, { "input-fps", required_argument, NULL, 0 }, - { "deblock", no_argument, NULL, 0 }, + { "deblock", required_argument, NULL, 0 }, { "no-deblock", no_argument, NULL, 0 }, { "sao", no_argument, NULL, 0 }, { "no-sao", no_argument, NULL, 0 },