ref: 882f71e52b8ba630b099be6dfb154231524cad8a
parent: 909fbd4cbb8248ea19ba593e8e19110da878b8de
parent: e05a17bf8e73bfe383c5f708f107bb20bf09addc
author: Yaowu Xu <[email protected]>
date: Wed May 14 13:17:28 EDT 2014
Merge "vp9_mbgraph.c: cleanup -wextra warnings"
--- a/vp9/encoder/vp9_mbgraph.c
+++ b/vp9/encoder/vp9_mbgraph.c
@@ -20,7 +20,6 @@
#include "vp9/common/vp9_systemdependent.h"
-
static unsigned int do_16x16_motion_iteration(VP9_COMP *cpi,
const MV *ref_mv,
MV *dst_mv,
@@ -234,8 +233,9 @@
int mb_col, mb_row, offset = 0;
int mb_y_offset = 0, arf_y_offset = 0, gld_y_offset = 0;
MV arf_top_mv = {0, 0}, gld_top_mv = {0, 0};
- MODE_INFO mi_local = { { 0 } };
+ MODE_INFO mi_local;
+ vp9_zero(mi_local);
// Set up limit values for motion vectors to prevent them extending outside
// the UMV borders.
x->mv_row_min = -BORDER_MV_PIXELS_B16;