From: Yaowu Xu Date: Wed, 25 Jul 2018 00:18:08 +0000 (-0700) Subject: Improve help message for arnr-type X-Git-Tag: v1.8.0~492^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=14fc43825ec616c238494ce133425f2d5befad47;p=libvpx Improve help message for arnr-type BUG=webm:1346 Change-Id: Ia6c1cee3704a6b44515d883b4d0632ac567bc9a2 --- diff --git a/vpxenc.c b/vpxenc.c index 144e60ccf..632bb19d9 100644 --- a/vpxenc.c +++ b/vpxenc.c @@ -351,7 +351,8 @@ static const arg_def_t arnr_maxframes = ARG_DEF(NULL, "arnr-maxframes", 1, "AltRef max frames (0..15)"); static const arg_def_t arnr_strength = ARG_DEF(NULL, "arnr-strength", 1, "AltRef filter strength (0..6)"); -static const arg_def_t arnr_type = ARG_DEF(NULL, "arnr-type", 1, "AltRef type"); +static const arg_def_t arnr_type = + ARG_DEF(NULL, "arnr-type", 1, "AltRef filter type (1..3)"); static const struct arg_enum_list tuning_enum[] = { { "psnr", VP8_TUNE_PSNR }, { "ssim", VP8_TUNE_SSIM }, { NULL, 0 } };