summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLou Quillio <louquillio@google.com>2011-08-01 15:34:48 -0400
committerJohn Koleszar <jkoleszar@google.com>2011-08-02 09:57:50 -0400
commitedfed938bada72985112ee83e5b64d20cc72714e (patch)
tree5e6c30facaefa02332b8be6ef5b2fff83af9c6b0
parentf475f0c1bb2786251b8bd9aafa17c320d1b90633 (diff)
downloadlibvpx-edfed938bada72985112ee83e5b64d20cc72714e.tar
libvpx-edfed938bada72985112ee83e5b64d20cc72714e.tar.gz
libvpx-edfed938bada72985112ee83e5b64d20cc72714e.tar.bz2
libvpx-edfed938bada72985112ee83e5b64d20cc72714e.zip
Sync `vpxenc --timebase` usage wording with docs change.
Change-Id: Ia406272a97806c0194435bb7f24e24d353ef5cc6
-rw-r--r--vpxenc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vpxenc.c b/vpxenc.c
index f0b834aa0..ec807d7cf 100644
--- a/vpxenc.c
+++ b/vpxenc.c
@@ -971,7 +971,7 @@ static const struct arg_enum_list stereo_mode_enum[] = {
static const arg_def_t stereo_mode = ARG_DEF_ENUM(NULL, "stereo-mode", 1,
"Stereo 3D video format", stereo_mode_enum);
static const arg_def_t timebase = ARG_DEF(NULL, "timebase", 1,
- "Stream timebase (see below)");
+ "Output timestamp precision (fractional seconds)");
static const arg_def_t error_resilient = ARG_DEF(NULL, "error-resilient", 1,
"Enable error resiliency features");
static const arg_def_t lag_in_frames = ARG_DEF(NULL, "lag-in-frames", 1,
@@ -1127,7 +1127,7 @@ static void usage_exit()
arg_show_usage(stdout, vp8_args);
#endif
fprintf(stderr, "\nStream timebase (--timebase):\n"
- " This is the unit of time used to represent frame timestamps,\n"
+ " The desired precision of timestamps in the output, expressed\n"
" in fractional seconds. Default is 1/1000.\n");
fprintf(stderr, "\n"
"Included encoders:\n"