ref: 2f58b813bbe4a2dfd8a004288dc0655f4f4bb9c7
parent: 34d6077c9303ac4530d5d28edb39a354592d72c7
author: Adrian Grange <[email protected]>
date: Tue Oct 22 12:53:37 EDT 2013
Remove right_available member from VP9_COMP This member of VP9_COMP is no longer used, so I removed it. Change-Id: I3509f52756da4768a3e4581cec5ed5d2a70d5fb8
--- 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;
--- 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) {