Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
2291563b
Commit
2291563b
authored
Jun 25, 2013
by
John Koleszar
Committed by
Gerrit Code Review
Jun 25, 2013
Browse files
Merge "vpxenc: send usage to stderr"
parents
8c89e6b2
b9e27610
Changes
1
Show whitespace changes
Inline
Side-by-side
vpxenc.c
View file @
2291563b
...
...
@@ -1180,22 +1180,22 @@ static void usage_exit() {
exec_name
);
fprintf
(
stderr
,
"
\n
Options:
\n
"
);
arg_show_usage
(
std
out
,
main_args
);
arg_show_usage
(
std
err
,
main_args
);
fprintf
(
stderr
,
"
\n
Encoder Global Options:
\n
"
);
arg_show_usage
(
std
out
,
global_args
);
arg_show_usage
(
std
err
,
global_args
);
fprintf
(
stderr
,
"
\n
Rate Control Options:
\n
"
);
arg_show_usage
(
std
out
,
rc_args
);
arg_show_usage
(
std
err
,
rc_args
);
fprintf
(
stderr
,
"
\n
Twopass Rate Control Options:
\n
"
);
arg_show_usage
(
std
out
,
rc_twopass_args
);
arg_show_usage
(
std
err
,
rc_twopass_args
);
fprintf
(
stderr
,
"
\n
Keyframe Placement Options:
\n
"
);
arg_show_usage
(
std
out
,
kf_args
);
arg_show_usage
(
std
err
,
kf_args
);
#if CONFIG_VP8_ENCODER
fprintf
(
stderr
,
"
\n
VP8 Specific Options:
\n
"
);
arg_show_usage
(
std
out
,
vp8_args
);
arg_show_usage
(
std
err
,
vp8_args
);
#endif
#if CONFIG_VP9_ENCODER
fprintf
(
stderr
,
"
\n
VP9 Specific Options:
\n
"
);
arg_show_usage
(
std
out
,
vp9_args
);
arg_show_usage
(
std
err
,
vp9_args
);
#endif
fprintf
(
stderr
,
"
\n
Stream timebase (--timebase):
\n
"
" The desired precision of timestamps in the output, expressed
\n
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment