summaryrefslogtreecommitdiff
path: root/vpxenc.c
diff options
context:
space:
mode:
authorPaul Wilkins <paulwilkins@google.com>2013-11-22 17:21:53 +0000
committerYaowu Xu <yaowu@google.com>2013-11-25 10:22:55 -0800
commit644bd87e8e04fe5c70dd47b34f9ac19fe173dab5 (patch)
treeae2bd7ab5dc91457aa355fefb26d44ddc6a7a273 /vpxenc.c
parent3183135dd39e42eb83d726aa5a8dc79ab1bd992e (diff)
downloadlibvpx-644bd87e8e04fe5c70dd47b34f9ac19fe173dab5.tar
libvpx-644bd87e8e04fe5c70dd47b34f9ac19fe173dab5.tar.gz
libvpx-644bd87e8e04fe5c70dd47b34f9ac19fe173dab5.tar.bz2
libvpx-644bd87e8e04fe5c70dd47b34f9ac19fe173dab5.zip
In frame Q adjustment experiment.
The idea here is to allow "in frame" adjustment of the final Q value used to encode each SB64, using segmentation. There is also adjustment of the rd mult in regions of overspend. Activated using aq_mode=2 Change-Id: I2f140cd898c9f877c32cd6d2e667f5e11ada4b1c
Diffstat (limited to 'vpxenc.c')
-rw-r--r--vpxenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vpxenc.c b/vpxenc.c
index c35493fc8..c58a2929f 100644
--- a/vpxenc.c
+++ b/vpxenc.c
@@ -384,7 +384,7 @@ static const arg_def_t frame_parallel_decoding = ARG_DEF(
NULL, "frame-parallel", 1, "Enable frame parallel decodability features");
static const arg_def_t aq_mode = ARG_DEF(
NULL, "aq-mode", 1,
- "Adaptive quantization mode (0: disabled (by default), 1: variance based)");
+ "Adaptive q mode (0: off (by default), 1: variance 2: complexity)");
#endif
#if CONFIG_VP8_ENCODER