vp9_context_tree.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /*
  2. * Copyright (c) 2014 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_ENCODER_VP9_CONTEXT_TREE_H_
  11. #define VP9_ENCODER_VP9_CONTEXT_TREE_H_
  12. #include "vp9/common/vp9_blockd.h"
  13. struct VP9_COMP;
  14. struct VP9Common;
  15. struct ThreadData;
  16. // Structure to hold snapshot of coding context during the mode picking process
  17. typedef struct {
  18. MODE_INFO mic;
  19. uint8_t *zcoeff_blk;
  20. tran_low_t *coeff[MAX_MB_PLANE][3];
  21. tran_low_t *qcoeff[MAX_MB_PLANE][3];
  22. tran_low_t *dqcoeff[MAX_MB_PLANE][3];
  23. uint16_t *eobs[MAX_MB_PLANE][3];
  24. // dual buffer pointers, 0: in use, 1: best in store
  25. tran_low_t *coeff_pbuf[MAX_MB_PLANE][3];
  26. tran_low_t *qcoeff_pbuf[MAX_MB_PLANE][3];
  27. tran_low_t *dqcoeff_pbuf[MAX_MB_PLANE][3];
  28. uint16_t *eobs_pbuf[MAX_MB_PLANE][3];
  29. int is_coded;
  30. int num_4x4_blk;
  31. int skip;
  32. int pred_pixel_ready;
  33. // For current partition, only if all Y, U, and V transform blocks'
  34. // coefficients are quantized to 0, skippable is set to 0.
  35. int skippable;
  36. uint8_t skip_txfm[MAX_MB_PLANE << 2];
  37. int best_mode_index;
  38. int hybrid_pred_diff;
  39. int comp_pred_diff;
  40. int single_pred_diff;
  41. int64_t tx_rd_diff[TX_MODES];
  42. int64_t best_filter_diff[SWITCHABLE_FILTER_CONTEXTS];
  43. // TODO(jingning) Use RD_COST struct here instead. This involves a boarder
  44. // scope of refactoring.
  45. int rate;
  46. int64_t dist;
  47. #if CONFIG_VP9_TEMPORAL_DENOISING
  48. unsigned int newmv_sse;
  49. unsigned int zeromv_sse;
  50. PREDICTION_MODE best_sse_inter_mode;
  51. int_mv best_sse_mv;
  52. MV_REFERENCE_FRAME best_reference_frame;
  53. MV_REFERENCE_FRAME best_zeromv_reference_frame;
  54. #endif
  55. // motion vector cache for adaptive motion search control in partition
  56. // search loop
  57. MV pred_mv[MAX_REF_FRAMES];
  58. INTERP_FILTER pred_interp_filter;
  59. } PICK_MODE_CONTEXT;
  60. typedef struct PC_TREE {
  61. int index;
  62. PARTITION_TYPE partitioning;
  63. BLOCK_SIZE block_size;
  64. PICK_MODE_CONTEXT none;
  65. PICK_MODE_CONTEXT horizontal[2];
  66. PICK_MODE_CONTEXT vertical[2];
  67. union {
  68. struct PC_TREE *split[4];
  69. PICK_MODE_CONTEXT *leaf_split[4];
  70. };
  71. } PC_TREE;
  72. void vp9_setup_pc_tree(struct VP9Common *cm, struct ThreadData *td);
  73. void vp9_free_pc_tree(struct ThreadData *td);
  74. #endif /* VP9_ENCODER_VP9_CONTEXT_TREE_H_ */