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