vp9_ethread: include a pointer to mb in VP9_COMP
Modified VP9_COMP struct to include MACROBLOCK *mb. This change makes it feasible in multi-thread case to allocate a mb for each thread. Change-Id: I624d6d1aa9c132362200753e5d90b581b1738d6e
This commit is contained in:
@@ -450,7 +450,7 @@ static void set_first_pass_params(VP9_COMP *cpi) {
|
||||
|
||||
void vp9_first_pass(VP9_COMP *cpi, const struct lookahead_entry *source) {
|
||||
int mb_row, mb_col;
|
||||
MACROBLOCK *const x = &cpi->mb;
|
||||
MACROBLOCK *const x = cpi->mb;
|
||||
VP9_COMMON *const cm = &cpi->common;
|
||||
MACROBLOCKD *const xd = &x->e_mbd;
|
||||
TileInfo tile;
|
||||
|
||||
Reference in New Issue
Block a user