From: John Koleszar Date: Thu, 21 Oct 2010 20:52:14 +0000 (-0400) Subject: vpxenc: change --framerate to --fps X-Git-Tag: 1.0_branch~839^2~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=28f177cd3aa72e2ca61e38ac9e8cf99a8bcfca4d;p=profile%2Fivi%2Flibvpx.git vpxenc: change --framerate to --fps Saves a little typing. FPS is a well known abbreviation. Change-Id: I53730ea36afb9309732eb1c72c52d824d5365fec --- diff --git a/vpxenc.c b/vpxenc.c index 6605ab8..f36af14 100644 --- a/vpxenc.c +++ b/vpxenc.c @@ -766,7 +766,7 @@ static const arg_def_t verbosearg = ARG_DEF("v", "verbose", 0, "Show encoder parameters"); static const arg_def_t psnrarg = ARG_DEF(NULL, "psnr", 0, "Show PSNR in status line"); -static const arg_def_t framerate = ARG_DEF(NULL, "framerate", 1, +static const arg_def_t framerate = ARG_DEF(NULL, "fps", 1, "Stream frame rate (rate/scale)"); static const arg_def_t use_ivf = ARG_DEF(NULL, "ivf", 0, "Output IVF (default is WebM)");