summaryrefslogtreecommitdiff
path: root/vp9/decoder
diff options
context:
space:
mode:
authorDmitry Kovalev <dkovalev@google.com>2013-04-17 11:21:28 -0700
committerDmitry Kovalev <dkovalev@google.com>2013-04-17 11:21:28 -0700
commit0db175ffed7f82c3b2216081f5a180b914c14309 (patch)
tree9bc6e2f070acaadffca3e152179544d43794a566 /vp9/decoder
parent642ac924abfd24664335910d540742b4b71d58dd (diff)
downloadlibvpx-0db175ffed7f82c3b2216081f5a180b914c14309.tar
libvpx-0db175ffed7f82c3b2216081f5a180b914c14309.tar.gz
libvpx-0db175ffed7f82c3b2216081f5a180b914c14309.tar.bz2
libvpx-0db175ffed7f82c3b2216081f5a180b914c14309.zip
Changing argument type of vp9_get_mv_joint from MV to MV*.
Change-Id: I28c3026946fc1bde7074e6e0198da93bb0d75dfe
Diffstat (limited to 'vp9/decoder')
-rw-r--r--vp9/decoder/vp9_decodemv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp9/decoder/vp9_decodemv.c b/vp9/decoder/vp9_decodemv.c
index aaa9b2ef0..abeb41c7c 100644
--- a/vp9/decoder/vp9_decodemv.c
+++ b/vp9/decoder/vp9_decodemv.c
@@ -269,7 +269,7 @@ static void read_nmv(vp9_reader *r, MV *mv, const MV *ref,
static void read_nmv_fp(vp9_reader *r, MV *mv, const MV *ref,
const nmv_context *mvctx, int usehp) {
- const MV_JOINT_TYPE j = vp9_get_mv_joint(*mv);
+ const MV_JOINT_TYPE j = vp9_get_mv_joint(mv);
usehp = usehp && vp9_use_nmv_hp(ref);
if (mv_joint_vertical(j))
mv->row = read_nmv_component_fp(r, mv->row, ref->row, &mvctx->comps[0],