2010-05-18 19:58:33 +04:00
|
|
|
/*
|
2010-09-09 16:16:39 +04:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-05-18 19:58:33 +04:00
|
|
|
*
|
2010-06-18 20:39:21 +04:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-05 00:19:40 +04: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 20:39:21 +04:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-05 00:19:40 +04:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2010-05-18 19:58:33 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2012-11-30 04:36:10 +04:00
|
|
|
#ifndef VP9_COMMON_VP9_BLOCKD_H_
|
|
|
|
#define VP9_COMMON_VP9_BLOCKD_H_
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-12-23 19:20:10 +04:00
|
|
|
#include "./vpx_config.h"
|
2013-07-10 23:29:43 +04:00
|
|
|
|
|
|
|
#include "vpx_ports/mem.h"
|
2010-05-18 19:58:33 +04:00
|
|
|
#include "vpx_scale/yv12config.h"
|
2013-07-10 23:29:43 +04:00
|
|
|
|
|
|
|
#include "vp9/common/vp9_common_data.h"
|
2013-10-04 05:55:21 +04:00
|
|
|
#include "vp9/common/vp9_filter.h"
|
2012-11-28 22:41:40 +04:00
|
|
|
#include "vp9/common/vp9_mv.h"
|
2013-08-10 01:07:09 +04:00
|
|
|
#include "vp9/common/vp9_scale.h"
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2014-01-19 00:16:11 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2013-12-04 05:23:03 +04:00
|
|
|
#define BLOCK_SIZE_GROUPS 4
|
2014-01-30 02:48:42 +04:00
|
|
|
#define SKIP_CONTEXTS 3
|
2013-12-04 05:23:03 +04:00
|
|
|
#define INTER_MODE_CONTEXTS 7
|
2012-03-19 22:02:04 +04:00
|
|
|
|
2010-10-28 03:04:02 +04:00
|
|
|
/* Segment Feature Masks */
|
2013-04-19 18:40:36 +04:00
|
|
|
#define MAX_MV_REF_CANDIDATES 2
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2013-06-07 00:44:34 +04:00
|
|
|
#define INTRA_INTER_CONTEXTS 4
|
|
|
|
#define COMP_INTER_CONTEXTS 5
|
|
|
|
#define REF_CONTEXTS 5
|
|
|
|
|
2013-02-20 23:36:31 +04:00
|
|
|
typedef enum {
|
2013-12-06 22:54:00 +04:00
|
|
|
PLANE_TYPE_Y = 0,
|
|
|
|
PLANE_TYPE_UV = 1,
|
|
|
|
PLANE_TYPES
|
2012-10-15 02:29:56 +04:00
|
|
|
} PLANE_TYPE;
|
2011-02-24 00:37:08 +03:00
|
|
|
|
2014-10-08 02:00:22 +04:00
|
|
|
#define MAX_MB_PLANE 3
|
|
|
|
|
2010-08-31 18:49:57 +04:00
|
|
|
typedef char ENTROPY_CONTEXT;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2013-04-17 02:30:28 +04:00
|
|
|
static INLINE int combine_entropy_contexts(ENTROPY_CONTEXT a,
|
|
|
|
ENTROPY_CONTEXT b) {
|
|
|
|
return (a != 0) + (b != 0);
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
typedef enum {
|
|
|
|
KEY_FRAME = 0,
|
2013-06-03 21:39:40 +04:00
|
|
|
INTER_FRAME = 1,
|
2013-10-19 04:44:19 +04:00
|
|
|
FRAME_TYPES,
|
2010-05-18 19:58:33 +04:00
|
|
|
} FRAME_TYPE;
|
|
|
|
|
2013-02-27 23:17:38 +04:00
|
|
|
typedef enum {
|
2013-05-09 22:37:51 +04:00
|
|
|
DC_PRED, // Average of above and left pixels
|
|
|
|
V_PRED, // Vertical
|
|
|
|
H_PRED, // Horizontal
|
|
|
|
D45_PRED, // Directional 45 deg = round(arctan(1/1) * 180/pi)
|
|
|
|
D135_PRED, // Directional 135 deg = 180 - 45
|
|
|
|
D117_PRED, // Directional 117 deg = 180 - 63
|
|
|
|
D153_PRED, // Directional 153 deg = 180 - 27
|
2013-08-24 04:33:48 +04:00
|
|
|
D207_PRED, // Directional 207 deg = 180 + 27
|
2013-05-09 22:37:51 +04:00
|
|
|
D63_PRED, // Directional 63 deg = round(arctan(2/1) * 180/pi)
|
|
|
|
TM_PRED, // True-motion
|
2012-07-14 02:21:29 +04:00
|
|
|
NEARESTMV,
|
|
|
|
NEARMV,
|
|
|
|
ZEROMV,
|
|
|
|
NEWMV,
|
|
|
|
MB_MODE_COUNT
|
2014-04-12 02:26:24 +04:00
|
|
|
} PREDICTION_MODE;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2014-04-12 02:26:24 +04:00
|
|
|
static INLINE int is_inter_mode(PREDICTION_MODE mode) {
|
2013-05-30 23:49:38 +04:00
|
|
|
return mode >= NEARESTMV && mode <= NEWMV;
|
2013-04-24 23:14:58 +04:00
|
|
|
}
|
|
|
|
|
2013-08-23 05:40:34 +04:00
|
|
|
#define INTRA_MODES (TM_PRED + 1)
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2013-08-23 05:40:34 +04:00
|
|
|
#define INTER_MODES (1 + NEWMV - NEARESTMV)
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2013-11-05 23:58:57 +04:00
|
|
|
#define INTER_OFFSET(mode) ((mode) - NEARESTMV)
|
|
|
|
|
2010-05-18 19:58:33 +04: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 04:05:31 +04:00
|
|
|
typedef struct {
|
2014-04-12 02:26:24 +04:00
|
|
|
PREDICTION_MODE as_mode;
|
2013-02-09 07:46:36 +04:00
|
|
|
int_mv as_mv[2]; // first, second inter predictor motion vectors
|
2013-10-03 04:05:31 +04:00
|
|
|
} b_mode_info;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2014-09-11 21:54:37 +04: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 02:21:29 +04:00
|
|
|
typedef enum {
|
2012-11-07 18:50:25 +04:00
|
|
|
NONE = -1,
|
2012-07-14 02:21:29 +04:00
|
|
|
INTRA_FRAME = 0,
|
|
|
|
LAST_FRAME = 1,
|
|
|
|
GOLDEN_FRAME = 2,
|
|
|
|
ALTREF_FRAME = 3,
|
|
|
|
MAX_REF_FRAMES = 4
|
2010-05-18 19:58:33 +04:00
|
|
|
} MV_REFERENCE_FRAME;
|
|
|
|
|
2013-08-13 20:47:40 +04:00
|
|
|
// This structure now relates to 8x8 block regions.
|
2012-07-14 02:21:29 +04:00
|
|
|
typedef struct {
|
2014-03-29 04:43:50 +04:00
|
|
|
// Common for both INTER and INTRA blocks
|
|
|
|
BLOCK_SIZE sb_type;
|
2014-04-12 02:26:24 +04:00
|
|
|
PREDICTION_MODE mode;
|
2013-08-28 06:47:53 +04:00
|
|
|
TX_SIZE tx_size;
|
2014-08-01 17:41:24 +04:00
|
|
|
int8_t skip;
|
|
|
|
int8_t segment_id;
|
|
|
|
int8_t seg_id_predicted; // valid only when temporal_update is enabled
|
2012-07-14 02:21:29 +04:00
|
|
|
|
2014-03-29 04:43:50 +04:00
|
|
|
// Only for INTRA blocks
|
2014-04-12 02:26:24 +04:00
|
|
|
PREDICTION_MODE uv_mode;
|
2012-07-14 02:21:29 +04:00
|
|
|
|
2014-03-29 04:43:50 +04: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-25 00:26:57 +04:00
|
|
|
INTERP_FILTER interp_filter;
|
2010-05-18 19:58:33 +04:00
|
|
|
} MB_MODE_INFO;
|
|
|
|
|
2014-09-12 02:37:08 +04:00
|
|
|
typedef struct MODE_INFO {
|
|
|
|
struct MODE_INFO *src_mi;
|
2012-07-14 02:21:29 +04:00
|
|
|
MB_MODE_INFO mbmi;
|
2013-10-03 04:05:31 +04:00
|
|
|
b_mode_info bmi[4];
|
2010-05-18 19:58:33 +04:00
|
|
|
} MODE_INFO;
|
|
|
|
|
2014-04-12 02:26:24 +04:00
|
|
|
static INLINE PREDICTION_MODE get_y_mode(const MODE_INFO *mi, int block) {
|
2014-02-28 04:05:50 +04:00
|
|
|
return mi->mbmi.sb_type < BLOCK_8X8 ? mi->bmi[block].as_mode
|
|
|
|
: mi->mbmi.mode;
|
|
|
|
}
|
|
|
|
|
2013-08-20 05:39:34 +04:00
|
|
|
static INLINE int is_inter_block(const MB_MODE_INFO *mbmi) {
|
2013-08-03 03:25:33 +04:00
|
|
|
return mbmi->ref_frame[0] > INTRA_FRAME;
|
|
|
|
}
|
|
|
|
|
2013-08-20 05:39:34 +04:00
|
|
|
static INLINE int has_second_ref(const MB_MODE_INFO *mbmi) {
|
|
|
|
return mbmi->ref_frame[1] > INTRA_FRAME;
|
|
|
|
}
|
|
|
|
|
2014-04-12 02:26:24 +04:00
|
|
|
PREDICTION_MODE vp9_left_block_mode(const MODE_INFO *cur_mi,
|
|
|
|
const MODE_INFO *left_mi, int b);
|
2013-11-21 23:43:53 +04:00
|
|
|
|
2014-04-12 02:26:24 +04:00
|
|
|
PREDICTION_MODE vp9_above_block_mode(const MODE_INFO *cur_mi,
|
|
|
|
const MODE_INFO *above_mi, int b);
|
2013-11-21 23:43:53 +04:00
|
|
|
|
2013-06-22 02:34:29 +04:00
|
|
|
enum mv_precision {
|
|
|
|
MV_PRECISION_Q3,
|
|
|
|
MV_PRECISION_Q4
|
|
|
|
};
|
|
|
|
|
2013-04-20 02:52:17 +04:00
|
|
|
struct buf_2d {
|
|
|
|
uint8_t *buf;
|
|
|
|
int stride;
|
|
|
|
};
|
|
|
|
|
2013-04-23 19:26:10 +04:00
|
|
|
struct macroblockd_plane {
|
2014-09-03 03:34:09 +04:00
|
|
|
tran_low_t *dqcoeff;
|
2013-04-06 02:54:59 +04:00
|
|
|
PLANE_TYPE plane_type;
|
|
|
|
int subsampling_x;
|
|
|
|
int subsampling_y;
|
2013-04-20 02:52:17 +04:00
|
|
|
struct buf_2d dst;
|
|
|
|
struct buf_2d pre[2];
|
2014-02-04 02:57:28 +04:00
|
|
|
const int16_t *dequant;
|
2013-04-29 21:37:25 +04:00
|
|
|
ENTROPY_CONTEXT *above_context;
|
|
|
|
ENTROPY_CONTEXT *left_context;
|
2013-04-03 01:50:40 +04:00
|
|
|
};
|
|
|
|
|
2013-08-10 03:40:05 +04:00
|
|
|
#define BLOCK_OFFSET(x, i) ((x) + (i) * 16)
|
2013-04-03 01:50:40 +04:00
|
|
|
|
2013-12-28 06:44:19 +04: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 21:38:23 +04:00
|
|
|
typedef struct macroblockd {
|
2013-04-23 19:26:10 +04:00
|
|
|
struct macroblockd_plane plane[MAX_MB_PLANE];
|
32x32 transform for superblocks.
This adds Debargha's DCT/DWT hybrid and a regular 32x32 DCT, and adds
code all over the place to wrap that in the bitstream/encoder/decoder/RD.
Some implementation notes (these probably need careful review):
- token range is extended by 1 bit, since the value range out of this
transform is [-16384,16383].
- the coefficients coming out of the FDCT are manually scaled back by
1 bit, or else they won't fit in int16_t (they are 17 bits). Because
of this, the RD error scoring does not right-shift the MSE score by
two (unlike for 4x4/8x8/16x16).
- to compensate for this loss in precision, the quantizer is halved
also. This is currently a little hacky.
- FDCT and IDCT is double-only right now. Needs a fixed-point impl.
- There are no default probabilities for the 32x32 transform yet; I'm
simply using the 16x16 luma ones. A future commit will add newly
generated probabilities for all transforms.
- No ADST version. I don't think we'll add one for this level; if an
ADST is desired, transform-size selection can scale back to 16x16
or lower, and use an ADST at that level.
Additional notes specific to Debargha's DWT/DCT hybrid:
- coefficient scale is different for the top/left 16x16 (DCT-over-DWT)
block than for the rest (DWT pixel differences) of the block. Therefore,
RD error scoring isn't easily scalable between coefficient and pixel
domain. Thus, unfortunately, we need to compute the RD distortion in
the pixel domain until we figure out how to scale these appropriately.
Change-Id: I00386f20f35d7fabb19aba94c8162f8aee64ef2b
2012-12-08 02:45:05 +04:00
|
|
|
|
2014-04-02 03:18:47 +04:00
|
|
|
int mi_stride;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2014-09-12 02:37:08 +04:00
|
|
|
MODE_INFO *mi;
|
2013-09-11 21:45:44 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
int up_available;
|
|
|
|
int left_available;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04: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;
|
|
|
|
|
2013-12-06 23:39:38 +04:00
|
|
|
/* pointers to reference frames */
|
2013-12-28 06:44:19 +04:00
|
|
|
RefBuffer *block_refs[2];
|
2013-12-06 23:39:38 +04:00
|
|
|
|
2013-12-13 08:33:06 +04:00
|
|
|
/* pointer to current frame */
|
|
|
|
const YV12_BUFFER_CONFIG *cur_buf;
|
|
|
|
|
2014-01-14 02:14:44 +04:00
|
|
|
/* mc buffer */
|
|
|
|
DECLARE_ALIGNED(16, uint8_t, mc_buf[80 * 2 * 80 * 2]);
|
|
|
|
|
2014-09-03 03:34:09 +04:00
|
|
|
#if CONFIG_VP9_HIGHBITDEPTH
|
|
|
|
/* Bit depth: 8, 10, 12 */
|
|
|
|
int bd;
|
|
|
|
DECLARE_ALIGNED(16, uint16_t, mc_buf_high[80 * 2 * 80 * 2]);
|
|
|
|
#endif
|
|
|
|
|
2013-02-12 03:58:22 +04:00
|
|
|
int lossless;
|
2012-11-25 07:33:58 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
int corrupted;
|
2010-12-16 18:46:31 +03:00
|
|
|
|
2014-09-03 03:34:09 +04:00
|
|
|
DECLARE_ALIGNED(16, tran_low_t, dqcoeff[MAX_MB_PLANE][64 * 64]);
|
2014-03-26 02:12:28 +04:00
|
|
|
|
2013-10-24 21:43:05 +04:00
|
|
|
ENTROPY_CONTEXT *above_context[MAX_MB_PLANE];
|
|
|
|
ENTROPY_CONTEXT left_context[MAX_MB_PLANE][16];
|
|
|
|
|
2013-10-24 21:11:07 +04:00
|
|
|
PARTITION_CONTEXT *above_seg_context;
|
|
|
|
PARTITION_CONTEXT left_seg_context[8];
|
2010-05-18 19:58:33 +04:00
|
|
|
} MACROBLOCKD;
|
|
|
|
|
2014-02-01 05:35:53 +04:00
|
|
|
static INLINE BLOCK_SIZE get_subsize(BLOCK_SIZE bsize,
|
|
|
|
PARTITION_TYPE partition) {
|
2014-07-11 21:48:57 +04:00
|
|
|
return subsize_lookup[partition][bsize];
|
2013-05-01 20:43:59 +04:00
|
|
|
}
|
|
|
|
|
2014-03-13 04:23:26 +04:00
|
|
|
extern const TX_TYPE intra_mode_to_tx_type_lookup[INTRA_MODES];
|
2014-02-28 03:46:48 +04:00
|
|
|
|
|
|
|
static INLINE TX_TYPE get_tx_type(PLANE_TYPE plane_type,
|
|
|
|
const MACROBLOCKD *xd) {
|
2014-09-12 02:37:08 +04:00
|
|
|
const MB_MODE_INFO *const mbmi = &xd->mi[0].src_mi->mbmi;
|
2014-02-28 03:46:48 +04:00
|
|
|
|
|
|
|
if (plane_type != PLANE_TYPE_Y || is_inter_block(mbmi))
|
|
|
|
return DCT_DCT;
|
2014-03-13 04:23:26 +04:00
|
|
|
return intra_mode_to_tx_type_lookup[mbmi->mode];
|
2014-02-28 03:46:48 +04:00
|
|
|
}
|
2012-08-02 20:07:33 +04:00
|
|
|
|
2013-07-24 23:55:45 +04:00
|
|
|
static INLINE TX_TYPE get_tx_type_4x4(PLANE_TYPE plane_type,
|
|
|
|
const MACROBLOCKD *xd, int ib) {
|
2014-09-12 02:37:08 +04:00
|
|
|
const MODE_INFO *const mi = xd->mi[0].src_mi;
|
2013-07-24 23:55:45 +04:00
|
|
|
|
2014-02-28 04:05:50 +04:00
|
|
|
if (plane_type != PLANE_TYPE_Y || xd->lossless || is_inter_block(&mi->mbmi))
|
2013-02-12 09:14:46 +04:00
|
|
|
return DCT_DCT;
|
2013-06-25 04:56:06 +04:00
|
|
|
|
2014-03-13 04:23:26 +04:00
|
|
|
return intra_mode_to_tx_type_lookup[get_y_mode(mi, ib)];
|
2012-10-16 03:41:41 +04:00
|
|
|
}
|
|
|
|
|
2014-02-01 05:35:53 +04:00
|
|
|
void vp9_setup_block_planes(MACROBLOCKD *xd, int ss_x, int ss_y);
|
2013-07-02 04:28:08 +04:00
|
|
|
|
2014-03-28 01:27:12 +04: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 23:03:02 +04:00
|
|
|
if (bsize < BLOCK_8X8) {
|
|
|
|
return TX_4X4;
|
|
|
|
} else {
|
2014-03-28 01:27:12 +04:00
|
|
|
const BLOCK_SIZE plane_bsize = ss_size_lookup[bsize][xss][yss];
|
2013-12-09 23:03:02 +04:00
|
|
|
return MIN(y_tx_size, max_txsize_lookup[plane_bsize]);
|
|
|
|
}
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2014-03-28 01:27:12 +04: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 22:16:24 +04:00
|
|
|
}
|
2013-03-27 02:23:30 +04:00
|
|
|
|
2014-02-01 05:35:53 +04:00
|
|
|
static INLINE BLOCK_SIZE get_plane_block_size(BLOCK_SIZE bsize,
|
|
|
|
const struct macroblockd_plane *pd) {
|
2014-07-11 21:48:57 +04:00
|
|
|
return ss_size_lookup[bsize][pd->subsampling_x][pd->subsampling_y];
|
2013-08-08 02:33:17 +04:00
|
|
|
}
|
|
|
|
|
2013-04-09 21:15:10 +04:00
|
|
|
typedef void (*foreach_transformed_block_visitor)(int plane, int block,
|
2013-08-26 22:33:16 +04:00
|
|
|
BLOCK_SIZE plane_bsize,
|
2013-08-16 04:03:03 +04:00
|
|
|
TX_SIZE tx_size,
|
2013-04-09 21:15:10 +04:00
|
|
|
void *arg);
|
2013-06-06 08:14:14 +04:00
|
|
|
|
2014-02-01 05:35:53 +04:00
|
|
|
void vp9_foreach_transformed_block_in_plane(
|
2013-08-26 22:33:16 +04:00
|
|
|
const MACROBLOCKD *const xd, BLOCK_SIZE bsize, int plane,
|
2014-02-01 05:35:53 +04:00
|
|
|
foreach_transformed_block_visitor visit, void *arg);
|
2013-04-09 21:15:10 +04:00
|
|
|
|
2014-02-01 05:35:53 +04:00
|
|
|
|
|
|
|
void vp9_foreach_transformed_block(
|
2013-08-26 22:33:16 +04:00
|
|
|
const MACROBLOCKD* const xd, BLOCK_SIZE bsize,
|
2014-02-01 05:35:53 +04:00
|
|
|
foreach_transformed_block_visitor visit, void *arg);
|
2013-04-11 22:14:31 +04:00
|
|
|
|
2014-02-01 05:35:53 +04: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 23:30:33 +04:00
|
|
|
const int bwl = b_width_log2_lookup[plane_bsize];
|
2013-08-15 22:44:57 +04:00
|
|
|
const int tx_cols_log2 = bwl - tx_size;
|
2013-07-12 22:37:43 +04:00
|
|
|
const int tx_cols = 1 << tx_cols_log2;
|
2013-08-16 04:03:03 +04:00
|
|
|
const int raster_mb = block >> (tx_size << 1);
|
2013-08-15 22:44:57 +04:00
|
|
|
*x = (raster_mb & (tx_cols - 1)) << tx_size;
|
2013-08-21 22:55:04 +04:00
|
|
|
*y = (raster_mb >> tx_cols_log2) << tx_size;
|
2013-04-30 20:54:51 +04:00
|
|
|
}
|
2013-06-06 17:07:09 +04:00
|
|
|
|
2014-02-01 05:35:53 +04: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-09 00:44:56 +04:00
|
|
|
|
2014-01-19 00:16:11 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} // extern "C"
|
|
|
|
#endif
|
|
|
|
|
2012-12-19 03:31:19 +04:00
|
|
|
#endif // VP9_COMMON_VP9_BLOCKD_H_
|