vp8cx.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  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. /*!\defgroup vp8_encoder WebM VP8 Encoder
  11. * \ingroup vp8
  12. *
  13. * @{
  14. */
  15. #include "vp8.h"
  16. /*!\file
  17. * \brief Provides definitions for using the VP8 encoder algorithm within the
  18. * vpx Codec Interface.
  19. */
  20. #ifndef VP8CX_H
  21. #define VP8CX_H
  22. #include "vpx_codec_impl_top.h"
  23. /*!\name Algorithm interface for VP8
  24. *
  25. * This interface provides the capability to encode raw VP8 streams, as would
  26. * be found in AVI files.
  27. * @{
  28. */
  29. extern vpx_codec_iface_t vpx_codec_vp8_cx_algo;
  30. extern vpx_codec_iface_t* vpx_codec_vp8_cx(void);
  31. /*!@} - end algorithm interface member group*/
  32. /*
  33. * Algorithm Flags
  34. */
  35. /*!\brief Don't reference the last frame
  36. *
  37. * When this flag is set, the encoder will not use the last frame as a
  38. * predictor. When not set, the encoder will choose whether to use the
  39. * last frame or not automatically.
  40. */
  41. #define VP8_EFLAG_NO_REF_LAST (1<<16)
  42. /*!\brief Don't reference the golden frame
  43. *
  44. * When this flag is set, the encoder will not use the golden frame as a
  45. * predictor. When not set, the encoder will choose whether to use the
  46. * golden frame or not automatically.
  47. */
  48. #define VP8_EFLAG_NO_REF_GF (1<<17)
  49. /*!\brief Don't reference the alternate reference frame
  50. *
  51. * When this flag is set, the encoder will not use the alt ref frame as a
  52. * predictor. When not set, the encoder will choose whether to use the
  53. * alt ref frame or not automatically.
  54. */
  55. #define VP8_EFLAG_NO_REF_ARF (1<<21)
  56. /*!\brief Don't update the last frame
  57. *
  58. * When this flag is set, the encoder will not update the last frame with
  59. * the contents of the current frame.
  60. */
  61. #define VP8_EFLAG_NO_UPD_LAST (1<<18)
  62. /*!\brief Don't update the golden frame
  63. *
  64. * When this flag is set, the encoder will not update the golden frame with
  65. * the contents of the current frame.
  66. */
  67. #define VP8_EFLAG_NO_UPD_GF (1<<22)
  68. /*!\brief Don't update the alternate reference frame
  69. *
  70. * When this flag is set, the encoder will not update the alt ref frame with
  71. * the contents of the current frame.
  72. */
  73. #define VP8_EFLAG_NO_UPD_ARF (1<<23)
  74. /*!\brief Force golden frame update
  75. *
  76. * When this flag is set, the encoder copy the contents of the current frame
  77. * to the golden frame buffer.
  78. */
  79. #define VP8_EFLAG_FORCE_GF (1<<19)
  80. /*!\brief Force alternate reference frame update
  81. *
  82. * When this flag is set, the encoder copy the contents of the current frame
  83. * to the alternate reference frame buffer.
  84. */
  85. #define VP8_EFLAG_FORCE_ARF (1<<24)
  86. /*!\brief Disable entropy update
  87. *
  88. * When this flag is set, the encoder will not update its internal entropy
  89. * model based on the entropy of this frame.
  90. */
  91. #define VP8_EFLAG_NO_UPD_ENTROPY (1<<20)
  92. /*!\brief VP8 encoder control functions
  93. *
  94. * This set of macros define the control functions available for the VP8
  95. * encoder interface.
  96. *
  97. * \sa #vpx_codec_control
  98. */
  99. enum vp8e_enc_control_id {
  100. VP8E_UPD_ENTROPY = 5, /**< control function to set mode of entropy update in encoder */
  101. VP8E_UPD_REFERENCE, /**< control function to set reference update mode in encoder */
  102. VP8E_USE_REFERENCE, /**< control function to set which reference frame encoder can use */
  103. VP8E_SET_ROI_MAP, /**< control function to pass an ROI map to encoder */
  104. VP8E_SET_ACTIVEMAP, /**< control function to pass an Active map to encoder */
  105. VP8E_SET_SCALEMODE = 11, /**< control function to set encoder scaling mode */
  106. /*!\brief control function to set vp8 encoder cpuused
  107. *
  108. * Changes in this value influences, among others, the encoder's selection
  109. * of motion estimation methods. Values greater than 0 will increase encoder
  110. * speed at the expense of quality.
  111. * The full set of adjustments can be found in
  112. * onyx_if.c:vp8_set_speed_features().
  113. * \todo List highlights of the changes at various levels.
  114. *
  115. * \note Valid range: -16..16
  116. */
  117. VP8E_SET_CPUUSED = 13,
  118. VP8E_SET_ENABLEAUTOALTREF, /**< control function to enable vp8 to automatic set and use altref frame */
  119. VP8E_SET_NOISE_SENSITIVITY, /**< control function to set noise sensitivity */
  120. VP8E_SET_SHARPNESS, /**< control function to set sharpness */
  121. VP8E_SET_STATIC_THRESHOLD, /**< control function to set the threshold for macroblocks treated static */
  122. VP8E_SET_TOKEN_PARTITIONS, /**< control function to set the number of token partitions */
  123. VP8E_GET_LAST_QUANTIZER, /**< return the quantizer chosen by the
  124. encoder for the last frame using the internal
  125. scale */
  126. VP8E_GET_LAST_QUANTIZER_64, /**< return the quantizer chosen by the
  127. encoder for the last frame, using the 0..63
  128. scale as used by the rc_*_quantizer config
  129. parameters */
  130. VP8E_SET_ARNR_MAXFRAMES, /**< control function to set the max number of frames blurred creating arf*/
  131. VP8E_SET_ARNR_STRENGTH , /**< control function to set the filter strength for the arf */
  132. VP8E_SET_ARNR_TYPE , /**< control function to set the type of filter to use for the arf*/
  133. VP8E_SET_TUNING, /**< control function to set visual tuning */
  134. /*!\brief control function to set constrained quality level
  135. *
  136. * \attention For this value to be used vpx_codec_enc_cfg_t::g_usage must be
  137. * set to #VPX_CQ.
  138. * \note Valid range: 0..63
  139. */
  140. VP8E_SET_CQ_LEVEL,
  141. /*!\brief Max data rate for Intra frames
  142. *
  143. * This value controls additional clamping on the maximum size of a
  144. * keyframe. It is expressed as a percentage of the average
  145. * per-frame bitrate, with the special (and default) value 0 meaning
  146. * unlimited, or no additional clamping beyond the codec's built-in
  147. * algorithm.
  148. *
  149. * For example, to allocate no more than 4.5 frames worth of bitrate
  150. * to a keyframe, set this to 450.
  151. *
  152. */
  153. VP8E_SET_MAX_INTRA_BITRATE_PCT
  154. };
  155. /*!\brief vpx 1-D scaling mode
  156. *
  157. * This set of constants define 1-D vpx scaling modes
  158. */
  159. typedef enum vpx_scaling_mode_1d {
  160. VP8E_NORMAL = 0,
  161. VP8E_FOURFIVE = 1,
  162. VP8E_THREEFIVE = 2,
  163. VP8E_ONETWO = 3
  164. } VPX_SCALING_MODE;
  165. /*!\brief vpx region of interest map
  166. *
  167. * These defines the data structures for the region of interest map
  168. *
  169. */
  170. typedef struct vpx_roi_map {
  171. unsigned char *roi_map; /**< specify an id between 0 and 3 for each 16x16 region within a frame */
  172. unsigned int rows; /**< number of rows */
  173. unsigned int cols; /**< number of cols */
  174. int delta_q[4]; /**< quantizer delta [-64, 64] off baseline for regions with id between 0 and 3*/
  175. int delta_lf[4]; /**< loop filter strength delta [-32, 32] for regions with id between 0 and 3 */
  176. unsigned int static_threshold[4];/**< threshold for region to be treated as static */
  177. } vpx_roi_map_t;
  178. /*!\brief vpx active region map
  179. *
  180. * These defines the data structures for active region map
  181. *
  182. */
  183. typedef struct vpx_active_map {
  184. unsigned char *active_map; /**< specify an on (1) or off (0) each 16x16 region within a frame */
  185. unsigned int rows; /**< number of rows */
  186. unsigned int cols; /**< number of cols */
  187. } vpx_active_map_t;
  188. /*!\brief vpx image scaling mode
  189. *
  190. * This defines the data structure for image scaling mode
  191. *
  192. */
  193. typedef struct vpx_scaling_mode {
  194. VPX_SCALING_MODE h_scaling_mode; /**< horizontal scaling mode */
  195. VPX_SCALING_MODE v_scaling_mode; /**< vertical scaling mode */
  196. } vpx_scaling_mode_t;
  197. /*!\brief VP8 encoding mode
  198. *
  199. * This defines VP8 encoding mode
  200. *
  201. */
  202. typedef enum {
  203. VP8_BEST_QUALITY_ENCODING,
  204. VP8_GOOD_QUALITY_ENCODING,
  205. VP8_REAL_TIME_ENCODING
  206. } vp8e_encoding_mode;
  207. /*!\brief VP8 token partition mode
  208. *
  209. * This defines VP8 partitioning mode for compressed data, i.e., the number of
  210. * sub-streams in the bitstream. Used for parallelized decoding.
  211. *
  212. */
  213. typedef enum {
  214. VP8_ONE_TOKENPARTITION = 0,
  215. VP8_TWO_TOKENPARTITION = 1,
  216. VP8_FOUR_TOKENPARTITION = 2,
  217. VP8_EIGHT_TOKENPARTITION = 3
  218. } vp8e_token_partitions;
  219. /*!\brief VP8 model tuning parameters
  220. *
  221. * Changes the encoder to tune for certain types of input material.
  222. *
  223. */
  224. typedef enum {
  225. VP8_TUNE_PSNR,
  226. VP8_TUNE_SSIM
  227. } vp8e_tuning;
  228. /*!\brief VP8 encoder control function parameter type
  229. *
  230. * Defines the data types that VP8E control functions take. Note that
  231. * additional common controls are defined in vp8.h
  232. *
  233. */
  234. /* These controls have been deprecated in favor of the flags parameter to
  235. * vpx_codec_encode(). See the definition of VP8_EFLAG_* above.
  236. */
  237. VPX_CTRL_USE_TYPE_DEPRECATED(VP8E_UPD_ENTROPY, int)
  238. VPX_CTRL_USE_TYPE_DEPRECATED(VP8E_UPD_REFERENCE, int)
  239. VPX_CTRL_USE_TYPE_DEPRECATED(VP8E_USE_REFERENCE, int)
  240. VPX_CTRL_USE_TYPE(VP8E_SET_ROI_MAP, vpx_roi_map_t *)
  241. VPX_CTRL_USE_TYPE(VP8E_SET_ACTIVEMAP, vpx_active_map_t *)
  242. VPX_CTRL_USE_TYPE(VP8E_SET_SCALEMODE, vpx_scaling_mode_t *)
  243. VPX_CTRL_USE_TYPE(VP8E_SET_CPUUSED, int)
  244. VPX_CTRL_USE_TYPE(VP8E_SET_ENABLEAUTOALTREF, unsigned int)
  245. VPX_CTRL_USE_TYPE(VP8E_SET_NOISE_SENSITIVITY, unsigned int)
  246. VPX_CTRL_USE_TYPE(VP8E_SET_SHARPNESS, unsigned int)
  247. VPX_CTRL_USE_TYPE(VP8E_SET_STATIC_THRESHOLD, unsigned int)
  248. VPX_CTRL_USE_TYPE(VP8E_SET_TOKEN_PARTITIONS, vp8e_token_partitions)
  249. VPX_CTRL_USE_TYPE(VP8E_SET_ARNR_MAXFRAMES, unsigned int)
  250. VPX_CTRL_USE_TYPE(VP8E_SET_ARNR_STRENGTH , unsigned int)
  251. VPX_CTRL_USE_TYPE(VP8E_SET_ARNR_TYPE , unsigned int)
  252. VPX_CTRL_USE_TYPE(VP8E_SET_TUNING, vp8e_tuning)
  253. VPX_CTRL_USE_TYPE(VP8E_SET_CQ_LEVEL , unsigned int)
  254. VPX_CTRL_USE_TYPE(VP8E_GET_LAST_QUANTIZER, int *)
  255. VPX_CTRL_USE_TYPE(VP8E_GET_LAST_QUANTIZER_64, int *)
  256. VPX_CTRL_USE_TYPE(VP8E_SET_MAX_INTRA_BITRATE_PCT, unsigned int)
  257. /*! @} - end defgroup vp8_encoder */
  258. #include "vpx_codec_impl_bottom.h"
  259. #endif