vp8cx.h 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553
  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 VPX_VP8CX_H_
  11. #define VPX_VP8CX_H_
  12. /*!\defgroup vp8_encoder WebM VP8 Encoder
  13. * \ingroup vp8
  14. *
  15. * @{
  16. */
  17. #include "./vp8.h"
  18. /*!\file
  19. * \brief Provides definitions for using the VP8 encoder algorithm within the
  20. * vpx Codec Interface.
  21. */
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. /*!\name Algorithm interface for VP8
  26. *
  27. * This interface provides the capability to encode raw VP8 streams, as would
  28. * be found in AVI files.
  29. * @{
  30. */
  31. extern vpx_codec_iface_t vpx_codec_vp8_cx_algo;
  32. extern vpx_codec_iface_t *vpx_codec_vp8_cx(void);
  33. /* TODO(jkoleszar): These move to VP9 in a later patch set. */
  34. extern vpx_codec_iface_t vpx_codec_vp9_cx_algo;
  35. extern vpx_codec_iface_t *vpx_codec_vp9_cx(void);
  36. /*!@} - end algorithm interface member group*/
  37. /*
  38. * Algorithm Flags
  39. */
  40. /*!\brief Don't reference the last frame
  41. *
  42. * When this flag is set, the encoder will not use the last frame as a
  43. * predictor. When not set, the encoder will choose whether to use the
  44. * last frame or not automatically.
  45. */
  46. #define VP8_EFLAG_NO_REF_LAST (1<<16)
  47. /*!\brief Don't reference the golden frame
  48. *
  49. * When this flag is set, the encoder will not use the golden frame as a
  50. * predictor. When not set, the encoder will choose whether to use the
  51. * golden frame or not automatically.
  52. */
  53. #define VP8_EFLAG_NO_REF_GF (1<<17)
  54. /*!\brief Don't reference the alternate reference frame
  55. *
  56. * When this flag is set, the encoder will not use the alt ref frame as a
  57. * predictor. When not set, the encoder will choose whether to use the
  58. * alt ref frame or not automatically.
  59. */
  60. #define VP8_EFLAG_NO_REF_ARF (1<<21)
  61. /*!\brief Don't update the last frame
  62. *
  63. * When this flag is set, the encoder will not update the last frame with
  64. * the contents of the current frame.
  65. */
  66. #define VP8_EFLAG_NO_UPD_LAST (1<<18)
  67. /*!\brief Don't update the golden frame
  68. *
  69. * When this flag is set, the encoder will not update the golden frame with
  70. * the contents of the current frame.
  71. */
  72. #define VP8_EFLAG_NO_UPD_GF (1<<22)
  73. /*!\brief Don't update the alternate reference frame
  74. *
  75. * When this flag is set, the encoder will not update the alt ref frame with
  76. * the contents of the current frame.
  77. */
  78. #define VP8_EFLAG_NO_UPD_ARF (1<<23)
  79. /*!\brief Force golden frame update
  80. *
  81. * When this flag is set, the encoder copy the contents of the current frame
  82. * to the golden frame buffer.
  83. */
  84. #define VP8_EFLAG_FORCE_GF (1<<19)
  85. /*!\brief Force alternate reference frame update
  86. *
  87. * When this flag is set, the encoder copy the contents of the current frame
  88. * to the alternate reference frame buffer.
  89. */
  90. #define VP8_EFLAG_FORCE_ARF (1<<24)
  91. /*!\brief Disable entropy update
  92. *
  93. * When this flag is set, the encoder will not update its internal entropy
  94. * model based on the entropy of this frame.
  95. */
  96. #define VP8_EFLAG_NO_UPD_ENTROPY (1<<20)
  97. /*!\brief VP8 encoder control functions
  98. *
  99. * This set of macros define the control functions available for the VP8
  100. * encoder interface.
  101. *
  102. * \sa #vpx_codec_control
  103. */
  104. enum vp8e_enc_control_id {
  105. VP8E_UPD_ENTROPY = 5, /**< control function to set mode of entropy update in encoder */
  106. VP8E_UPD_REFERENCE, /**< control function to set reference update mode in encoder */
  107. VP8E_USE_REFERENCE, /**< control function to set which reference frame encoder can use */
  108. VP8E_SET_ROI_MAP, /**< control function to pass an ROI map to encoder */
  109. VP8E_SET_ACTIVEMAP, /**< control function to pass an Active map to encoder */
  110. VP8E_SET_SCALEMODE = 11, /**< control function to set encoder scaling mode */
  111. /*!\brief control function to set vp8 encoder cpuused
  112. *
  113. * Changes in this value influences, among others, the encoder's selection
  114. * of motion estimation methods. Values greater than 0 will increase encoder
  115. * speed at the expense of quality.
  116. * The full set of adjustments can be found in
  117. * onyx_if.c:vp8_set_speed_features().
  118. * \todo List highlights of the changes at various levels.
  119. *
  120. * \note Valid range: -16..16
  121. */
  122. VP8E_SET_CPUUSED = 13,
  123. VP8E_SET_ENABLEAUTOALTREF, /**< control function to enable vp8 to automatic set and use altref frame */
  124. /*!\brief control function to set noise sensitivity
  125. *
  126. * 0: off, 1: OnYOnly, 2: OnYUV,
  127. * 3: OnYUVAggressive, 4: Adaptive
  128. */
  129. VP8E_SET_NOISE_SENSITIVITY,
  130. VP8E_SET_SHARPNESS, /**< control function to set sharpness */
  131. VP8E_SET_STATIC_THRESHOLD, /**< control function to set the threshold for macroblocks treated static */
  132. VP8E_SET_TOKEN_PARTITIONS, /**< control function to set the number of token partitions */
  133. VP8E_GET_LAST_QUANTIZER, /**< return the quantizer chosen by the
  134. encoder for the last frame using the internal
  135. scale */
  136. VP8E_GET_LAST_QUANTIZER_64, /**< return the quantizer chosen by the
  137. encoder for the last frame, using the 0..63
  138. scale as used by the rc_*_quantizer config
  139. parameters */
  140. VP8E_SET_ARNR_MAXFRAMES, /**< control function to set the max number of frames blurred creating arf*/
  141. VP8E_SET_ARNR_STRENGTH, //!< control function to set the filter
  142. //!< strength for the arf
  143. /*!\deprecated control function to set the filter type to use for the arf */
  144. VP8E_SET_ARNR_TYPE,
  145. VP8E_SET_TUNING, /**< control function to set visual tuning */
  146. /*!\brief control function to set constrained quality level
  147. *
  148. * \attention For this value to be used vpx_codec_enc_cfg_t::g_usage must be
  149. * set to #VPX_CQ.
  150. * \note Valid range: 0..63
  151. */
  152. VP8E_SET_CQ_LEVEL,
  153. /*!\brief Max data rate for Intra frames
  154. *
  155. * This value controls additional clamping on the maximum size of a
  156. * keyframe. It is expressed as a percentage of the average
  157. * per-frame bitrate, with the special (and default) value 0 meaning
  158. * unlimited, or no additional clamping beyond the codec's built-in
  159. * algorithm.
  160. *
  161. * For example, to allocate no more than 4.5 frames worth of bitrate
  162. * to a keyframe, set this to 450.
  163. *
  164. */
  165. VP8E_SET_MAX_INTRA_BITRATE_PCT,
  166. VP8E_SET_FRAME_FLAGS, /**< control function to set reference and update frame flags */
  167. /*!\brief Max data rate for Inter frames
  168. *
  169. * This value controls additional clamping on the maximum size of an
  170. * inter frame. It is expressed as a percentage of the average
  171. * per-frame bitrate, with the special (and default) value 0 meaning
  172. * unlimited, or no additional clamping beyond the codec's built-in
  173. * algorithm.
  174. *
  175. * For example, to allow no more than 4.5 frames worth of bitrate
  176. * to an inter frame, set this to 450.
  177. *
  178. */
  179. VP8E_SET_MAX_INTER_BITRATE_PCT,
  180. /*!\brief Boost percentage for Golden Frame in CBR mode
  181. *
  182. * This value controls the amount of boost given to Golden Frame in
  183. * CBR mode. It is expressed as a percentage of the average
  184. * per-frame bitrate, with the special (and default) value 0 meaning
  185. * the feature is off, i.e., no golden frame boost in CBR mode and
  186. * average bitrate target is used.
  187. *
  188. * For example, to allow 100% more bits, i.e, 2X, in a golden frame
  189. * than average frame, set this to 100.
  190. *
  191. */
  192. VP8E_SET_GF_CBR_BOOST_PCT,
  193. /*!\brief Codec control function to set the temporal layer id
  194. *
  195. * For temporal scalability: this control allows the application to set the
  196. * layer id for each frame to be encoded. Note that this control must be set
  197. * for every frame prior to encoding. The usage of this control function
  198. * supersedes the internal temporal pattern counter, which is now deprecated.
  199. */
  200. VP8E_SET_TEMPORAL_LAYER_ID,
  201. VP8E_SET_SCREEN_CONTENT_MODE, /**<control function to set encoder screen content mode */
  202. /*!\brief Codec control function to set lossless encoding mode
  203. *
  204. * VP9 can operate in lossless encoding mode, in which the bitstream
  205. * produced will be able to decode and reconstruct a perfect copy of
  206. * input source. This control function provides a mean to switch encoder
  207. * into lossless coding mode(1) or normal coding mode(0) that may be lossy.
  208. * 0 = lossy coding mode
  209. * 1 = lossless coding mode
  210. *
  211. * By default, encoder operates in normal coding mode (maybe lossy).
  212. */
  213. VP9E_SET_LOSSLESS,
  214. /*!\brief Codec control function to set number of tile columns
  215. *
  216. * In encoding and decoding, VP9 allows an input image frame be partitioned
  217. * into separated vertical tile columns, which can be encoded or decoded
  218. * independently. This enables easy implementation of parallel encoding and
  219. * decoding. This control requests the encoder to use column tiles in
  220. * encoding an input frame, with number of tile columns (in Log2 unit) as
  221. * the parameter:
  222. * 0 = 1 tile column
  223. * 1 = 2 tile columns
  224. * 2 = 4 tile columns
  225. * .....
  226. * n = 2**n tile columns
  227. * The requested tile columns will be capped by encoder based on image size
  228. * limitation (The minimum width of a tile column is 256 pixel, the maximum
  229. * is 4096).
  230. *
  231. * By default, the value is 0, i.e. one single column tile for entire image.
  232. */
  233. VP9E_SET_TILE_COLUMNS,
  234. /*!\brief Codec control function to set number of tile rows
  235. *
  236. * In encoding and decoding, VP9 allows an input image frame be partitioned
  237. * into separated horizontal tile rows. Tile rows are encoded or decoded
  238. * sequentially. Even though encoding/decoding of later tile rows depends on
  239. * earlier ones, this allows the encoder to output data packets for tile rows
  240. * prior to completely processing all tile rows in a frame, thereby reducing
  241. * the latency in processing between input and output. The parameter
  242. * for this control describes the number of tile rows, which has a valid
  243. * range [0, 2]:
  244. * 0 = 1 tile row
  245. * 1 = 2 tile rows
  246. * 2 = 4 tile rows
  247. *
  248. * By default, the value is 0, i.e. one single row tile for entire image.
  249. */
  250. VP9E_SET_TILE_ROWS,
  251. /*!\brief Codec control function to enable frame parallel decoding feature
  252. *
  253. * VP9 has a bitstream feature to reduce decoding dependency between frames
  254. * by turning off backward update of probability context used in encoding
  255. * and decoding. This allows staged parallel processing of more than one
  256. * video frames in the decoder. This control function provides a mean to
  257. * turn this feature on or off for bitstreams produced by encoder.
  258. *
  259. * By default, this feature is off.
  260. */
  261. VP9E_SET_FRAME_PARALLEL_DECODING,
  262. /*!\brief Codec control function to set adaptive quantization mode
  263. *
  264. * VP9 has a segment based feature that allows encoder to adaptively change
  265. * quantization parameter for each segment within a frame to improve the
  266. * subjective quality. This control makes encoder operate in one of the
  267. * several AQ_modes supported.
  268. *
  269. * By default, encoder operates with AQ_Mode 0(adaptive quantization off).
  270. */
  271. VP9E_SET_AQ_MODE,
  272. /*!\brief Codec control function to enable/disable periodic Q boost
  273. *
  274. * One VP9 encoder speed feature is to enable quality boost by lowering
  275. * frame level Q periodically. This control function provides a mean to
  276. * turn on/off this feature.
  277. * 0 = off
  278. * 1 = on
  279. *
  280. * By default, the encoder is allowed to use this feature for appropriate
  281. * encoding modes.
  282. */
  283. VP9E_SET_FRAME_PERIODIC_BOOST,
  284. /*!\brief control function to set noise sensitivity
  285. *
  286. * 0: off, 1: OnYOnly
  287. */
  288. VP9E_SET_NOISE_SENSITIVITY,
  289. /*!\brief control function to turn on/off SVC in encoder.
  290. * \note Return value is VPX_CODEC_INVALID_PARAM if the encoder does not
  291. * support SVC in its current encoding mode
  292. * 0: off, 1: on
  293. */
  294. VP9E_SET_SVC,
  295. /*!\brief control function to set parameters for SVC.
  296. * \note Parameters contain min_q, max_q, scaling factor for each of the
  297. * SVC layers.
  298. */
  299. VP9E_SET_SVC_PARAMETERS,
  300. /*!\brief control function to set svc layer for spatial and temporal.
  301. * \note Valid ranges: 0..#vpx_codec_enc_cfg::ss_number_layers for spatial
  302. * layer and 0..#vpx_codec_enc_cfg::ts_number_layers for
  303. * temporal layer.
  304. */
  305. VP9E_SET_SVC_LAYER_ID,
  306. /*!\brief control function to set content type.
  307. * \note Valid parameter range:
  308. * VP9E_CONTENT_DEFAULT = Regular video content (Default)
  309. * VP9E_CONTENT_SCREEN = Screen capture content
  310. */
  311. VP9E_SET_TUNE_CONTENT,
  312. /*!\brief control function to get svc layer ID.
  313. * \note The layer ID returned is for the data packet from the registered
  314. * callback function.
  315. */
  316. VP9E_GET_SVC_LAYER_ID,
  317. /*!\brief control function to register callback for getting per layer packet.
  318. * \note Parameter for this control function is a structure with a callback
  319. * function and a pointer to private data used by the callback.
  320. */
  321. VP9E_REGISTER_CX_CALLBACK,
  322. /*!\brief control function to set color space info.
  323. * \note Valid ranges: 0..7, default is "UNKNOWN".
  324. * 0 = UNKNOWN,
  325. * 1 = BT_601
  326. * 2 = BT_709
  327. * 3 = SMPTE_170
  328. * 4 = SMPTE_240
  329. * 5 = BT_2020
  330. * 6 = RESERVED
  331. * 7 = SRGB
  332. */
  333. VP9E_SET_COLOR_SPACE,
  334. };
  335. /*!\brief vpx 1-D scaling mode
  336. *
  337. * This set of constants define 1-D vpx scaling modes
  338. */
  339. typedef enum vpx_scaling_mode_1d {
  340. VP8E_NORMAL = 0,
  341. VP8E_FOURFIVE = 1,
  342. VP8E_THREEFIVE = 2,
  343. VP8E_ONETWO = 3
  344. } VPX_SCALING_MODE;
  345. /*!\brief vpx region of interest map
  346. *
  347. * These defines the data structures for the region of interest map
  348. *
  349. */
  350. typedef struct vpx_roi_map {
  351. /*! An id between 0 and 3 for each 16x16 region within a frame. */
  352. unsigned char *roi_map;
  353. unsigned int rows; /**< Number of rows. */
  354. unsigned int cols; /**< Number of columns. */
  355. // TODO(paulwilkins): broken for VP9 which has 8 segments
  356. // q and loop filter deltas for each segment
  357. // (see MAX_MB_SEGMENTS)
  358. int delta_q[4]; /**< Quantizer deltas. */
  359. int delta_lf[4]; /**< Loop filter deltas. */
  360. /*! Static breakout threshold for each segment. */
  361. unsigned int static_threshold[4];
  362. } vpx_roi_map_t;
  363. /*!\brief vpx active region map
  364. *
  365. * These defines the data structures for active region map
  366. *
  367. */
  368. typedef struct vpx_active_map {
  369. unsigned char *active_map; /**< specify an on (1) or off (0) each 16x16 region within a frame */
  370. unsigned int rows; /**< number of rows */
  371. unsigned int cols; /**< number of cols */
  372. } vpx_active_map_t;
  373. /*!\brief vpx image scaling mode
  374. *
  375. * This defines the data structure for image scaling mode
  376. *
  377. */
  378. typedef struct vpx_scaling_mode {
  379. VPX_SCALING_MODE h_scaling_mode; /**< horizontal scaling mode */
  380. VPX_SCALING_MODE v_scaling_mode; /**< vertical scaling mode */
  381. } vpx_scaling_mode_t;
  382. /*!\brief VP8 token partition mode
  383. *
  384. * This defines VP8 partitioning mode for compressed data, i.e., the number of
  385. * sub-streams in the bitstream. Used for parallelized decoding.
  386. *
  387. */
  388. typedef enum {
  389. VP8_ONE_TOKENPARTITION = 0,
  390. VP8_TWO_TOKENPARTITION = 1,
  391. VP8_FOUR_TOKENPARTITION = 2,
  392. VP8_EIGHT_TOKENPARTITION = 3
  393. } vp8e_token_partitions;
  394. /*!brief VP9 encoder content type */
  395. typedef enum {
  396. VP9E_CONTENT_DEFAULT,
  397. VP9E_CONTENT_SCREEN,
  398. VP9E_CONTENT_INVALID
  399. } vp9e_tune_content;
  400. /*!\brief VP8 model tuning parameters
  401. *
  402. * Changes the encoder to tune for certain types of input material.
  403. *
  404. */
  405. typedef enum {
  406. VP8_TUNE_PSNR,
  407. VP8_TUNE_SSIM
  408. } vp8e_tuning;
  409. /*!\brief vp9 svc layer parameters
  410. *
  411. * This defines the spatial and temporal layer id numbers for svc encoding.
  412. * This is used with the #VP9E_SET_SVC_LAYER_ID control to set the spatial and
  413. * temporal layer id for the current frame.
  414. *
  415. */
  416. typedef struct vpx_svc_layer_id {
  417. int spatial_layer_id; /**< Spatial layer id number. */
  418. int temporal_layer_id; /**< Temporal layer id number. */
  419. } vpx_svc_layer_id_t;
  420. /*!\brief VP8 encoder control function parameter type
  421. *
  422. * Defines the data types that VP8E control functions take. Note that
  423. * additional common controls are defined in vp8.h
  424. *
  425. */
  426. /* These controls have been deprecated in favor of the flags parameter to
  427. * vpx_codec_encode(). See the definition of VP8_EFLAG_* above.
  428. */
  429. VPX_CTRL_USE_TYPE_DEPRECATED(VP8E_UPD_ENTROPY, int)
  430. VPX_CTRL_USE_TYPE_DEPRECATED(VP8E_UPD_REFERENCE, int)
  431. VPX_CTRL_USE_TYPE_DEPRECATED(VP8E_USE_REFERENCE, int)
  432. VPX_CTRL_USE_TYPE(VP8E_SET_FRAME_FLAGS, int)
  433. VPX_CTRL_USE_TYPE(VP8E_SET_TEMPORAL_LAYER_ID, int)
  434. VPX_CTRL_USE_TYPE(VP8E_SET_ROI_MAP, vpx_roi_map_t *)
  435. VPX_CTRL_USE_TYPE(VP8E_SET_ACTIVEMAP, vpx_active_map_t *)
  436. VPX_CTRL_USE_TYPE(VP8E_SET_SCALEMODE, vpx_scaling_mode_t *)
  437. VPX_CTRL_USE_TYPE(VP9E_SET_SVC, int)
  438. VPX_CTRL_USE_TYPE(VP9E_SET_SVC_PARAMETERS, void *)
  439. VPX_CTRL_USE_TYPE(VP9E_REGISTER_CX_CALLBACK, void *)
  440. VPX_CTRL_USE_TYPE(VP9E_SET_SVC_LAYER_ID, vpx_svc_layer_id_t *)
  441. VPX_CTRL_USE_TYPE(VP8E_SET_CPUUSED, int)
  442. VPX_CTRL_USE_TYPE(VP8E_SET_ENABLEAUTOALTREF, unsigned int)
  443. VPX_CTRL_USE_TYPE(VP8E_SET_NOISE_SENSITIVITY, unsigned int)
  444. VPX_CTRL_USE_TYPE(VP8E_SET_SHARPNESS, unsigned int)
  445. VPX_CTRL_USE_TYPE(VP8E_SET_STATIC_THRESHOLD, unsigned int)
  446. VPX_CTRL_USE_TYPE(VP8E_SET_TOKEN_PARTITIONS, int) /* vp8e_token_partitions */
  447. VPX_CTRL_USE_TYPE(VP8E_SET_ARNR_MAXFRAMES, unsigned int)
  448. VPX_CTRL_USE_TYPE(VP8E_SET_ARNR_STRENGTH, unsigned int)
  449. VPX_CTRL_USE_TYPE_DEPRECATED(VP8E_SET_ARNR_TYPE, unsigned int)
  450. VPX_CTRL_USE_TYPE(VP8E_SET_TUNING, int) /* vp8e_tuning */
  451. VPX_CTRL_USE_TYPE(VP8E_SET_CQ_LEVEL, unsigned int)
  452. VPX_CTRL_USE_TYPE(VP9E_SET_TILE_COLUMNS, int)
  453. VPX_CTRL_USE_TYPE(VP9E_SET_TILE_ROWS, int)
  454. VPX_CTRL_USE_TYPE(VP8E_GET_LAST_QUANTIZER, int *)
  455. VPX_CTRL_USE_TYPE(VP8E_GET_LAST_QUANTIZER_64, int *)
  456. VPX_CTRL_USE_TYPE(VP9E_GET_SVC_LAYER_ID, vpx_svc_layer_id_t *)
  457. VPX_CTRL_USE_TYPE(VP8E_SET_MAX_INTRA_BITRATE_PCT, unsigned int)
  458. VPX_CTRL_USE_TYPE(VP8E_SET_MAX_INTER_BITRATE_PCT, unsigned int)
  459. VPX_CTRL_USE_TYPE(VP8E_SET_GF_CBR_BOOST_PCT, unsigned int)
  460. VPX_CTRL_USE_TYPE(VP8E_SET_SCREEN_CONTENT_MODE, unsigned int)
  461. VPX_CTRL_USE_TYPE(VP9E_SET_LOSSLESS, unsigned int)
  462. VPX_CTRL_USE_TYPE(VP9E_SET_FRAME_PARALLEL_DECODING, unsigned int)
  463. VPX_CTRL_USE_TYPE(VP9E_SET_AQ_MODE, unsigned int)
  464. VPX_CTRL_USE_TYPE(VP9E_SET_FRAME_PERIODIC_BOOST, unsigned int)
  465. VPX_CTRL_USE_TYPE(VP9E_SET_NOISE_SENSITIVITY, unsigned int)
  466. VPX_CTRL_USE_TYPE(VP9E_SET_TUNE_CONTENT, int) /* vp9e_tune_content */
  467. VPX_CTRL_USE_TYPE(VP9E_SET_COLOR_SPACE, int)
  468. /*! @} - end defgroup vp8_encoder */
  469. #ifdef __cplusplus
  470. } // extern "C"
  471. #endif
  472. #endif // VPX_VP8CX_H_