]> granicus.if.org Git - libvpx/commit
Speed up motion estimation using small partitions' result(experiment)
authorYunqing Wang <yunqingwang@google.com>
Wed, 3 Jul 2013 21:43:23 +0000 (14:43 -0700)
committerYunqing Wang <yunqingwang@google.com>
Wed, 17 Jul 2013 16:11:47 +0000 (09:11 -0700)
commitdf90d58f4fd13a486b6f3af6e8ce7669779b1e00
tree8cb2fe1f4eb21dee8241fc0567ad61e1cf8e6199
parenta33086f9253aa34f80f16849210d5da24563a24c
Speed up motion estimation using small partitions' result(experiment)

Current partition checking starts from small sizes, and then goes up
to large sizes. This experiment uses the small partitions' motion
estimation result, which is already available, to speed up the
large partition's motion estimation. We can decide to skip some
patition checkings if they are unlikely choices. We could use the
motion vector(MV) result as current partition's prediction MV, limit
the search range and reference frame.

Current result at speed 1:
psnr loss: 1.19% for stdhd, 0.287% for derf.
speed gain: 14% for sunflower(hd), 11% for akiyo.

Further improvement will be done later.

Change-Id: I5abfd070e9cace2e91e2a0247d1325df313887ab
vp9/encoder/vp9_block.h
vp9/encoder/vp9_encodeframe.c
vp9/encoder/vp9_onyx_if.c
vp9/encoder/vp9_onyx_int.h
vp9/encoder/vp9_rdopt.c