vp9_rd_pick_intra_mode_sb(): set interp_filter to
SWITCHABLE_FILTERS. This is a partial fix for the build issues with Change 357240. Change-Id: I4e507c196175bae729a4f1397878ec8776b0146c
This commit is contained in:
parent
bdeb5febe4
commit
ed7786869a
@ -2751,6 +2751,12 @@ static void rd_pick_partition(VP9_COMP *cpi, ThreadData *td,
|
||||
if (cpi->sf.adaptive_motion_search)
|
||||
store_pred_mv(x, ctx);
|
||||
|
||||
// If the interp_filter is marked as SWITCHABLE_FILTERS, it was for an
|
||||
// intra block and used for context purposes.
|
||||
if (ctx->mic.interp_filter == SWITCHABLE_FILTERS) {
|
||||
ctx->mic.interp_filter = EIGHTTAP;
|
||||
}
|
||||
|
||||
// PARTITION_SPLIT
|
||||
// TODO(jingning): use the motion vectors given by the above search as
|
||||
// the starting point of motion search in the following partition type check.
|
||||
|
@ -2794,6 +2794,9 @@ void vp9_rd_pick_intra_mode_sb(VP9_COMP *cpi, MACROBLOCK *x,
|
||||
ctx->skip = 0;
|
||||
xd->mi[0]->ref_frame[0] = INTRA_FRAME;
|
||||
xd->mi[0]->ref_frame[1] = NONE;
|
||||
// Initialize interp_filter here so we do not have to check for inter block
|
||||
// modes in get_pred_context_switchable_interp()
|
||||
xd->mi[0]->interp_filter = SWITCHABLE_FILTERS;
|
||||
|
||||
if (bsize >= BLOCK_8X8) {
|
||||
if (rd_pick_intra_sby_mode(cpi, x, &rate_y, &rate_y_tokenonly,
|
||||
|
Loading…
x
Reference in New Issue
Block a user