Commit 0249531b authored by Yaowu Xu's avatar Yaowu Xu Committed by Gerrit Code Review
Browse files

Merge "Remove unused varables"

Showing with 2 additions and 4 deletions
...@@ -235,7 +235,7 @@ static void update_mbgraph_frame_stats(VP9_COMP *cpi, ...@@ -235,7 +235,7 @@ static void update_mbgraph_frame_stats(VP9_COMP *cpi,
int mb_col, mb_row, offset = 0; int mb_col, mb_row, offset = 0;
int mb_y_offset = 0, arf_y_offset = 0, gld_y_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}; MV gld_top_mv = {0, 0};
MODE_INFO mi_local; MODE_INFO mi_local;
vp9_zero(mi_local); vp9_zero(mi_local);
...@@ -253,7 +253,7 @@ static void update_mbgraph_frame_stats(VP9_COMP *cpi, ...@@ -253,7 +253,7 @@ static void update_mbgraph_frame_stats(VP9_COMP *cpi,
mi_local.mbmi.ref_frame[1] = NONE; mi_local.mbmi.ref_frame[1] = NONE;
for (mb_row = 0; mb_row < cm->mb_rows; mb_row++) { for (mb_row = 0; mb_row < cm->mb_rows; mb_row++) {
MV arf_left_mv = arf_top_mv, gld_left_mv = gld_top_mv; MV gld_left_mv = gld_top_mv;
int mb_y_in_offset = mb_y_offset; int mb_y_in_offset = mb_y_offset;
int arf_y_in_offset = arf_y_offset; int arf_y_in_offset = arf_y_offset;
int gld_y_in_offset = gld_y_offset; int gld_y_in_offset = gld_y_offset;
...@@ -270,10 +270,8 @@ static void update_mbgraph_frame_stats(VP9_COMP *cpi, ...@@ -270,10 +270,8 @@ static void update_mbgraph_frame_stats(VP9_COMP *cpi,
update_mbgraph_mb_stats(cpi, mb_stats, buf, mb_y_in_offset, update_mbgraph_mb_stats(cpi, mb_stats, buf, mb_y_in_offset,
golden_ref, &gld_left_mv, alt_ref, golden_ref, &gld_left_mv, alt_ref,
mb_row, mb_col); mb_row, mb_col);
arf_left_mv = mb_stats->ref[ALTREF_FRAME].m.mv.as_mv;
gld_left_mv = mb_stats->ref[GOLDEN_FRAME].m.mv.as_mv; gld_left_mv = mb_stats->ref[GOLDEN_FRAME].m.mv.as_mv;
if (mb_col == 0) { if (mb_col == 0) {
arf_top_mv = arf_left_mv;
gld_top_mv = gld_left_mv; gld_top_mv = gld_left_mv;
} }
xd->left_available = 1; xd->left_available = 1;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment