summaryrefslogtreecommitdiff
path: root/vp8/common/entropy.c
diff options
context:
space:
mode:
authorYaowu Xu <yaowu@google.com>2010-11-16 13:58:21 -0800
committerYaowu Xu <yaowu@google.com>2010-11-18 09:07:16 -0800
commit06c70d304ff1f672acbabbc3fae0a8202919a868 (patch)
treec251fbeb1d006f17261db423c62e6db48ef6698d /vp8/common/entropy.c
parenta2ebd0f3e4951832d2ecde5792cbd38819603ac1 (diff)
downloadlibvpx-06c70d304ff1f672acbabbc3fae0a8202919a868.tar
libvpx-06c70d304ff1f672acbabbc3fae0a8202919a868.tar.gz
libvpx-06c70d304ff1f672acbabbc3fae0a8202919a868.tar.bz2
libvpx-06c70d304ff1f672acbabbc3fae0a8202919a868.zip
extends the range of tokens
Extending the value range of tokens allows further experiments on extending quantizer range. Encoder and decoder were verified to produce matching reconstructed buffers by tests with forced quantized value of 1. Change-Id: I12faf92832867870b6f71ddeafbf643f1040086d
Diffstat (limited to 'vp8/common/entropy.c')
-rw-r--r--vp8/common/entropy.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/vp8/common/entropy.c b/vp8/common/entropy.c
index 1438e7e0f..2c17b1dd7 100644
--- a/vp8/common/entropy.c
+++ b/vp8/common/entropy.c
@@ -68,7 +68,7 @@ static const Prob Pcat3[] = { 173, 148, 140};
static const Prob Pcat4[] = { 176, 155, 140, 135};
static const Prob Pcat5[] = { 180, 157, 141, 134, 130};
static const Prob Pcat6[] =
-{ 254, 254, 243, 230, 196, 177, 153, 140, 133, 130, 129};
+{ 254, 254, 252, 249, 243, 230, 196, 177, 153, 140, 133, 130, 129};
static vp8_tree_index cat1[2], cat2[4], cat3[6], cat4[8], cat5[10], cat6[22];
@@ -103,7 +103,7 @@ static void init_bit_trees()
init_bit_tree(cat3, 3);
init_bit_tree(cat4, 4);
init_bit_tree(cat5, 5);
- init_bit_tree(cat6, 11);
+ init_bit_tree(cat6, 13);
}
@@ -121,7 +121,7 @@ vp8_extra_bit_struct vp8_extra_bits[12] =
{ cat3, Pcat3, bcc3, 3, 11},
{ cat4, Pcat4, bcc4, 4, 19},
{ cat5, Pcat5, bcc5, 5, 35},
- { cat6, Pcat6, bcc6, 11, 67},
+ { cat6, Pcat6, bcc6, 13, 67},
{ 0, 0, 0, 0, 0}
};
#include "defaultcoefcounts.h"