summaryrefslogtreecommitdiff
path: root/vpxenc.c
diff options
context:
space:
mode:
authorhui su <huisu@google.com>2016-02-02 18:03:39 -0800
committerhui su <huisu@google.com>2016-02-02 18:08:54 -0800
commit06bcd852ad388b9dc1021c00c6d2d721a7ee590c (patch)
treeb9245fdfa8ced85641632bd1785cd70b117e1a9c /vpxenc.c
parent614f0727e4a0e823ec5345215cbfaf62e0eba14c (diff)
downloadlibvpx-06bcd852ad388b9dc1021c00c6d2d721a7ee590c.tar
libvpx-06bcd852ad388b9dc1021c00c6d2d721a7ee590c.tar.gz
libvpx-06bcd852ad388b9dc1021c00c6d2d721a7ee590c.tar.bz2
libvpx-06bcd852ad388b9dc1021c00c6d2d721a7ee590c.zip
Add high bit depth args to arg list
So that their usage info. will show up with --help. Change-Id: I8542240dcc98e8be29ac63d081f5abb932627cbf
Diffstat (limited to 'vpxenc.c')
-rw-r--r--vpxenc.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/vpxenc.c b/vpxenc.c
index 8798e6918..c61d06073 100644
--- a/vpxenc.c
+++ b/vpxenc.c
@@ -454,6 +454,9 @@ static const arg_def_t *vp9_args[] = {
&frame_parallel_decoding, &aq_mode, &frame_periodic_boost,
&noise_sens, &tune_content, &input_color_space,
&min_gf_interval, &max_gf_interval,
+#if CONFIG_VP9_HIGHBITDEPTH
+ &bitdeptharg, &inbitdeptharg,
+#endif // CONFIG_VP9_HIGHBITDEPTH
NULL
};
static const int vp9_arg_ctrl_map[] = {
@@ -480,6 +483,9 @@ static const arg_def_t *vp10_args[] = {
&frame_parallel_decoding, &aq_mode, &frame_periodic_boost,
&noise_sens, &tune_content, &input_color_space,
&min_gf_interval, &max_gf_interval,
+#if CONFIG_VP9_HIGHBITDEPTH
+ &bitdeptharg, &inbitdeptharg,
+#endif // CONFIG_VP9_HIGHBITDEPTH
NULL
};
static const int vp10_arg_ctrl_map[] = {