vp9_blockd.h 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  1. /*
  2. * Copyright (c) 2010 The WebM project authors. All Rights Reserved.
  3. *
  4. * Use of this source code is governed by a BSD-style license
  5. * that can be found in the LICENSE file in the root of the source
  6. * tree. An additional intellectual property rights grant can be found
  7. * in the file PATENTS. All contributing project authors may
  8. * be found in the AUTHORS file in the root of the source tree.
  9. */
  10. #ifndef VP9_COMMON_VP9_BLOCKD_H_
  11. #define VP9_COMMON_VP9_BLOCKD_H_
  12. #include "./vpx_config.h"
  13. #include "vpx_dsp/vpx_dsp_common.h"
  14. #include "vpx_ports/mem.h"
  15. #include "vpx_scale/yv12config.h"
  16. #include "vp9/common/vp9_common_data.h"
  17. #include "vp9/common/vp9_entropy.h"
  18. #include "vp9/common/vp9_entropymode.h"
  19. #include "vp9/common/vp9_mv.h"
  20. #include "vp9/common/vp9_scale.h"
  21. #include "vp9/common/vp9_seg_common.h"
  22. #include "vp9/common/vp9_tile_common.h"
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. #define MAX_MB_PLANE 3
  27. typedef enum {
  28. KEY_FRAME = 0,
  29. INTER_FRAME = 1,
  30. FRAME_TYPES,
  31. } FRAME_TYPE;
  32. static INLINE int is_inter_mode(PREDICTION_MODE mode) {
  33. return mode >= NEARESTMV && mode <= NEWMV;
  34. }
  35. /* For keyframes, intra block modes are predicted by the (already decoded)
  36. modes for the Y blocks to the left and above us; for interframes, there
  37. is a single probability table. */
  38. typedef struct {
  39. PREDICTION_MODE as_mode;
  40. int_mv as_mv[2]; // first, second inter predictor motion vectors
  41. } b_mode_info;
  42. // Note that the rate-distortion optimization loop, bit-stream writer, and
  43. // decoder implementation modules critically rely on the defined entry values
  44. // specified herein. They should be refactored concurrently.
  45. #define NONE -1
  46. #define INTRA_FRAME 0
  47. #define LAST_FRAME 1
  48. #define GOLDEN_FRAME 2
  49. #define ALTREF_FRAME 3
  50. #define MAX_REF_FRAMES 4
  51. typedef int8_t MV_REFERENCE_FRAME;
  52. // This structure now relates to 8x8 block regions.
  53. typedef struct MODE_INFO {
  54. // Common for both INTER and INTRA blocks
  55. BLOCK_SIZE sb_type;
  56. PREDICTION_MODE mode;
  57. TX_SIZE tx_size;
  58. int8_t skip;
  59. int8_t segment_id;
  60. int8_t seg_id_predicted; // valid only when temporal_update is enabled
  61. // Only for INTRA blocks
  62. PREDICTION_MODE uv_mode;
  63. // Only for INTER blocks
  64. INTERP_FILTER interp_filter;
  65. // if ref_frame[idx] is equal to ALTREF_FRAME then
  66. // MACROBLOCKD::block_ref[idx] is an altref
  67. MV_REFERENCE_FRAME ref_frame[2];
  68. // TODO(slavarnway): Delete and use bmi[3].as_mv[] instead.
  69. int_mv mv[2];
  70. b_mode_info bmi[4];
  71. } MODE_INFO;
  72. static INLINE PREDICTION_MODE get_y_mode(const MODE_INFO *mi, int block) {
  73. return mi->sb_type < BLOCK_8X8 ? mi->bmi[block].as_mode : mi->mode;
  74. }
  75. static INLINE int is_inter_block(const MODE_INFO *mi) {
  76. return mi->ref_frame[0] > INTRA_FRAME;
  77. }
  78. static INLINE int has_second_ref(const MODE_INFO *mi) {
  79. return mi->ref_frame[1] > INTRA_FRAME;
  80. }
  81. PREDICTION_MODE vp9_left_block_mode(const MODE_INFO *cur_mi,
  82. const MODE_INFO *left_mi, int b);
  83. PREDICTION_MODE vp9_above_block_mode(const MODE_INFO *cur_mi,
  84. const MODE_INFO *above_mi, int b);
  85. enum mv_precision { MV_PRECISION_Q3, MV_PRECISION_Q4 };
  86. struct buf_2d {
  87. uint8_t *buf;
  88. int stride;
  89. };
  90. struct macroblockd_plane {
  91. tran_low_t *dqcoeff;
  92. int subsampling_x;
  93. int subsampling_y;
  94. struct buf_2d dst;
  95. struct buf_2d pre[2];
  96. ENTROPY_CONTEXT *above_context;
  97. ENTROPY_CONTEXT *left_context;
  98. int16_t seg_dequant[MAX_SEGMENTS][2];
  99. // number of 4x4s in current block
  100. uint16_t n4_w, n4_h;
  101. // log2 of n4_w, n4_h
  102. uint8_t n4_wl, n4_hl;
  103. // encoder
  104. const int16_t *dequant;
  105. };
  106. #define BLOCK_OFFSET(x, i) ((x) + (i)*16)
  107. typedef struct RefBuffer {
  108. // TODO(dkovalev): idx is not really required and should be removed, now it
  109. // is used in vp9_onyxd_if.c
  110. int idx;
  111. YV12_BUFFER_CONFIG *buf;
  112. struct scale_factors sf;
  113. } RefBuffer;
  114. typedef struct macroblockd {
  115. struct macroblockd_plane plane[MAX_MB_PLANE];
  116. uint8_t bmode_blocks_wl;
  117. uint8_t bmode_blocks_hl;
  118. FRAME_COUNTS *counts;
  119. TileInfo tile;
  120. int mi_stride;
  121. // Grid of 8x8 cells is placed over the block.
  122. // If some of them belong to the same mbtree-block
  123. // they will just have same mi[i][j] value
  124. MODE_INFO **mi;
  125. MODE_INFO *left_mi;
  126. MODE_INFO *above_mi;
  127. unsigned int max_blocks_wide;
  128. unsigned int max_blocks_high;
  129. const vpx_prob (*partition_probs)[PARTITION_TYPES - 1];
  130. /* Distance of MB away from frame edges */
  131. int mb_to_left_edge;
  132. int mb_to_right_edge;
  133. int mb_to_top_edge;
  134. int mb_to_bottom_edge;
  135. FRAME_CONTEXT *fc;
  136. /* pointers to reference frames */
  137. RefBuffer *block_refs[2];
  138. /* pointer to current frame */
  139. const YV12_BUFFER_CONFIG *cur_buf;
  140. ENTROPY_CONTEXT *above_context[MAX_MB_PLANE];
  141. ENTROPY_CONTEXT left_context[MAX_MB_PLANE][16];
  142. PARTITION_CONTEXT *above_seg_context;
  143. PARTITION_CONTEXT left_seg_context[8];
  144. #if CONFIG_VP9_HIGHBITDEPTH
  145. /* Bit depth: 8, 10, 12 */
  146. int bd;
  147. #endif
  148. int lossless;
  149. int corrupted;
  150. struct vpx_internal_error_info *error_info;
  151. } MACROBLOCKD;
  152. static INLINE PLANE_TYPE get_plane_type(int plane) {
  153. return (PLANE_TYPE)(plane > 0);
  154. }
  155. static INLINE BLOCK_SIZE get_subsize(BLOCK_SIZE bsize,
  156. PARTITION_TYPE partition) {
  157. return subsize_lookup[partition][bsize];
  158. }
  159. extern const TX_TYPE intra_mode_to_tx_type_lookup[INTRA_MODES];
  160. static INLINE TX_TYPE get_tx_type(PLANE_TYPE plane_type,
  161. const MACROBLOCKD *xd) {
  162. const MODE_INFO *const mi = xd->mi[0];
  163. if (plane_type != PLANE_TYPE_Y || xd->lossless || is_inter_block(mi))
  164. return DCT_DCT;
  165. return intra_mode_to_tx_type_lookup[mi->mode];
  166. }
  167. static INLINE TX_TYPE get_tx_type_4x4(PLANE_TYPE plane_type,
  168. const MACROBLOCKD *xd, int ib) {
  169. const MODE_INFO *const mi = xd->mi[0];
  170. if (plane_type != PLANE_TYPE_Y || xd->lossless || is_inter_block(mi))
  171. return DCT_DCT;
  172. return intra_mode_to_tx_type_lookup[get_y_mode(mi, ib)];
  173. }
  174. void vp9_setup_block_planes(MACROBLOCKD *xd, int ss_x, int ss_y);
  175. static INLINE TX_SIZE get_uv_tx_size(const MODE_INFO *mi,
  176. const struct macroblockd_plane *pd) {
  177. assert(mi->sb_type < BLOCK_8X8 ||
  178. ss_size_lookup[mi->sb_type][pd->subsampling_x][pd->subsampling_y] !=
  179. BLOCK_INVALID);
  180. return uv_txsize_lookup[mi->sb_type][mi->tx_size][pd->subsampling_x]
  181. [pd->subsampling_y];
  182. }
  183. static INLINE BLOCK_SIZE
  184. get_plane_block_size(BLOCK_SIZE bsize, const struct macroblockd_plane *pd) {
  185. return ss_size_lookup[bsize][pd->subsampling_x][pd->subsampling_y];
  186. }
  187. static INLINE void reset_skip_context(MACROBLOCKD *xd, BLOCK_SIZE bsize) {
  188. int i;
  189. for (i = 0; i < MAX_MB_PLANE; i++) {
  190. struct macroblockd_plane *const pd = &xd->plane[i];
  191. const BLOCK_SIZE plane_bsize = get_plane_block_size(bsize, pd);
  192. memset(pd->above_context, 0,
  193. sizeof(ENTROPY_CONTEXT) * num_4x4_blocks_wide_lookup[plane_bsize]);
  194. memset(pd->left_context, 0,
  195. sizeof(ENTROPY_CONTEXT) * num_4x4_blocks_high_lookup[plane_bsize]);
  196. }
  197. }
  198. static INLINE const vpx_prob *get_y_mode_probs(const MODE_INFO *mi,
  199. const MODE_INFO *above_mi,
  200. const MODE_INFO *left_mi,
  201. int block) {
  202. const PREDICTION_MODE above = vp9_above_block_mode(mi, above_mi, block);
  203. const PREDICTION_MODE left = vp9_left_block_mode(mi, left_mi, block);
  204. return vp9_kf_y_mode_prob[above][left];
  205. }
  206. typedef void (*foreach_transformed_block_visitor)(int plane, int block, int row,
  207. int col,
  208. BLOCK_SIZE plane_bsize,
  209. TX_SIZE tx_size, void *arg);
  210. void vp9_foreach_transformed_block_in_plane(
  211. const MACROBLOCKD *const xd, BLOCK_SIZE bsize, int plane,
  212. foreach_transformed_block_visitor visit, void *arg);
  213. void vp9_foreach_transformed_block(const MACROBLOCKD *const xd,
  214. BLOCK_SIZE bsize,
  215. foreach_transformed_block_visitor visit,
  216. void *arg);
  217. void vp9_set_contexts(const MACROBLOCKD *xd, struct macroblockd_plane *pd,
  218. BLOCK_SIZE plane_bsize, TX_SIZE tx_size, int has_eob,
  219. int aoff, int loff);
  220. #ifdef __cplusplus
  221. } // extern "C"
  222. #endif
  223. #endif // VP9_COMMON_VP9_BLOCKD_H_