michael@0: /* michael@0: Copyright (c) 2010 The WebM project authors. All Rights Reserved. michael@0: * michael@0: * Use of this source code is governed by a BSD-style license michael@0: * that can be found in the LICENSE file in the root of the source michael@0: * tree. An additional intellectual property rights grant can be found michael@0: * in the file PATENTS. All contributing project authors may michael@0: * be found in the AUTHORS file in the root of the source tree. michael@0: */ michael@0: michael@0: #include michael@0: michael@0: #include "vp9/common/vp9_common.h" michael@0: #include "vp9/common/vp9_entropy.h" michael@0: #include "vp9/common/vp9_entropymode.h" michael@0: #include "vp9/common/vp9_entropymv.h" michael@0: #include "vp9/common/vp9_findnearmv.h" michael@0: #include "vp9/common/vp9_mvref_common.h" michael@0: #include "vp9/common/vp9_pred_common.h" michael@0: #include "vp9/common/vp9_reconinter.h" michael@0: #include "vp9/common/vp9_seg_common.h" michael@0: michael@0: #include "vp9/decoder/vp9_decodemv.h" michael@0: #include "vp9/decoder/vp9_decodframe.h" michael@0: #include "vp9/decoder/vp9_onyxd_int.h" michael@0: #include "vp9/decoder/vp9_treereader.h" michael@0: michael@0: static MB_PREDICTION_MODE read_intra_mode(vp9_reader *r, const vp9_prob *p) { michael@0: return (MB_PREDICTION_MODE)treed_read(r, vp9_intra_mode_tree, p); michael@0: } michael@0: michael@0: static MB_PREDICTION_MODE read_intra_mode_y(VP9_COMMON *cm, vp9_reader *r, michael@0: int size_group) { michael@0: const MB_PREDICTION_MODE y_mode = read_intra_mode(r, michael@0: cm->fc.y_mode_prob[size_group]); michael@0: if (!cm->frame_parallel_decoding_mode) michael@0: ++cm->counts.y_mode[size_group][y_mode]; michael@0: return y_mode; michael@0: } michael@0: michael@0: static MB_PREDICTION_MODE read_intra_mode_uv(VP9_COMMON *cm, vp9_reader *r, michael@0: MB_PREDICTION_MODE y_mode) { michael@0: const MB_PREDICTION_MODE uv_mode = read_intra_mode(r, michael@0: cm->fc.uv_mode_prob[y_mode]); michael@0: if (!cm->frame_parallel_decoding_mode) michael@0: ++cm->counts.uv_mode[y_mode][uv_mode]; michael@0: return uv_mode; michael@0: } michael@0: michael@0: static MB_PREDICTION_MODE read_inter_mode(VP9_COMMON *cm, vp9_reader *r, michael@0: int ctx) { michael@0: const int mode = treed_read(r, vp9_inter_mode_tree, michael@0: cm->fc.inter_mode_probs[ctx]); michael@0: if (!cm->frame_parallel_decoding_mode) michael@0: ++cm->counts.inter_mode[ctx][mode]; michael@0: michael@0: return NEARESTMV + mode; michael@0: } michael@0: michael@0: static int read_segment_id(vp9_reader *r, const struct segmentation *seg) { michael@0: return treed_read(r, vp9_segment_tree, seg->tree_probs); michael@0: } michael@0: michael@0: static TX_SIZE read_selected_tx_size(VP9_COMMON *cm, MACROBLOCKD *xd, michael@0: TX_SIZE max_tx_size, vp9_reader *r) { michael@0: const int ctx = vp9_get_pred_context_tx_size(xd); michael@0: const vp9_prob *tx_probs = get_tx_probs(max_tx_size, ctx, &cm->fc.tx_probs); michael@0: TX_SIZE tx_size = vp9_read(r, tx_probs[0]); michael@0: if (tx_size != TX_4X4 && max_tx_size >= TX_16X16) { michael@0: tx_size += vp9_read(r, tx_probs[1]); michael@0: if (tx_size != TX_8X8 && max_tx_size >= TX_32X32) michael@0: tx_size += vp9_read(r, tx_probs[2]); michael@0: } michael@0: michael@0: if (!cm->frame_parallel_decoding_mode) michael@0: ++get_tx_counts(max_tx_size, ctx, &cm->counts.tx)[tx_size]; michael@0: return tx_size; michael@0: } michael@0: michael@0: static TX_SIZE read_tx_size(VP9_COMMON *cm, MACROBLOCKD *xd, TX_MODE tx_mode, michael@0: BLOCK_SIZE bsize, int allow_select, vp9_reader *r) { michael@0: const TX_SIZE max_tx_size = max_txsize_lookup[bsize]; michael@0: if (allow_select && tx_mode == TX_MODE_SELECT && bsize >= BLOCK_8X8) michael@0: return read_selected_tx_size(cm, xd, max_tx_size, r); michael@0: else michael@0: return MIN(max_tx_size, tx_mode_to_biggest_tx_size[tx_mode]); michael@0: } michael@0: michael@0: static void set_segment_id(VP9_COMMON *cm, BLOCK_SIZE bsize, michael@0: int mi_row, int mi_col, int segment_id) { michael@0: const int mi_offset = mi_row * cm->mi_cols + mi_col; michael@0: const int bw = num_8x8_blocks_wide_lookup[bsize]; michael@0: const int bh = num_8x8_blocks_high_lookup[bsize]; michael@0: const int xmis = MIN(cm->mi_cols - mi_col, bw); michael@0: const int ymis = MIN(cm->mi_rows - mi_row, bh); michael@0: int x, y; michael@0: michael@0: assert(segment_id >= 0 && segment_id < MAX_SEGMENTS); michael@0: michael@0: for (y = 0; y < ymis; y++) michael@0: for (x = 0; x < xmis; x++) michael@0: cm->last_frame_seg_map[mi_offset + y * cm->mi_cols + x] = segment_id; michael@0: } michael@0: michael@0: static int read_intra_segment_id(VP9_COMMON *const cm, MACROBLOCKD *const xd, michael@0: int mi_row, int mi_col, michael@0: vp9_reader *r) { michael@0: struct segmentation *const seg = &cm->seg; michael@0: const BLOCK_SIZE bsize = xd->mi_8x8[0]->mbmi.sb_type; michael@0: int segment_id; michael@0: michael@0: if (!seg->enabled) michael@0: return 0; // Default for disabled segmentation michael@0: michael@0: if (!seg->update_map) michael@0: return 0; michael@0: michael@0: segment_id = read_segment_id(r, seg); michael@0: set_segment_id(cm, bsize, mi_row, mi_col, segment_id); michael@0: return segment_id; michael@0: } michael@0: michael@0: static int read_inter_segment_id(VP9_COMMON *const cm, MACROBLOCKD *const xd, michael@0: int mi_row, int mi_col, vp9_reader *r) { michael@0: struct segmentation *const seg = &cm->seg; michael@0: const BLOCK_SIZE bsize = xd->mi_8x8[0]->mbmi.sb_type; michael@0: int pred_segment_id, segment_id; michael@0: michael@0: if (!seg->enabled) michael@0: return 0; // Default for disabled segmentation michael@0: michael@0: pred_segment_id = vp9_get_segment_id(cm, cm->last_frame_seg_map, michael@0: bsize, mi_row, mi_col); michael@0: if (!seg->update_map) michael@0: return pred_segment_id; michael@0: michael@0: if (seg->temporal_update) { michael@0: const vp9_prob pred_prob = vp9_get_pred_prob_seg_id(seg, xd); michael@0: const int pred_flag = vp9_read(r, pred_prob); michael@0: vp9_set_pred_flag_seg_id(xd, pred_flag); michael@0: segment_id = pred_flag ? pred_segment_id michael@0: : read_segment_id(r, seg); michael@0: } else { michael@0: segment_id = read_segment_id(r, seg); michael@0: } michael@0: set_segment_id(cm, bsize, mi_row, mi_col, segment_id); michael@0: return segment_id; michael@0: } michael@0: michael@0: static int read_skip_coeff(VP9_COMMON *cm, const MACROBLOCKD *xd, michael@0: int segment_id, vp9_reader *r) { michael@0: if (vp9_segfeature_active(&cm->seg, segment_id, SEG_LVL_SKIP)) { michael@0: return 1; michael@0: } else { michael@0: const int ctx = vp9_get_pred_context_mbskip(xd); michael@0: const int skip = vp9_read(r, cm->fc.mbskip_probs[ctx]); michael@0: if (!cm->frame_parallel_decoding_mode) michael@0: ++cm->counts.mbskip[ctx][skip]; michael@0: return skip; michael@0: } michael@0: } michael@0: michael@0: static void read_intra_frame_mode_info(VP9_COMMON *const cm, michael@0: MACROBLOCKD *const xd, michael@0: MODE_INFO *const m, michael@0: int mi_row, int mi_col, vp9_reader *r) { michael@0: MB_MODE_INFO *const mbmi = &m->mbmi; michael@0: const BLOCK_SIZE bsize = mbmi->sb_type; michael@0: const MODE_INFO *above_mi = xd->mi_8x8[-cm->mode_info_stride]; michael@0: const MODE_INFO *left_mi = xd->left_available ? xd->mi_8x8[-1] : NULL; michael@0: michael@0: mbmi->segment_id = read_intra_segment_id(cm, xd, mi_row, mi_col, r); michael@0: mbmi->skip_coeff = read_skip_coeff(cm, xd, mbmi->segment_id, r); michael@0: mbmi->tx_size = read_tx_size(cm, xd, cm->tx_mode, bsize, 1, r); michael@0: mbmi->ref_frame[0] = INTRA_FRAME; michael@0: mbmi->ref_frame[1] = NONE; michael@0: michael@0: if (bsize >= BLOCK_8X8) { michael@0: const MB_PREDICTION_MODE A = above_block_mode(m, above_mi, 0); michael@0: const MB_PREDICTION_MODE L = left_block_mode(m, left_mi, 0); michael@0: mbmi->mode = read_intra_mode(r, vp9_kf_y_mode_prob[A][L]); michael@0: } else { michael@0: // Only 4x4, 4x8, 8x4 blocks michael@0: const int num_4x4_w = num_4x4_blocks_wide_lookup[bsize]; // 1 or 2 michael@0: const int num_4x4_h = num_4x4_blocks_high_lookup[bsize]; // 1 or 2 michael@0: int idx, idy; michael@0: michael@0: for (idy = 0; idy < 2; idy += num_4x4_h) { michael@0: for (idx = 0; idx < 2; idx += num_4x4_w) { michael@0: const int ib = idy * 2 + idx; michael@0: const MB_PREDICTION_MODE A = above_block_mode(m, above_mi, ib); michael@0: const MB_PREDICTION_MODE L = left_block_mode(m, left_mi, ib); michael@0: const MB_PREDICTION_MODE b_mode = read_intra_mode(r, michael@0: vp9_kf_y_mode_prob[A][L]); michael@0: m->bmi[ib].as_mode = b_mode; michael@0: if (num_4x4_h == 2) michael@0: m->bmi[ib + 2].as_mode = b_mode; michael@0: if (num_4x4_w == 2) michael@0: m->bmi[ib + 1].as_mode = b_mode; michael@0: } michael@0: } michael@0: michael@0: mbmi->mode = m->bmi[3].as_mode; michael@0: } michael@0: michael@0: mbmi->uv_mode = read_intra_mode(r, vp9_kf_uv_mode_prob[mbmi->mode]); michael@0: } michael@0: michael@0: static int read_mv_component(vp9_reader *r, michael@0: const nmv_component *mvcomp, int usehp) { michael@0: int mag, d, fr, hp; michael@0: const int sign = vp9_read(r, mvcomp->sign); michael@0: const int mv_class = treed_read(r, vp9_mv_class_tree, mvcomp->classes); michael@0: const int class0 = mv_class == MV_CLASS_0; michael@0: michael@0: // Integer part michael@0: if (class0) { michael@0: d = treed_read(r, vp9_mv_class0_tree, mvcomp->class0); michael@0: } else { michael@0: int i; michael@0: const int n = mv_class + CLASS0_BITS - 1; // number of bits michael@0: michael@0: d = 0; michael@0: for (i = 0; i < n; ++i) michael@0: d |= vp9_read(r, mvcomp->bits[i]) << i; michael@0: } michael@0: michael@0: // Fractional part michael@0: fr = treed_read(r, vp9_mv_fp_tree, michael@0: class0 ? mvcomp->class0_fp[d] : mvcomp->fp); michael@0: michael@0: michael@0: // High precision part (if hp is not used, the default value of the hp is 1) michael@0: hp = usehp ? vp9_read(r, class0 ? mvcomp->class0_hp : mvcomp->hp) michael@0: : 1; michael@0: michael@0: // Result michael@0: mag = vp9_get_mv_mag(mv_class, (d << 3) | (fr << 1) | hp) + 1; michael@0: return sign ? -mag : mag; michael@0: } michael@0: michael@0: static INLINE void read_mv(vp9_reader *r, MV *mv, const MV *ref, michael@0: const nmv_context *ctx, michael@0: nmv_context_counts *counts, int allow_hp) { michael@0: const MV_JOINT_TYPE j = treed_read(r, vp9_mv_joint_tree, ctx->joints); michael@0: const int use_hp = allow_hp && vp9_use_mv_hp(ref); michael@0: MV diff = {0, 0}; michael@0: michael@0: if (mv_joint_vertical(j)) michael@0: diff.row = read_mv_component(r, &ctx->comps[0], use_hp); michael@0: michael@0: if (mv_joint_horizontal(j)) michael@0: diff.col = read_mv_component(r, &ctx->comps[1], use_hp); michael@0: michael@0: vp9_inc_mv(&diff, counts); michael@0: michael@0: mv->row = ref->row + diff.row; michael@0: mv->col = ref->col + diff.col; michael@0: } michael@0: michael@0: static COMPPREDMODE_TYPE read_reference_mode(VP9_COMMON *cm, michael@0: const MACROBLOCKD *xd, michael@0: vp9_reader *r) { michael@0: const int ctx = vp9_get_pred_context_comp_inter_inter(cm, xd); michael@0: const int mode = vp9_read(r, cm->fc.comp_inter_prob[ctx]); michael@0: if (!cm->frame_parallel_decoding_mode) michael@0: ++cm->counts.comp_inter[ctx][mode]; michael@0: return mode; // SINGLE_PREDICTION_ONLY or COMP_PREDICTION_ONLY michael@0: } michael@0: michael@0: // Read the referncence frame michael@0: static void read_ref_frames(VP9_COMMON *const cm, MACROBLOCKD *const xd, michael@0: vp9_reader *r, michael@0: int segment_id, MV_REFERENCE_FRAME ref_frame[2]) { michael@0: FRAME_CONTEXT *const fc = &cm->fc; michael@0: FRAME_COUNTS *const counts = &cm->counts; michael@0: michael@0: if (vp9_segfeature_active(&cm->seg, segment_id, SEG_LVL_REF_FRAME)) { michael@0: ref_frame[0] = vp9_get_segdata(&cm->seg, segment_id, SEG_LVL_REF_FRAME); michael@0: ref_frame[1] = NONE; michael@0: } else { michael@0: const COMPPREDMODE_TYPE mode = (cm->comp_pred_mode == HYBRID_PREDICTION) michael@0: ? read_reference_mode(cm, xd, r) michael@0: : cm->comp_pred_mode; michael@0: michael@0: // FIXME(rbultje) I'm pretty sure this breaks segmentation ref frame coding michael@0: if (mode == COMP_PREDICTION_ONLY) { michael@0: const int idx = cm->ref_frame_sign_bias[cm->comp_fixed_ref]; michael@0: const int ctx = vp9_get_pred_context_comp_ref_p(cm, xd); michael@0: const int bit = vp9_read(r, fc->comp_ref_prob[ctx]); michael@0: if (!cm->frame_parallel_decoding_mode) michael@0: ++counts->comp_ref[ctx][bit]; michael@0: ref_frame[idx] = cm->comp_fixed_ref; michael@0: ref_frame[!idx] = cm->comp_var_ref[bit]; michael@0: } else if (mode == SINGLE_PREDICTION_ONLY) { michael@0: const int ctx0 = vp9_get_pred_context_single_ref_p1(xd); michael@0: const int bit0 = vp9_read(r, fc->single_ref_prob[ctx0][0]); michael@0: if (!cm->frame_parallel_decoding_mode) michael@0: ++counts->single_ref[ctx0][0][bit0]; michael@0: if (bit0) { michael@0: const int ctx1 = vp9_get_pred_context_single_ref_p2(xd); michael@0: const int bit1 = vp9_read(r, fc->single_ref_prob[ctx1][1]); michael@0: if (!cm->frame_parallel_decoding_mode) michael@0: ++counts->single_ref[ctx1][1][bit1]; michael@0: ref_frame[0] = bit1 ? ALTREF_FRAME : GOLDEN_FRAME; michael@0: } else { michael@0: ref_frame[0] = LAST_FRAME; michael@0: } michael@0: michael@0: ref_frame[1] = NONE; michael@0: } else { michael@0: assert(!"Invalid prediction mode."); michael@0: } michael@0: } michael@0: } michael@0: michael@0: michael@0: static INLINE INTERPOLATION_TYPE read_switchable_filter_type( michael@0: VP9_COMMON *const cm, MACROBLOCKD *const xd, vp9_reader *r) { michael@0: const int ctx = vp9_get_pred_context_switchable_interp(xd); michael@0: const int type = treed_read(r, vp9_switchable_interp_tree, michael@0: cm->fc.switchable_interp_prob[ctx]); michael@0: if (!cm->frame_parallel_decoding_mode) michael@0: ++cm->counts.switchable_interp[ctx][type]; michael@0: return type; michael@0: } michael@0: michael@0: static void read_intra_block_mode_info(VP9_COMMON *const cm, MODE_INFO *mi, michael@0: vp9_reader *r) { michael@0: MB_MODE_INFO *const mbmi = &mi->mbmi; michael@0: const BLOCK_SIZE bsize = mi->mbmi.sb_type; michael@0: michael@0: mbmi->ref_frame[0] = INTRA_FRAME; michael@0: mbmi->ref_frame[1] = NONE; michael@0: michael@0: if (bsize >= BLOCK_8X8) { michael@0: mbmi->mode = read_intra_mode_y(cm, r, size_group_lookup[bsize]); michael@0: } else { michael@0: // Only 4x4, 4x8, 8x4 blocks michael@0: const int num_4x4_w = num_4x4_blocks_wide_lookup[bsize]; // 1 or 2 michael@0: const int num_4x4_h = num_4x4_blocks_high_lookup[bsize]; // 1 or 2 michael@0: int idx, idy; michael@0: michael@0: for (idy = 0; idy < 2; idy += num_4x4_h) { michael@0: for (idx = 0; idx < 2; idx += num_4x4_w) { michael@0: const int ib = idy * 2 + idx; michael@0: const int b_mode = read_intra_mode_y(cm, r, 0); michael@0: mi->bmi[ib].as_mode = b_mode; michael@0: if (num_4x4_h == 2) michael@0: mi->bmi[ib + 2].as_mode = b_mode; michael@0: if (num_4x4_w == 2) michael@0: mi->bmi[ib + 1].as_mode = b_mode; michael@0: } michael@0: } michael@0: mbmi->mode = mi->bmi[3].as_mode; michael@0: } michael@0: michael@0: mbmi->uv_mode = read_intra_mode_uv(cm, r, mbmi->mode); michael@0: } michael@0: michael@0: static INLINE int assign_mv(VP9_COMMON *cm, MB_PREDICTION_MODE mode, michael@0: int_mv mv[2], int_mv best_mv[2], michael@0: int_mv nearest_mv[2], int_mv near_mv[2], michael@0: int is_compound, int allow_hp, vp9_reader *r) { michael@0: int i; michael@0: int ret = 1; michael@0: michael@0: switch (mode) { michael@0: case NEWMV: { michael@0: nmv_context_counts *const mv_counts = cm->frame_parallel_decoding_mode ? michael@0: NULL : &cm->counts.mv; michael@0: read_mv(r, &mv[0].as_mv, &best_mv[0].as_mv, michael@0: &cm->fc.nmvc, mv_counts, allow_hp); michael@0: if (is_compound) michael@0: read_mv(r, &mv[1].as_mv, &best_mv[1].as_mv, michael@0: &cm->fc.nmvc, mv_counts, allow_hp); michael@0: for (i = 0; i < 1 + is_compound; ++i) { michael@0: ret = ret && mv[i].as_mv.row < MV_UPP && mv[i].as_mv.row > MV_LOW; michael@0: ret = ret && mv[i].as_mv.col < MV_UPP && mv[i].as_mv.col > MV_LOW; michael@0: } michael@0: break; michael@0: } michael@0: case NEARESTMV: { michael@0: mv[0].as_int = nearest_mv[0].as_int; michael@0: if (is_compound) mv[1].as_int = nearest_mv[1].as_int; michael@0: break; michael@0: } michael@0: case NEARMV: { michael@0: mv[0].as_int = near_mv[0].as_int; michael@0: if (is_compound) mv[1].as_int = near_mv[1].as_int; michael@0: break; michael@0: } michael@0: case ZEROMV: { michael@0: mv[0].as_int = 0; michael@0: if (is_compound) mv[1].as_int = 0; michael@0: break; michael@0: } michael@0: default: { michael@0: return 0; michael@0: } michael@0: } michael@0: return ret; michael@0: } michael@0: michael@0: static int read_is_inter_block(VP9_COMMON *const cm, MACROBLOCKD *const xd, michael@0: int segment_id, vp9_reader *r) { michael@0: if (vp9_segfeature_active(&cm->seg, segment_id, SEG_LVL_REF_FRAME)) { michael@0: return vp9_get_segdata(&cm->seg, segment_id, SEG_LVL_REF_FRAME) != michael@0: INTRA_FRAME; michael@0: } else { michael@0: const int ctx = vp9_get_pred_context_intra_inter(xd); michael@0: const int is_inter = vp9_read(r, vp9_get_pred_prob_intra_inter(cm, xd)); michael@0: if (!cm->frame_parallel_decoding_mode) michael@0: ++cm->counts.intra_inter[ctx][is_inter]; michael@0: return is_inter; michael@0: } michael@0: } michael@0: michael@0: static void read_inter_block_mode_info(VP9_COMMON *const cm, michael@0: MACROBLOCKD *const xd, michael@0: const TileInfo *const tile, michael@0: MODE_INFO *const mi, michael@0: int mi_row, int mi_col, vp9_reader *r) { michael@0: MB_MODE_INFO *const mbmi = &mi->mbmi; michael@0: const BLOCK_SIZE bsize = mbmi->sb_type; michael@0: const int allow_hp = cm->allow_high_precision_mv; michael@0: michael@0: int_mv nearest[2], nearmv[2], best[2]; michael@0: uint8_t inter_mode_ctx; michael@0: MV_REFERENCE_FRAME ref0; michael@0: int is_compound; michael@0: michael@0: mbmi->uv_mode = DC_PRED; michael@0: read_ref_frames(cm, xd, r, mbmi->segment_id, mbmi->ref_frame); michael@0: ref0 = mbmi->ref_frame[0]; michael@0: is_compound = has_second_ref(mbmi); michael@0: michael@0: vp9_find_mv_refs(cm, xd, tile, mi, xd->last_mi, ref0, mbmi->ref_mvs[ref0], michael@0: mi_row, mi_col); michael@0: michael@0: inter_mode_ctx = mbmi->mode_context[ref0]; michael@0: michael@0: if (vp9_segfeature_active(&cm->seg, mbmi->segment_id, SEG_LVL_SKIP)) { michael@0: mbmi->mode = ZEROMV; michael@0: if (bsize < BLOCK_8X8) { michael@0: vpx_internal_error(&cm->error, VPX_CODEC_UNSUP_BITSTREAM, michael@0: "Invalid usage of segement feature on small blocks"); michael@0: return; michael@0: } michael@0: } else { michael@0: if (bsize >= BLOCK_8X8) michael@0: mbmi->mode = read_inter_mode(cm, r, inter_mode_ctx); michael@0: } michael@0: michael@0: // nearest, nearby michael@0: if (bsize < BLOCK_8X8 || mbmi->mode != ZEROMV) { michael@0: vp9_find_best_ref_mvs(xd, allow_hp, michael@0: mbmi->ref_mvs[ref0], &nearest[0], &nearmv[0]); michael@0: best[0].as_int = nearest[0].as_int; michael@0: } michael@0: michael@0: if (is_compound) { michael@0: const MV_REFERENCE_FRAME ref1 = mbmi->ref_frame[1]; michael@0: vp9_find_mv_refs(cm, xd, tile, mi, xd->last_mi, michael@0: ref1, mbmi->ref_mvs[ref1], mi_row, mi_col); michael@0: michael@0: if (bsize < BLOCK_8X8 || mbmi->mode != ZEROMV) { michael@0: vp9_find_best_ref_mvs(xd, allow_hp, michael@0: mbmi->ref_mvs[ref1], &nearest[1], &nearmv[1]); michael@0: best[1].as_int = nearest[1].as_int; michael@0: } michael@0: } michael@0: michael@0: mbmi->interp_filter = (cm->mcomp_filter_type == SWITCHABLE) michael@0: ? read_switchable_filter_type(cm, xd, r) michael@0: : cm->mcomp_filter_type; michael@0: michael@0: if (bsize < BLOCK_8X8) { michael@0: const int num_4x4_w = num_4x4_blocks_wide_lookup[bsize]; // 1 or 2 michael@0: const int num_4x4_h = num_4x4_blocks_high_lookup[bsize]; // 1 or 2 michael@0: int idx, idy; michael@0: int b_mode; michael@0: for (idy = 0; idy < 2; idy += num_4x4_h) { michael@0: for (idx = 0; idx < 2; idx += num_4x4_w) { michael@0: int_mv block[2]; michael@0: const int j = idy * 2 + idx; michael@0: b_mode = read_inter_mode(cm, r, inter_mode_ctx); michael@0: michael@0: if (b_mode == NEARESTMV || b_mode == NEARMV) { michael@0: vp9_append_sub8x8_mvs_for_idx(cm, xd, tile, &nearest[0], michael@0: &nearmv[0], j, 0, michael@0: mi_row, mi_col); michael@0: michael@0: if (is_compound) michael@0: vp9_append_sub8x8_mvs_for_idx(cm, xd, tile, &nearest[1], michael@0: &nearmv[1], j, 1, michael@0: mi_row, mi_col); michael@0: } michael@0: michael@0: if (!assign_mv(cm, b_mode, block, best, nearest, nearmv, michael@0: is_compound, allow_hp, r)) { michael@0: xd->corrupted |= 1; michael@0: break; michael@0: }; michael@0: michael@0: michael@0: mi->bmi[j].as_mv[0].as_int = block[0].as_int; michael@0: if (is_compound) michael@0: mi->bmi[j].as_mv[1].as_int = block[1].as_int; michael@0: michael@0: if (num_4x4_h == 2) michael@0: mi->bmi[j + 2] = mi->bmi[j]; michael@0: if (num_4x4_w == 2) michael@0: mi->bmi[j + 1] = mi->bmi[j]; michael@0: } michael@0: } michael@0: michael@0: mi->mbmi.mode = b_mode; michael@0: michael@0: mbmi->mv[0].as_int = mi->bmi[3].as_mv[0].as_int; michael@0: mbmi->mv[1].as_int = mi->bmi[3].as_mv[1].as_int; michael@0: } else { michael@0: xd->corrupted |= !assign_mv(cm, mbmi->mode, mbmi->mv, michael@0: best, nearest, nearmv, michael@0: is_compound, allow_hp, r); michael@0: } michael@0: } michael@0: michael@0: static void read_inter_frame_mode_info(VP9_COMMON *const cm, michael@0: MACROBLOCKD *const xd, michael@0: const TileInfo *const tile, michael@0: MODE_INFO *const mi, michael@0: int mi_row, int mi_col, vp9_reader *r) { michael@0: MB_MODE_INFO *const mbmi = &mi->mbmi; michael@0: int inter_block; michael@0: michael@0: mbmi->mv[0].as_int = 0; michael@0: mbmi->mv[1].as_int = 0; michael@0: mbmi->segment_id = read_inter_segment_id(cm, xd, mi_row, mi_col, r); michael@0: mbmi->skip_coeff = read_skip_coeff(cm, xd, mbmi->segment_id, r); michael@0: inter_block = read_is_inter_block(cm, xd, mbmi->segment_id, r); michael@0: mbmi->tx_size = read_tx_size(cm, xd, cm->tx_mode, mbmi->sb_type, michael@0: !mbmi->skip_coeff || !inter_block, r); michael@0: michael@0: if (inter_block) michael@0: read_inter_block_mode_info(cm, xd, tile, mi, mi_row, mi_col, r); michael@0: else michael@0: read_intra_block_mode_info(cm, mi, r); michael@0: } michael@0: michael@0: void vp9_read_mode_info(VP9_COMMON *cm, MACROBLOCKD *xd, michael@0: const TileInfo *const tile, michael@0: int mi_row, int mi_col, vp9_reader *r) { michael@0: MODE_INFO *const mi = xd->mi_8x8[0]; michael@0: const BLOCK_SIZE bsize = mi->mbmi.sb_type; michael@0: const int bw = num_8x8_blocks_wide_lookup[bsize]; michael@0: const int bh = num_8x8_blocks_high_lookup[bsize]; michael@0: const int y_mis = MIN(bh, cm->mi_rows - mi_row); michael@0: const int x_mis = MIN(bw, cm->mi_cols - mi_col); michael@0: int x, y, z; michael@0: michael@0: if (frame_is_intra_only(cm)) michael@0: read_intra_frame_mode_info(cm, xd, mi, mi_row, mi_col, r); michael@0: else michael@0: read_inter_frame_mode_info(cm, xd, tile, mi, mi_row, mi_col, r); michael@0: michael@0: for (y = 0, z = 0; y < y_mis; y++, z += cm->mode_info_stride) { michael@0: for (x = !y; x < x_mis; x++) { michael@0: xd->mi_8x8[z + x] = mi; michael@0: } michael@0: } michael@0: }