summaryrefslogtreecommitdiff
path: root/vp9/encoder/vp9_encodeframe.c
diff options
context:
space:
mode:
authorRonald S. Bultje <rbultje@google.com>2013-07-17 16:46:53 -0700
committerRonald S. Bultje <rbultje@google.com>2013-07-18 14:10:52 -0700
commit2d4929e340901cece322208f25bea3bc4ddaa440 (patch)
tree1eba98c47e20c101975f3eed42ad9f1759660b64 /vp9/encoder/vp9_encodeframe.c
parent9da67da04a1e150630196e5457133365bd9c8618 (diff)
downloadlibvpx-2d4929e340901cece322208f25bea3bc4ddaa440.tar
libvpx-2d4929e340901cece322208f25bea3bc4ddaa440.tar.gz
libvpx-2d4929e340901cece322208f25bea3bc4ddaa440.tar.bz2
libvpx-2d4929e340901cece322208f25bea3bc4ddaa440.zip
Remove motion vectors from PARTITION_INFO.
The same information already exists in union b_mode_info. Change-Id: Iac5086b99a3c3cc270380138062bb693e58f9e6d
Diffstat (limited to 'vp9/encoder/vp9_encodeframe.c')
-rw-r--r--vp9/encoder/vp9_encodeframe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vp9/encoder/vp9_encodeframe.c b/vp9/encoder/vp9_encodeframe.c
index e773c38c7..5d9471ea7 100644
--- a/vp9/encoder/vp9_encodeframe.c
+++ b/vp9/encoder/vp9_encodeframe.c
@@ -352,8 +352,8 @@ static void update_state(VP9_COMP *cpi, PICK_MODE_CONTEXT *ctx,
if (mbmi->ref_frame[0] != INTRA_FRAME && mbmi->sb_type < BLOCK_SIZE_SB8X8) {
*x->partition_info = ctx->partition_info;
- mbmi->mv[0].as_int = x->partition_info->bmi[3].mv.as_int;
- mbmi->mv[1].as_int = x->partition_info->bmi[3].second_mv.as_int;
+ mbmi->mv[0].as_int = mi->bmi[3].as_mv[0].as_int;
+ mbmi->mv[1].as_int = mi->bmi[3].as_mv[1].as_int;
}
x->skip = ctx->skip;