summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHui Su <huisu@google.com>2016-02-03 05:49:35 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2016-02-03 05:49:35 +0000
commitf22a0bc57452a8478d8c927ced728ba5aaebc21e (patch)
treed57c2337440c18bd78f1f189b1838e59df71b778
parentdee831c484c7e4a95a78c96c5264a9a3f5df931a (diff)
parent06bcd852ad388b9dc1021c00c6d2d721a7ee590c (diff)
downloadlibvpx-f22a0bc57452a8478d8c927ced728ba5aaebc21e.tar
libvpx-f22a0bc57452a8478d8c927ced728ba5aaebc21e.tar.gz
libvpx-f22a0bc57452a8478d8c927ced728ba5aaebc21e.tar.bz2
libvpx-f22a0bc57452a8478d8c927ced728ba5aaebc21e.zip
Merge "Add high bit depth args to arg list"
-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[] = {