summaryrefslogtreecommitdiff
path: root/vp8/encoder/rdopt.h
diff options
context:
space:
mode:
authorScott LaVarnway <slavarnway@google.com>2011-05-12 10:50:16 -0400
committerScott LaVarnway <slavarnway@google.com>2011-05-12 11:08:16 -0400
commit6b25501bf1b5f7f729665c39cb3e25a7b1edf385 (patch)
tree5e8b5be7c66db051692aae8b2f8dbf981e8dcc23 /vp8/encoder/rdopt.h
parent6ed81fa5b3aba4c6be6950872a03d67ddbc8c990 (diff)
downloadlibvpx-6b25501bf1b5f7f729665c39cb3e25a7b1edf385.tar
libvpx-6b25501bf1b5f7f729665c39cb3e25a7b1edf385.tar.gz
libvpx-6b25501bf1b5f7f729665c39cb3e25a7b1edf385.tar.bz2
libvpx-6b25501bf1b5f7f729665c39cb3e25a7b1edf385.zip
Using int_mv instead of MV
The compiler produces better assembly when using int_mv for assignments. The compiler shifts and ors the two 16bit values when assigning MV. Change-Id: I52ce4bc2bfbfaf3f1151204b2f21e1e0654f960f
Diffstat (limited to 'vp8/encoder/rdopt.h')
-rw-r--r--vp8/encoder/rdopt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp8/encoder/rdopt.h b/vp8/encoder/rdopt.h
index 1d5f9a3a8..fbbf9077f 100644
--- a/vp8/encoder/rdopt.h
+++ b/vp8/encoder/rdopt.h
@@ -25,7 +25,7 @@ extern void vp8_mv_pred
VP8_COMP *cpi,
MACROBLOCKD *xd,
const MODE_INFO *here,
- MV *mvp,
+ int_mv *mvp,
int refframe,
int *ref_frame_sign_bias,
int *sr,