vp8.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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 VP8
  11. * \ingroup codecs
  12. * VP8 is a video compression algorithm that uses motion
  13. * compensated prediction, Discrete Cosine Transform (DCT) coding of the
  14. * prediction error signal and context dependent entropy coding techniques
  15. * based on arithmetic principles. It features:
  16. * - YUV 4:2:0 image format
  17. * - Macro-block based coding (16x16 luma plus two 8x8 chroma)
  18. * - 1/4 (1/8) pixel accuracy motion compensated prediction
  19. * - 4x4 DCT transform
  20. * - 128 level linear quantizer
  21. * - In loop deblocking filter
  22. * - Context-based entropy coding
  23. *
  24. * @{
  25. */
  26. /*!\file
  27. * \brief Provides controls common to both the VP8 encoder and decoder.
  28. */
  29. #ifndef VPX_VPX_VP8_H_
  30. #define VPX_VPX_VP8_H_
  31. #include "./vpx_codec.h"
  32. #include "./vpx_image.h"
  33. #ifdef __cplusplus
  34. extern "C" {
  35. #endif
  36. /*!\brief Control functions
  37. *
  38. * The set of macros define the control functions of VP8 interface
  39. */
  40. enum vp8_com_control_id {
  41. /*!\brief pass in an external frame into decoder to be used as reference frame
  42. */
  43. VP8_SET_REFERENCE = 1,
  44. VP8_COPY_REFERENCE = 2, /**< get a copy of reference frame from the decoder */
  45. VP8_SET_POSTPROC = 3, /**< set the decoder's post processing settings */
  46. /* TODO(jkoleszar): The encoder incorrectly reuses some of these values (5+)
  47. * for its control ids. These should be migrated to something like the
  48. * VP8_DECODER_CTRL_ID_START range next time we're ready to break the ABI.
  49. */
  50. VP9_GET_REFERENCE = 128, /**< get a pointer to a reference frame */
  51. VP8_COMMON_CTRL_ID_MAX,
  52. VP8_DECODER_CTRL_ID_START = 256
  53. };
  54. /*!\brief post process flags
  55. *
  56. * The set of macros define VP8 decoder post processing flags
  57. */
  58. enum vp8_postproc_level {
  59. VP8_NOFILTERING = 0,
  60. VP8_DEBLOCK = 1 << 0,
  61. VP8_DEMACROBLOCK = 1 << 1,
  62. VP8_ADDNOISE = 1 << 2,
  63. VP8_MFQE = 1 << 3
  64. };
  65. /*!\brief post process flags
  66. *
  67. * This define a structure that describe the post processing settings. For
  68. * the best objective measure (using the PSNR metric) set post_proc_flag
  69. * to VP8_DEBLOCK and deblocking_level to 1.
  70. */
  71. typedef struct vp8_postproc_cfg {
  72. /*!\brief the types of post processing to be done, should be combination of
  73. * "vp8_postproc_level" */
  74. int post_proc_flag;
  75. int deblocking_level; /**< the strength of deblocking, valid range [0, 16] */
  76. int noise_level; /**< the strength of additive noise, valid range [0, 16] */
  77. } vp8_postproc_cfg_t;
  78. /*!\brief reference frame type
  79. *
  80. * The set of macros define the type of VP8 reference frames
  81. */
  82. typedef enum vpx_ref_frame_type {
  83. VP8_LAST_FRAME = 1,
  84. VP8_GOLD_FRAME = 2,
  85. VP8_ALTR_FRAME = 4
  86. } vpx_ref_frame_type_t;
  87. /*!\brief reference frame data struct
  88. *
  89. * Define the data struct to access vp8 reference frames.
  90. */
  91. typedef struct vpx_ref_frame {
  92. vpx_ref_frame_type_t frame_type; /**< which reference frame */
  93. vpx_image_t img; /**< reference frame data in image format */
  94. } vpx_ref_frame_t;
  95. /*!\brief VP9 specific reference frame data struct
  96. *
  97. * Define the data struct to access vp9 reference frames.
  98. */
  99. typedef struct vp9_ref_frame {
  100. int idx; /**< frame index to get (input) */
  101. vpx_image_t img; /**< img structure to populate (output) */
  102. } vp9_ref_frame_t;
  103. /*!\cond */
  104. /*!\brief vp8 decoder control function parameter type
  105. *
  106. * defines the data type for each of VP8 decoder control function requires
  107. */
  108. VPX_CTRL_USE_TYPE(VP8_SET_REFERENCE, vpx_ref_frame_t *)
  109. #define VPX_CTRL_VP8_SET_REFERENCE
  110. VPX_CTRL_USE_TYPE(VP8_COPY_REFERENCE, vpx_ref_frame_t *)
  111. #define VPX_CTRL_VP8_COPY_REFERENCE
  112. VPX_CTRL_USE_TYPE(VP8_SET_POSTPROC, vp8_postproc_cfg_t *)
  113. #define VPX_CTRL_VP8_SET_POSTPROC
  114. VPX_CTRL_USE_TYPE(VP9_GET_REFERENCE, vp9_ref_frame_t *)
  115. #define VPX_CTRL_VP9_GET_REFERENCE
  116. /*!\endcond */
  117. /*! @} - end defgroup vp8 */
  118. #ifdef __cplusplus
  119. } // extern "C"
  120. #endif
  121. #endif // VPX_VPX_VP8_H_