From ed7948810e1206906b1b60b158c0929b4779d803 Mon Sep 17 00:00:00 2001 From: Ari Lemmetti Date: Fri, 21 Aug 2015 15:29:48 +0300 Subject: [PATCH] Fix help message and update README.md --- README.md | 4 ++++ src/cli.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3b6433f5..ab8e47c8 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,10 @@ http://github.com/ultravideo/kvazaar/wiki/List-of-suggested-topics for a list of --subme : Set fractional pixel motion estimation level [1]. 0: only integer motion estimation 1: fractional pixel motion estimation enabled + --source-scan-type : Set source scan type [\"progressive\"]. + "progressive": progressive scan + "tff": top field first + "bff": bottom field first --pu-depth-inter - : Range for sizes of inter prediction units to try. 0: 64x64, 1: 32x32, 2: 16x16, 3: 8x8 --pu-depth-intra - : Range for sizes of intra prediction units to try. diff --git a/src/cli.c b/src/cli.c index d53c0b95..4f5d2762 100644 --- a/src/cli.c +++ b/src/cli.c @@ -285,11 +285,11 @@ void print_help(void) " --cpuid : Disable runtime cpu optimizations with value 0.\n" " --subme : Set fractional pixel motion estimation level [1].\n" " 0: only integer motion estimation\n" + " 1: fractional pixel motion estimation enabled\n" " --source-scan-type : Set source scan type [\"progressive\"].\n" " \"progressive\": progressive scan\n" " \"tff\": top field first\n" " \"bff\": bottom field first\n" - " 1: fractional pixel motion estimation enabled\n" " --pu-depth-inter - : Range for sizes of inter prediction units to try.\n" " 0: 64x64, 1: 32x32, 2: 16x16, 3: 8x8\n" " --pu-depth-intra - : Range for sizes of intra prediction units to try.\n"