summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWan-Teh Chang <wtc@google.com>2020-09-20 11:57:13 -0700
committerWan-Teh Chang <wtc@google.com>2020-10-27 18:01:22 -0700
commit8b27a92490347d7e5e818a9371783c17dc0a4da8 (patch)
tree83f6535d94f40b6d896e1028c1f3f830913d745b
parent4c3d05f13e0fce53d0622c75c1cce13edfdb4a7c (diff)
downloadlibvpx-8b27a92490347d7e5e818a9371783c17dc0a4da8.tar
libvpx-8b27a92490347d7e5e818a9371783c17dc0a4da8.tar.gz
libvpx-8b27a92490347d7e5e818a9371783c17dc0a4da8.tar.bz2
libvpx-8b27a92490347d7e5e818a9371783c17dc0a4da8.zip
Add a comment about bitdeptharg and inbitdeptharg
Add a comment to vp9_args to point out that bitdeptharg and inbitdeptharg do not have a corresponding entry in vp9_arg_ctrl_map and must be listed at the end of vp9_args. Change-Id: Ic9834ab72599c067156ca5a315824c7f0760824a
-rw-r--r--vpxenc.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/vpxenc.c b/vpxenc.c
index 8c92f2391..5d7546eb2 100644
--- a/vpxenc.c
+++ b/vpxenc.c
@@ -503,6 +503,9 @@ static const arg_def_t *vp9_args[] = { &cpu_used_vp9,
&target_level,
&row_mt,
&disable_loopfilter,
+// NOTE: The entries above have a corresponding entry in vp9_arg_ctrl_map. The
+// entries below do not have a corresponding entry in vp9_arg_ctrl_map. They
+// must be listed at the end of vp9_args.
#if CONFIG_VP9_HIGHBITDEPTH
&bitdeptharg,
&inbitdeptharg,