summaryrefslogtreecommitdiff
path: root/vp8/encoder/mcomp.c
diff options
context:
space:
mode:
authorRonald S. Bultje <rbultje@google.com>2012-04-18 13:51:58 -0700
committerRonald S. Bultje <rbultje@google.com>2012-04-18 14:05:39 -0700
commit18433aef17d9c4674de98a329e4e46e5677f846e (patch)
treed92072b825a7def3e5392dd00cca05feadfeb3b9 /vp8/encoder/mcomp.c
parent1cc406ab4a16549fc3b44c0b20f7e81dfc2b649c (diff)
downloadlibvpx-18433aef17d9c4674de98a329e4e46e5677f846e.tar
libvpx-18433aef17d9c4674de98a329e4e46e5677f846e.tar.gz
libvpx-18433aef17d9c4674de98a329e4e46e5677f846e.tar.bz2
libvpx-18433aef17d9c4674de98a329e4e46e5677f846e.zip
Compound prediction for splitmv macroblocks.
Change-Id: I0af3395500b1cb0ed629249eb6636a0c9322cb18
Diffstat (limited to 'vp8/encoder/mcomp.c')
-rw-r--r--vp8/encoder/mcomp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/vp8/encoder/mcomp.c b/vp8/encoder/mcomp.c
index c9058ae40..e9f85545f 100644
--- a/vp8/encoder/mcomp.c
+++ b/vp8/encoder/mcomp.c
@@ -1720,7 +1720,7 @@ int vp8_full_search_sad(MACROBLOCK *x, BLOCK *b, BLOCKD *d, int_mv *ref_mv,
int in_what_stride = d->pre_stride;
int mv_stride = d->pre_stride;
unsigned char *bestaddress;
- int_mv *best_mv = &d->bmi.mv;
+ int_mv *best_mv = &d->bmi.as_mv.first;
int_mv this_mv;
int bestsad = INT_MAX;
int r, c;
@@ -1825,7 +1825,7 @@ int vp8_full_search_sadx3(MACROBLOCK *x, BLOCK *b, BLOCKD *d, int_mv *ref_mv,
int in_what_stride = d->pre_stride;
int mv_stride = d->pre_stride;
unsigned char *bestaddress;
- int_mv *best_mv = &d->bmi.mv;
+ int_mv *best_mv = &d->bmi.as_mv.first;
int_mv this_mv;
int bestsad = INT_MAX;
int r, c;
@@ -1968,7 +1968,7 @@ int vp8_full_search_sadx8(MACROBLOCK *x, BLOCK *b, BLOCKD *d, int_mv *ref_mv,
int in_what_stride = d->pre_stride;
int mv_stride = d->pre_stride;
unsigned char *bestaddress;
- int_mv *best_mv = &d->bmi.mv;
+ int_mv *best_mv = &d->bmi.as_mv.first;
int_mv this_mv;
int bestsad = INT_MAX;
int r, c;