]> granicus.if.org Git - libvpx/commit
Superblock coding.
authorRonald S. Bultje <rbultje@google.com>
Mon, 20 Aug 2012 21:43:34 +0000 (14:43 -0700)
committerRonald S. Bultje <rbultje@google.com>
Mon, 20 Aug 2012 21:43:34 +0000 (14:43 -0700)
commit5d4cffb35f4bc23462eedc95a4802c65e32d7d5a
tree6fce23691dfa0c01aeb422f6c6b68c75296e91f2
parent319dd1c0f58d3db46713460ca10e920f2b18b605
Superblock coding.

This commit adds a pick_sb_mode() function which selects the best 32x32
superblock coding mode. Then it selects the best per-MB modes, compares
the two and encodes that in the bitstream.

The bitstream coding is rather simplistic right now. At the SB level,
we code a bit to indicate whether this block uses SB-coding (32x32
prediction) or MB-coding (anything else), and then we follow with the
actual modes. This could and should be modified in the future, but is
omitted from this commit because it will likely involve reorganizing
much more code rather than just adding SB coding, so it's better to let
that be judged on its own merits.

Gains on derf: about even, YT/HD: +0.75%, STD/HD: +1.5%.

Change-Id: Iae313a7cbd8f75b3c66d04a68b991cb096eaaba6
29 files changed:
vp8/common/blockd.h
vp8/common/entropymode.c
vp8/common/entropymode.h
vp8/common/generic/systemdependent.c
vp8/common/loopfilter.c
vp8/common/onyxc_int.h
vp8/common/pred_common.c
vp8/common/recon.c
vp8/common/recon.h
vp8/common/reconinter.c
vp8/common/reconintra.c
vp8/decoder/decodemv.c
vp8/decoder/decodframe.c
vp8/decoder/idct_blk.c
vp8/decoder/onyxd_if.c
vp8/encoder/bitstream.c
vp8/encoder/block.h
vp8/encoder/encodeframe.c
vp8/encoder/encodemb.c
vp8/encoder/generic/csystemdependent.c
vp8/encoder/mcomp.c
vp8/encoder/onyx_if.c
vp8/encoder/onyx_int.h
vp8/encoder/rdopt.c
vp8/encoder/rdopt.h
vp8/encoder/sad_c.c
vp8/encoder/segmentation.c
vp8/encoder/variance.h
vp8/encoder/variance_c.c