]> granicus.if.org Git - libvpx/commit
experiment extending the quantizer range
authorYaowu Xu <yaowu@google.com>
Wed, 1 Dec 2010 23:50:14 +0000 (15:50 -0800)
committerYaowu Xu <yaowu@google.com>
Wed, 19 Jan 2011 21:22:35 +0000 (13:22 -0800)
commit5b42ae09aeecedfdff1dae9d59be9fbb2aba3392
tree7e6bb870fbb3130fc8a45c953d755cd0f42396e5
parentae4db164e5ece4ffdf8d2f460940244763e5052d
experiment extending the quantizer range

Prior to this change, VP8 min quantizer is 4, which caps the
highest quality around 51DB. This experimental change extends
the min quantizer to 1, removes the cap and allows the highest
quality to be around ~73DB, consistent with the fdct/idct round trip
error. To test this change, at configure time use options:

--enable-experimental --enable-extend_qrange

The following is a brief log of changes in each of the patch sets

patch set 1:
In this commit, the quantization/dequantization constants are kept
unchanged, instead scaling factor 4 is rolled into fdct/idct.
Fixed Q0 encoding tests on mobile:
  Before:    9560.567kbps Overall PSNR:50.255DB VPXSSIM:98.288
  Now:   18035.774kbps Overall PSNR:73.022DB VPXSSIM:99.991

patch set 2:
regenerated dc/ac quantizer lookup tables based on the scaling
factor rolled in the fdct/idct. Also slightly extended the range
towards the high quantizer end.

patch set 3:
slightly tweaked the quantizer tables and generated bits_per_mb
table based on Paul's suggestions.

patch set 4:
fix a typo in idct, re-calculated tables relating active max Q
to active min Q

patch set 5:
added rdmult lookup table based on Q

patch set 6:
fix rdmult scale: dct coefficient has scaled up by 4

patch set 7:
make transform coefficients to be within 16bits

patch set 8:
normalize 2nd order quantizers

patch set 9:
fix mis-spellings

patch set 10:
change the configure script and macros to allow experimental code
to be enabled at configure time with --enable-extend_qrange

patch set 11:
rebase for merge

Change-Id: Ib50641ddd44aba2a52ed890222c309faa31cc59c
13 files changed:
configure
vp8/common/generic/systemdependent.c
vp8/common/idctllm.c
vp8/common/quant_common.c
vp8/decoder/generic/dsystemdependent.c
vp8/encoder/dct.c
vp8/encoder/encodeframe.c
vp8/encoder/encodemb.c
vp8/encoder/firstpass.c
vp8/encoder/generic/csystemdependent.c
vp8/encoder/onyx_if.c
vp8/encoder/ratectrl.c
vp8/encoder/rdopt.c