Fix bug in motion search
authorYunqing Wang <yunqingwang@google.com>
Mon, 10 Jan 2011 21:16:59 +0000 (16:16 -0500)
committerYunqing Wang <yunqingwang@google.com>
Mon, 10 Jan 2011 21:16:59 +0000 (16:16 -0500)
commit3675b2291cac15e6bc5a9bde9a0da7e00f919aaa
treeaafafbf940af2701bf1bc715afe0dea8c5c0c596
parentcf7c4732e5be5c881a49f778ba011ea5d656f66e
Fix bug in motion search

The maximum possible MV in 1/8 pel units is (1<<11), which could
cause mvcost out of its range that is 1023. Change maximum
possible MV in 1/8 pel units to (1<<11)-8 will fix this problem.

Change-Id: I5788ed1de773f66658c14f225fb4ab5b1679b74b
vp8/encoder/mcomp.h
vp8/encoder/rdopt.c