Remove right_available member from VP9_COMP This member of VP9_COMP is no longer used, so I removed it. Change-Id: I3509f52756da4768a3e4581cec5ed5d2a70d5fb8
diff --git a/vp9/common/vp9_blockd.h b/vp9/common/vp9_blockd.h index 8155447..7d9a8b9 100644 --- a/vp9/common/vp9_blockd.h +++ b/vp9/common/vp9_blockd.h
@@ -204,7 +204,6 @@ int up_available; int left_available; - int right_available; /* Distance of MB away from frame edges */ int mb_to_left_edge;
diff --git a/vp9/common/vp9_onyxc_int.h b/vp9/common/vp9_onyxc_int.h index 65e4629..f2244e5 100644 --- a/vp9/common/vp9_onyxc_int.h +++ b/vp9/common/vp9_onyxc_int.h
@@ -281,7 +281,6 @@ // Are edges available for intra prediction? xd->up_available = (mi_row != 0); xd->left_available = (mi_col > cm->cur_tile_mi_col_start); - xd->right_available = (mi_col + bw < cm->cur_tile_mi_col_end); } static void set_prev_mi(VP9_COMMON *cm) {