Skip to content
Snippets Groups Projects
Commit 7e6d8516 authored by Jingning Han's avatar Jingning Han Committed by Gerrit Code Review
Browse files

Merge "Apply max intra block size condition to non-RD mode decision"

parents 03e7deae 5a4e17b4
No related branches found
No related tags found
No related merge requests found
......@@ -418,7 +418,7 @@ int64_t vp9_pick_inter_mode(VP9_COMP *cpi, MACROBLOCK *x,
// Perform intra prediction search, if the best SAD is above a certain
// threshold.
if (best_rd > inter_mode_thresh) {
if (best_rd > inter_mode_thresh && bsize < cpi->sf.max_intra_bsize) {
for (this_mode = DC_PRED; this_mode <= DC_PRED; ++this_mode) {
vp9_predict_intra_block(xd, 0, b_width_log2(bsize),
mbmi->tx_size, this_mode,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment