Merge "Change break statement in a 2d loop to a return statement."

This commit is contained in:
Yaowu Xu 2013-07-18 17:49:58 -07:00 committed by Gerrit Code Review
commit 51972d1279

View File

@ -1368,13 +1368,10 @@ static int64_t rd_pick_intra4x4mby_modes(VP9_COMP *cpi, MACROBLOCK *mb,
mic->bmi[i + j].as_mode = best_mode;
if (total_rd >= best_rd)
break;
return INT64_MAX;
}
}
if (total_rd >= best_rd)
return INT64_MAX;
*Rate = cost;
*rate_y = tot_rate_y;
*Distortion = distortion;