vp9_aq_cyclicrefresh.h 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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 VPX_VP9_ENCODER_VP9_AQ_CYCLICREFRESH_H_
  11. #define VPX_VP9_ENCODER_VP9_AQ_CYCLICREFRESH_H_
  12. #include "vpx/vpx_integer.h"
  13. #include "vp9/common/vp9_blockd.h"
  14. #include "vp9/encoder/vp9_block.h"
  15. #include "vp9/encoder/vp9_skin_detection.h"
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. // The segment ids used in cyclic refresh: from base (no boost) to increasing
  20. // boost (higher delta-qp).
  21. #define CR_SEGMENT_ID_BASE 0
  22. #define CR_SEGMENT_ID_BOOST1 1
  23. #define CR_SEGMENT_ID_BOOST2 2
  24. // Maximum rate target ratio for setting segment delta-qp.
  25. #define CR_MAX_RATE_TARGET_RATIO 4.0
  26. struct CYCLIC_REFRESH {
  27. // Percentage of blocks per frame that are targeted as candidates
  28. // for cyclic refresh.
  29. int percent_refresh;
  30. // Maximum q-delta as percentage of base q.
  31. int max_qdelta_perc;
  32. // Superblock starting index for cycling through the frame.
  33. int sb_index;
  34. // Controls how long block will need to wait to be refreshed again, in
  35. // excess of the cycle time, i.e., in the case of all zero motion, block
  36. // will be refreshed every (100/percent_refresh + time_for_refresh) frames.
  37. int time_for_refresh;
  38. // Target number of (8x8) blocks that are set for delta-q.
  39. int target_num_seg_blocks;
  40. // Actual number of (8x8) blocks that were applied delta-q.
  41. int actual_num_seg1_blocks;
  42. int actual_num_seg2_blocks;
  43. // RD mult. parameters for segment 1.
  44. int rdmult;
  45. // Cyclic refresh map.
  46. signed char *map;
  47. // Map of the last q a block was coded at.
  48. uint8_t *last_coded_q_map;
  49. // Thresholds applied to the projected rate/distortion of the coding block,
  50. // when deciding whether block should be refreshed.
  51. int64_t thresh_rate_sb;
  52. int64_t thresh_dist_sb;
  53. // Threshold applied to the motion vector (in units of 1/8 pel) of the
  54. // coding block, when deciding whether block should be refreshed.
  55. int16_t motion_thresh;
  56. // Rate target ratio to set q delta.
  57. double rate_ratio_qdelta;
  58. // Boost factor for rate target ratio, for segment CR_SEGMENT_ID_BOOST2.
  59. int rate_boost_fac;
  60. double low_content_avg;
  61. int qindex_delta[3];
  62. int reduce_refresh;
  63. double weight_segment;
  64. int apply_cyclic_refresh;
  65. int counter_encode_maxq_scene_change;
  66. int skip_flat_static_blocks;
  67. };
  68. struct VP9_COMP;
  69. typedef struct CYCLIC_REFRESH CYCLIC_REFRESH;
  70. CYCLIC_REFRESH *vp9_cyclic_refresh_alloc(int mi_rows, int mi_cols);
  71. void vp9_cyclic_refresh_free(CYCLIC_REFRESH *cr);
  72. // Estimate the bits, incorporating the delta-q from segment 1, after encoding
  73. // the frame.
  74. int vp9_cyclic_refresh_estimate_bits_at_q(const struct VP9_COMP *cpi,
  75. double correction_factor);
  76. // Estimate the bits per mb, for a given q = i and a corresponding delta-q
  77. // (for segment 1), prior to encoding the frame.
  78. int vp9_cyclic_refresh_rc_bits_per_mb(const struct VP9_COMP *cpi, int i,
  79. double correction_factor);
  80. // Prior to coding a given prediction block, of size bsize at (mi_row, mi_col),
  81. // check if we should reset the segment_id, and update the cyclic_refresh map
  82. // and segmentation map.
  83. void vp9_cyclic_refresh_update_segment(struct VP9_COMP *const cpi,
  84. MODE_INFO *const mi, int mi_row,
  85. int mi_col, BLOCK_SIZE bsize,
  86. int64_t rate, int64_t dist, int skip,
  87. struct macroblock_plane *const p);
  88. void vp9_cyclic_refresh_update_sb_postencode(struct VP9_COMP *const cpi,
  89. const MODE_INFO *const mi,
  90. int mi_row, int mi_col,
  91. BLOCK_SIZE bsize);
  92. // From the just encoded frame: update the actual number of blocks that were
  93. // applied the segment delta q, and the amount of low motion in the frame.
  94. // Also check conditions for forcing golden update, or preventing golden
  95. // update if the period is up.
  96. void vp9_cyclic_refresh_postencode(struct VP9_COMP *const cpi);
  97. // Set golden frame update interval, for non-svc 1 pass CBR mode.
  98. void vp9_cyclic_refresh_set_golden_update(struct VP9_COMP *const cpi);
  99. // Set/update global/frame level refresh parameters.
  100. void vp9_cyclic_refresh_update_parameters(struct VP9_COMP *const cpi);
  101. // Setup cyclic background refresh: set delta q and segmentation map.
  102. void vp9_cyclic_refresh_setup(struct VP9_COMP *const cpi);
  103. int vp9_cyclic_refresh_get_rdmult(const CYCLIC_REFRESH *cr);
  104. void vp9_cyclic_refresh_reset_resize(struct VP9_COMP *const cpi);
  105. static INLINE int cyclic_refresh_segment_id_boosted(int segment_id) {
  106. return segment_id == CR_SEGMENT_ID_BOOST1 ||
  107. segment_id == CR_SEGMENT_ID_BOOST2;
  108. }
  109. static INLINE int cyclic_refresh_segment_id(int segment_id) {
  110. if (segment_id == CR_SEGMENT_ID_BOOST1)
  111. return CR_SEGMENT_ID_BOOST1;
  112. else if (segment_id == CR_SEGMENT_ID_BOOST2)
  113. return CR_SEGMENT_ID_BOOST2;
  114. else
  115. return CR_SEGMENT_ID_BASE;
  116. }
  117. void vp9_cyclic_refresh_limit_q(const struct VP9_COMP *cpi, int *q);
  118. #ifdef __cplusplus
  119. } // extern "C"
  120. #endif
  121. #endif // VPX_VP9_ENCODER_VP9_AQ_CYCLICREFRESH_H_