2010-05-18 17:58:33 +02:00
|
|
|
/*
|
2010-09-09 14:16:39 +02: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
|
|
|
*/
|
|
|
|
|
|
|
|
|
2012-11-30 01:36:10 +01:00
|
|
|
#ifndef VP9_COMMON_VP9_BLOCKD_H_
|
|
|
|
#define VP9_COMMON_VP9_BLOCKD_H_
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-12-23 16:20:10 +01:00
|
|
|
#include "./vpx_config.h"
|
2013-07-10 21:29:43 +02:00
|
|
|
|
|
|
|
#include "vpx_ports/mem.h"
|
2010-05-18 17:58:33 +02:00
|
|
|
#include "vpx_scale/yv12config.h"
|
2013-07-10 21:29:43 +02:00
|
|
|
|
|
|
|
#include "vp9/common/vp9_common_data.h"
|
2015-05-22 20:19:51 +02:00
|
|
|
#include "vp9/common/vp9_entropy.h"
|
|
|
|
#include "vp9/common/vp9_entropymode.h"
|
2012-11-28 19:41:40 +01:00
|
|
|
#include "vp9/common/vp9_mv.h"
|
2013-08-09 23:07:09 +02:00
|
|
|
#include "vp9/common/vp9_scale.h"
|
2015-05-22 20:19:51 +02:00
|
|
|
#include "vp9/common/vp9_seg_common.h"
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-01-18 21:16:11 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2014-10-08 00:00:22 +02:00
|
|
|
#define MAX_MB_PLANE 3
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
typedef enum {
|
|
|
|
KEY_FRAME = 0,
|
2013-06-03 19:39:40 +02:00
|
|
|
INTER_FRAME = 1,
|
2013-10-19 02:44:19 +02:00
|
|
|
FRAME_TYPES,
|
2010-05-18 17:58:33 +02:00
|
|
|
} FRAME_TYPE;
|
|
|
|
|
2014-04-12 00:26:24 +02:00
|
|
|
static INLINE int is_inter_mode(PREDICTION_MODE mode) {
|
2013-05-30 21:49:38 +02:00
|
|
|
return mode >= NEARESTMV && mode <= NEWMV;
|
2013-04-24 21:14:58 +02:00
|
|
|
}
|
|
|
|
|
2010-05-18 17:58:33 +02:00
|
|
|
/* For keyframes, intra block modes are predicted by the (already decoded)
|
|
|
|
modes for the Y blocks to the left and above us; for interframes, there
|
|
|
|
is a single probability table. */
|
|
|
|
|
2013-10-03 02:05:31 +02:00
|
|
|
typedef struct {
|
2014-04-12 00:26:24 +02:00
|
|
|
PREDICTION_MODE as_mode;
|
2013-02-09 04:46:36 +01:00
|
|
|
int_mv as_mv[2]; // first, second inter predictor motion vectors
|
2013-10-03 02:05:31 +02:00
|
|
|
} b_mode_info;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-09-11 19:54:37 +02:00
|
|
|
// Note that the rate-distortion optimization loop, bit-stream writer, and
|
|
|
|
// decoder implementation modules critically rely on the enum entry values
|
|
|
|
// specified herein. They should be refactored concurrently.
|
2012-07-14 00:21:29 +02:00
|
|
|
typedef enum {
|
2012-11-07 15:50:25 +01:00
|
|
|
NONE = -1,
|
2012-07-14 00:21:29 +02:00
|
|
|
INTRA_FRAME = 0,
|
|
|
|
LAST_FRAME = 1,
|
|
|
|
GOLDEN_FRAME = 2,
|
|
|
|
ALTREF_FRAME = 3,
|
|
|
|
MAX_REF_FRAMES = 4
|
2010-05-18 17:58:33 +02:00
|
|
|
} MV_REFERENCE_FRAME;
|
|
|
|
|
2013-08-13 18:47:40 +02:00
|
|
|
// This structure now relates to 8x8 block regions.
|
2012-07-14 00:21:29 +02:00
|
|
|
typedef struct {
|
2014-03-29 01:43:50 +01:00
|
|
|
// Common for both INTER and INTRA blocks
|
|
|
|
BLOCK_SIZE sb_type;
|
2014-04-12 00:26:24 +02:00
|
|
|
PREDICTION_MODE mode;
|
2013-08-28 04:47:53 +02:00
|
|
|
TX_SIZE tx_size;
|
2014-08-01 15:41:24 +02:00
|
|
|
int8_t skip;
|
|
|
|
int8_t segment_id;
|
|
|
|
int8_t seg_id_predicted; // valid only when temporal_update is enabled
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-03-29 01:43:50 +01:00
|
|
|
// Only for INTRA blocks
|
2014-04-12 00:26:24 +02:00
|
|
|
PREDICTION_MODE uv_mode;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-03-29 01:43:50 +01:00
|
|
|
// Only for INTER blocks
|
|
|
|
MV_REFERENCE_FRAME ref_frame[2];
|
|
|
|
int_mv mv[2];
|
|
|
|
int_mv ref_mvs[MAX_REF_FRAMES][MAX_MV_REF_CANDIDATES];
|
|
|
|
uint8_t mode_context[MAX_REF_FRAMES];
|
2014-01-24 21:26:57 +01:00
|
|
|
INTERP_FILTER interp_filter;
|
2014-10-16 15:00:54 +02:00
|
|
|
|
2010-05-18 17:58:33 +02:00
|
|
|
} MB_MODE_INFO;
|
|
|
|
|
2014-09-12 00:37:08 +02:00
|
|
|
typedef struct MODE_INFO {
|
2012-07-14 00:21:29 +02:00
|
|
|
MB_MODE_INFO mbmi;
|
2013-10-03 02:05:31 +02:00
|
|
|
b_mode_info bmi[4];
|
2010-05-18 17:58:33 +02:00
|
|
|
} MODE_INFO;
|
|
|
|
|
2014-04-12 00:26:24 +02:00
|
|
|
static INLINE PREDICTION_MODE get_y_mode(const MODE_INFO *mi, int block) {
|
2014-02-28 01:05:50 +01:00
|
|
|
return mi->mbmi.sb_type < BLOCK_8X8 ? mi->bmi[block].as_mode
|
|
|
|
: mi->mbmi.mode;
|
|
|
|
}
|
|
|
|
|
2013-08-20 03:39:34 +02:00
|
|
|
static INLINE int is_inter_block(const MB_MODE_INFO *mbmi) {
|
2013-08-03 01:25:33 +02:00
|
|
|
return mbmi->ref_frame[0] > INTRA_FRAME;
|
|
|
|
}
|
|
|
|
|
2013-08-20 03:39:34 +02:00
|
|
|
static INLINE int has_second_ref(const MB_MODE_INFO *mbmi) {
|
|
|
|
return mbmi->ref_frame[1] > INTRA_FRAME;
|
|
|
|
}
|
|
|
|
|
2014-04-12 00:26:24 +02:00
|
|
|
PREDICTION_MODE vp9_left_block_mode(const MODE_INFO *cur_mi,
|
|
|
|
const MODE_INFO *left_mi, int b);
|
2013-11-21 20:43:53 +01:00
|
|
|
|
2014-04-12 00:26:24 +02:00
|
|
|
PREDICTION_MODE vp9_above_block_mode(const MODE_INFO *cur_mi,
|
|
|
|
const MODE_INFO *above_mi, int b);
|
2013-11-21 20:43:53 +01:00
|
|
|
|
2013-06-22 00:34:29 +02:00
|
|
|
enum mv_precision {
|
|
|
|
MV_PRECISION_Q3,
|
|
|
|
MV_PRECISION_Q4
|
|
|
|
};
|
|
|
|
|
2013-04-20 00:52:17 +02:00
|
|
|
struct buf_2d {
|
|
|
|
uint8_t *buf;
|
|
|
|
int stride;
|
|
|
|
};
|
|
|
|
|
2013-04-23 17:26:10 +02:00
|
|
|
struct macroblockd_plane {
|
2014-09-03 01:34:09 +02:00
|
|
|
tran_low_t *dqcoeff;
|
2013-04-06 00:54:59 +02:00
|
|
|
PLANE_TYPE plane_type;
|
|
|
|
int subsampling_x;
|
|
|
|
int subsampling_y;
|
2013-04-20 00:52:17 +02:00
|
|
|
struct buf_2d dst;
|
|
|
|
struct buf_2d pre[2];
|
2013-04-29 19:37:25 +02:00
|
|
|
ENTROPY_CONTEXT *above_context;
|
|
|
|
ENTROPY_CONTEXT *left_context;
|
2015-06-01 17:18:27 +02:00
|
|
|
int16_t seg_dequant[MAX_SEGMENTS][2];
|
|
|
|
|
|
|
|
// encoder
|
|
|
|
const int16_t *dequant;
|
2013-04-02 23:50:40 +02:00
|
|
|
};
|
|
|
|
|
2013-08-10 01:40:05 +02:00
|
|
|
#define BLOCK_OFFSET(x, i) ((x) + (i) * 16)
|
2013-04-02 23:50:40 +02:00
|
|
|
|
2013-12-28 03:44:19 +01:00
|
|
|
typedef struct RefBuffer {
|
|
|
|
// TODO(dkovalev): idx is not really required and should be removed, now it
|
|
|
|
// is used in vp9_onyxd_if.c
|
|
|
|
int idx;
|
|
|
|
YV12_BUFFER_CONFIG *buf;
|
|
|
|
struct scale_factors sf;
|
|
|
|
} RefBuffer;
|
|
|
|
|
2012-10-28 18:38:23 +01:00
|
|
|
typedef struct macroblockd {
|
2013-04-23 17:26:10 +02:00
|
|
|
struct macroblockd_plane plane[MAX_MB_PLANE];
|
2015-06-02 18:06:00 +02:00
|
|
|
FRAME_COUNTS *counts;
|
2014-04-02 01:18:47 +02:00
|
|
|
int mi_stride;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2015-04-21 14:36:58 +02:00
|
|
|
MODE_INFO **mi;
|
2014-12-05 23:39:21 +01:00
|
|
|
MODE_INFO *left_mi;
|
|
|
|
MODE_INFO *above_mi;
|
|
|
|
MB_MODE_INFO *left_mbmi;
|
|
|
|
MB_MODE_INFO *above_mbmi;
|
2013-09-11 19:45:44 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
int up_available;
|
|
|
|
int left_available;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
/* Distance of MB away from frame edges */
|
|
|
|
int mb_to_left_edge;
|
|
|
|
int mb_to_right_edge;
|
|
|
|
int mb_to_top_edge;
|
|
|
|
int mb_to_bottom_edge;
|
|
|
|
|
2015-06-01 17:18:27 +02:00
|
|
|
FRAME_CONTEXT *fc;
|
|
|
|
int frame_parallel_decoding_mode;
|
|
|
|
|
2013-12-06 20:39:38 +01:00
|
|
|
/* pointers to reference frames */
|
2013-12-28 03:44:19 +01:00
|
|
|
RefBuffer *block_refs[2];
|
2013-12-06 20:39:38 +01:00
|
|
|
|
2013-12-13 05:33:06 +01:00
|
|
|
/* pointer to current frame */
|
|
|
|
const YV12_BUFFER_CONFIG *cur_buf;
|
|
|
|
|
2014-12-13 03:01:24 +01:00
|
|
|
ENTROPY_CONTEXT *above_context[MAX_MB_PLANE];
|
|
|
|
ENTROPY_CONTEXT left_context[MAX_MB_PLANE][16];
|
|
|
|
|
|
|
|
PARTITION_CONTEXT *above_seg_context;
|
|
|
|
PARTITION_CONTEXT left_seg_context[8];
|
|
|
|
|
2014-09-03 01:34:09 +02:00
|
|
|
#if CONFIG_VP9_HIGHBITDEPTH
|
|
|
|
/* Bit depth: 8, 10, 12 */
|
|
|
|
int bd;
|
|
|
|
#endif
|
|
|
|
|
2014-12-12 20:31:23 +01:00
|
|
|
/* dqcoeff are shared by all the planes. So planes must be decoded serially */
|
|
|
|
DECLARE_ALIGNED(16, tran_low_t, dqcoeff[64 * 64]);
|
2014-03-25 23:12:28 +01:00
|
|
|
|
2014-12-13 03:01:24 +01:00
|
|
|
int lossless;
|
|
|
|
int corrupted;
|
2014-12-17 21:00:05 +01:00
|
|
|
|
|
|
|
struct vpx_internal_error_info *error_info;
|
2010-05-18 17:58:33 +02:00
|
|
|
} MACROBLOCKD;
|
|
|
|
|
2014-02-01 02:35:53 +01:00
|
|
|
static INLINE BLOCK_SIZE get_subsize(BLOCK_SIZE bsize,
|
|
|
|
PARTITION_TYPE partition) {
|
2014-07-11 19:48:57 +02:00
|
|
|
return subsize_lookup[partition][bsize];
|
2013-05-01 18:43:59 +02:00
|
|
|
}
|
|
|
|
|
2014-03-13 01:23:26 +01:00
|
|
|
extern const TX_TYPE intra_mode_to_tx_type_lookup[INTRA_MODES];
|
2014-02-28 00:46:48 +01:00
|
|
|
|
|
|
|
static INLINE TX_TYPE get_tx_type(PLANE_TYPE plane_type,
|
|
|
|
const MACROBLOCKD *xd) {
|
2015-04-21 14:36:58 +02:00
|
|
|
const MB_MODE_INFO *const mbmi = &xd->mi[0]->mbmi;
|
2014-02-28 00:46:48 +01:00
|
|
|
|
2014-10-16 15:00:54 +02:00
|
|
|
if (plane_type != PLANE_TYPE_Y || xd->lossless || is_inter_block(mbmi))
|
2014-02-28 00:46:48 +01:00
|
|
|
return DCT_DCT;
|
2014-10-24 09:48:02 +02:00
|
|
|
|
2014-03-13 01:23:26 +01:00
|
|
|
return intra_mode_to_tx_type_lookup[mbmi->mode];
|
2014-02-28 00:46:48 +01:00
|
|
|
}
|
2012-08-02 18:07:33 +02:00
|
|
|
|
2013-07-24 21:55:45 +02:00
|
|
|
static INLINE TX_TYPE get_tx_type_4x4(PLANE_TYPE plane_type,
|
|
|
|
const MACROBLOCKD *xd, int ib) {
|
2015-04-21 14:36:58 +02:00
|
|
|
const MODE_INFO *const mi = xd->mi[0];
|
2013-07-24 21:55:45 +02:00
|
|
|
|
2014-02-28 01:05:50 +01:00
|
|
|
if (plane_type != PLANE_TYPE_Y || xd->lossless || is_inter_block(&mi->mbmi))
|
2013-02-12 06:14:46 +01:00
|
|
|
return DCT_DCT;
|
2013-06-25 02:56:06 +02:00
|
|
|
|
2014-03-13 01:23:26 +01:00
|
|
|
return intra_mode_to_tx_type_lookup[get_y_mode(mi, ib)];
|
2012-10-16 01:41:41 +02:00
|
|
|
}
|
|
|
|
|
2014-02-01 02:35:53 +01:00
|
|
|
void vp9_setup_block_planes(MACROBLOCKD *xd, int ss_x, int ss_y);
|
2013-07-02 02:28:08 +02:00
|
|
|
|
2014-03-27 22:27:12 +01:00
|
|
|
static INLINE TX_SIZE get_uv_tx_size_impl(TX_SIZE y_tx_size, BLOCK_SIZE bsize,
|
|
|
|
int xss, int yss) {
|
2013-12-09 20:03:02 +01:00
|
|
|
if (bsize < BLOCK_8X8) {
|
|
|
|
return TX_4X4;
|
|
|
|
} else {
|
2014-03-27 22:27:12 +01:00
|
|
|
const BLOCK_SIZE plane_bsize = ss_size_lookup[bsize][xss][yss];
|
2013-12-09 20:03:02 +01:00
|
|
|
return MIN(y_tx_size, max_txsize_lookup[plane_bsize]);
|
|
|
|
}
|
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-03-27 22:27:12 +01:00
|
|
|
static INLINE TX_SIZE get_uv_tx_size(const MB_MODE_INFO *mbmi,
|
|
|
|
const struct macroblockd_plane *pd) {
|
|
|
|
return get_uv_tx_size_impl(mbmi->tx_size, mbmi->sb_type, pd->subsampling_x,
|
|
|
|
pd->subsampling_y);
|
2013-02-20 19:16:24 +01:00
|
|
|
}
|
2013-03-26 23:23:30 +01:00
|
|
|
|
2014-02-01 02:35:53 +01:00
|
|
|
static INLINE BLOCK_SIZE get_plane_block_size(BLOCK_SIZE bsize,
|
|
|
|
const struct macroblockd_plane *pd) {
|
2014-07-11 19:48:57 +02:00
|
|
|
return ss_size_lookup[bsize][pd->subsampling_x][pd->subsampling_y];
|
2013-08-08 00:33:17 +02:00
|
|
|
}
|
|
|
|
|
2015-05-22 20:19:51 +02:00
|
|
|
static INLINE void reset_skip_context(MACROBLOCKD *xd, BLOCK_SIZE bsize) {
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < MAX_MB_PLANE; i++) {
|
|
|
|
struct macroblockd_plane *const pd = &xd->plane[i];
|
|
|
|
const BLOCK_SIZE plane_bsize = get_plane_block_size(bsize, pd);
|
|
|
|
memset(pd->above_context, 0,
|
|
|
|
sizeof(ENTROPY_CONTEXT) * num_4x4_blocks_wide_lookup[plane_bsize]);
|
|
|
|
memset(pd->left_context, 0,
|
|
|
|
sizeof(ENTROPY_CONTEXT) * num_4x4_blocks_high_lookup[plane_bsize]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static INLINE const vp9_prob *get_y_mode_probs(const MODE_INFO *mi,
|
|
|
|
const MODE_INFO *above_mi,
|
|
|
|
const MODE_INFO *left_mi,
|
|
|
|
int block) {
|
|
|
|
const PREDICTION_MODE above = vp9_above_block_mode(mi, above_mi, block);
|
|
|
|
const PREDICTION_MODE left = vp9_left_block_mode(mi, left_mi, block);
|
|
|
|
return vp9_kf_y_mode_prob[above][left];
|
|
|
|
}
|
|
|
|
|
2013-04-09 19:15:10 +02:00
|
|
|
typedef void (*foreach_transformed_block_visitor)(int plane, int block,
|
2013-08-26 20:33:16 +02:00
|
|
|
BLOCK_SIZE plane_bsize,
|
2013-08-16 02:03:03 +02:00
|
|
|
TX_SIZE tx_size,
|
2013-04-09 19:15:10 +02:00
|
|
|
void *arg);
|
2013-06-06 06:14:14 +02:00
|
|
|
|
2014-02-01 02:35:53 +01:00
|
|
|
void vp9_foreach_transformed_block_in_plane(
|
2013-08-26 20:33:16 +02:00
|
|
|
const MACROBLOCKD *const xd, BLOCK_SIZE bsize, int plane,
|
2014-02-01 02:35:53 +01:00
|
|
|
foreach_transformed_block_visitor visit, void *arg);
|
2013-04-09 19:15:10 +02:00
|
|
|
|
2014-02-01 02:35:53 +01:00
|
|
|
|
|
|
|
void vp9_foreach_transformed_block(
|
2013-08-26 20:33:16 +02:00
|
|
|
const MACROBLOCKD* const xd, BLOCK_SIZE bsize,
|
2014-02-01 02:35:53 +01:00
|
|
|
foreach_transformed_block_visitor visit, void *arg);
|
2013-04-11 20:14:31 +02:00
|
|
|
|
2014-02-01 02:35:53 +01:00
|
|
|
static INLINE void txfrm_block_to_raster_xy(BLOCK_SIZE plane_bsize,
|
|
|
|
TX_SIZE tx_size, int block,
|
|
|
|
int *x, int *y) {
|
2014-10-07 21:30:33 +02:00
|
|
|
const int bwl = b_width_log2_lookup[plane_bsize];
|
2013-08-15 20:44:57 +02:00
|
|
|
const int tx_cols_log2 = bwl - tx_size;
|
2013-07-12 20:37:43 +02:00
|
|
|
const int tx_cols = 1 << tx_cols_log2;
|
2013-08-16 02:03:03 +02:00
|
|
|
const int raster_mb = block >> (tx_size << 1);
|
2013-08-15 20:44:57 +02:00
|
|
|
*x = (raster_mb & (tx_cols - 1)) << tx_size;
|
2013-08-21 20:55:04 +02:00
|
|
|
*y = (raster_mb >> tx_cols_log2) << tx_size;
|
2013-04-30 18:54:51 +02:00
|
|
|
}
|
2013-06-06 15:07:09 +02:00
|
|
|
|
2014-02-01 02:35:53 +01:00
|
|
|
void vp9_set_contexts(const MACROBLOCKD *xd, struct macroblockd_plane *pd,
|
|
|
|
BLOCK_SIZE plane_bsize, TX_SIZE tx_size, int has_eob,
|
|
|
|
int aoff, int loff);
|
2013-11-08 21:44:56 +01:00
|
|
|
|
2014-01-18 21:16:11 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} // extern "C"
|
|
|
|
#endif
|
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
#endif // VP9_COMMON_VP9_BLOCKD_H_
|