vpx_image.h 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  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. /*!\file
  11. * \brief Describes the vpx image descriptor and associated operations
  12. *
  13. */
  14. #ifndef VPX_VPX_IMAGE_H_
  15. #define VPX_VPX_IMAGE_H_
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. /*!\brief Current ABI version number
  20. *
  21. * \internal
  22. * If this file is altered in any way that changes the ABI, this value
  23. * must be bumped. Examples include, but are not limited to, changing
  24. * types, removing or reassigning enums, adding/removing/rearranging
  25. * fields to structures
  26. */
  27. #define VPX_IMAGE_ABI_VERSION (3) /**<\hideinitializer*/
  28. #define VPX_IMG_FMT_PLANAR 0x100 /**< Image is a planar format. */
  29. #define VPX_IMG_FMT_UV_FLIP 0x200 /**< V plane precedes U in memory. */
  30. #define VPX_IMG_FMT_HAS_ALPHA 0x400 /**< Image has an alpha channel. */
  31. #define VPX_IMG_FMT_HIGHBITDEPTH 0x800 /**< Image uses 16bit framebuffer. */
  32. /*!\brief List of supported image formats */
  33. typedef enum vpx_img_fmt {
  34. VPX_IMG_FMT_NONE,
  35. VPX_IMG_FMT_RGB24, /**< 24 bit per pixel packed RGB */
  36. VPX_IMG_FMT_RGB32, /**< 32 bit per pixel packed 0RGB */
  37. VPX_IMG_FMT_RGB565, /**< 16 bit per pixel, 565 */
  38. VPX_IMG_FMT_RGB555, /**< 16 bit per pixel, 555 */
  39. VPX_IMG_FMT_UYVY, /**< UYVY packed YUV */
  40. VPX_IMG_FMT_YUY2, /**< YUYV packed YUV */
  41. VPX_IMG_FMT_YVYU, /**< YVYU packed YUV */
  42. VPX_IMG_FMT_BGR24, /**< 24 bit per pixel packed BGR */
  43. VPX_IMG_FMT_RGB32_LE, /**< 32 bit packed BGR0 */
  44. VPX_IMG_FMT_ARGB, /**< 32 bit packed ARGB, alpha=255 */
  45. VPX_IMG_FMT_ARGB_LE, /**< 32 bit packed BGRA, alpha=255 */
  46. VPX_IMG_FMT_RGB565_LE, /**< 16 bit per pixel, gggbbbbb rrrrrggg */
  47. VPX_IMG_FMT_RGB555_LE, /**< 16 bit per pixel, gggbbbbb 0rrrrrgg */
  48. VPX_IMG_FMT_YV12 = VPX_IMG_FMT_PLANAR | VPX_IMG_FMT_UV_FLIP | 1, /**< planar YVU */
  49. VPX_IMG_FMT_I420 = VPX_IMG_FMT_PLANAR | 2,
  50. VPX_IMG_FMT_VPXYV12 = VPX_IMG_FMT_PLANAR | VPX_IMG_FMT_UV_FLIP | 3, /** < planar 4:2:0 format with vpx color space */
  51. VPX_IMG_FMT_VPXI420 = VPX_IMG_FMT_PLANAR | 4,
  52. VPX_IMG_FMT_I422 = VPX_IMG_FMT_PLANAR | 5,
  53. VPX_IMG_FMT_I444 = VPX_IMG_FMT_PLANAR | 6,
  54. VPX_IMG_FMT_I440 = VPX_IMG_FMT_PLANAR | 7,
  55. VPX_IMG_FMT_444A = VPX_IMG_FMT_PLANAR | VPX_IMG_FMT_HAS_ALPHA | 6,
  56. VPX_IMG_FMT_I42016 = VPX_IMG_FMT_I420 | VPX_IMG_FMT_HIGHBITDEPTH,
  57. VPX_IMG_FMT_I42216 = VPX_IMG_FMT_I422 | VPX_IMG_FMT_HIGHBITDEPTH,
  58. VPX_IMG_FMT_I44416 = VPX_IMG_FMT_I444 | VPX_IMG_FMT_HIGHBITDEPTH,
  59. VPX_IMG_FMT_I44016 = VPX_IMG_FMT_I440 | VPX_IMG_FMT_HIGHBITDEPTH
  60. }
  61. vpx_img_fmt_t; /**< alias for enum vpx_img_fmt */
  62. /*!\brief List of supported color spaces */
  63. typedef enum vpx_color_space {
  64. VPX_CS_UNKNOWN = 0, /**< Unknown */
  65. VPX_CS_BT_601 = 1, /**< BT.601 */
  66. VPX_CS_BT_709 = 2, /**< BT.709 */
  67. VPX_CS_SMPTE_170 = 3, /**< SMPTE.170 */
  68. VPX_CS_SMPTE_240 = 4, /**< SMPTE.240 */
  69. VPX_CS_BT_2020 = 5, /**< BT.2020 */
  70. VPX_CS_RESERVED = 6, /**< Reserved */
  71. VPX_CS_SRGB = 7 /**< sRGB */
  72. } vpx_color_space_t; /**< alias for enum vpx_color_space */
  73. /**\brief Image Descriptor */
  74. typedef struct vpx_image {
  75. vpx_img_fmt_t fmt; /**< Image Format */
  76. vpx_color_space_t cs; /**< Color Space */
  77. /* Image storage dimensions */
  78. unsigned int w; /**< Stored image width */
  79. unsigned int h; /**< Stored image height */
  80. unsigned int bit_depth; /**< Stored image bit-depth */
  81. /* Image display dimensions */
  82. unsigned int d_w; /**< Displayed image width */
  83. unsigned int d_h; /**< Displayed image height */
  84. /* Chroma subsampling info */
  85. unsigned int x_chroma_shift; /**< subsampling order, X */
  86. unsigned int y_chroma_shift; /**< subsampling order, Y */
  87. /* Image data pointers. */
  88. #define VPX_PLANE_PACKED 0 /**< To be used for all packed formats */
  89. #define VPX_PLANE_Y 0 /**< Y (Luminance) plane */
  90. #define VPX_PLANE_U 1 /**< U (Chroma) plane */
  91. #define VPX_PLANE_V 2 /**< V (Chroma) plane */
  92. #define VPX_PLANE_ALPHA 3 /**< A (Transparency) plane */
  93. unsigned char *planes[4]; /**< pointer to the top left pixel for each plane */
  94. int stride[4]; /**< stride between rows for each plane */
  95. int bps; /**< bits per sample (for packed formats) */
  96. /* The following member may be set by the application to associate data
  97. * with this image.
  98. */
  99. void *user_priv; /**< may be set by the application to associate data
  100. * with this image. */
  101. /* The following members should be treated as private. */
  102. unsigned char *img_data; /**< private */
  103. int img_data_owner; /**< private */
  104. int self_allocd; /**< private */
  105. void *fb_priv; /**< Frame buffer data associated with the image. */
  106. } vpx_image_t; /**< alias for struct vpx_image */
  107. /**\brief Representation of a rectangle on a surface */
  108. typedef struct vpx_image_rect {
  109. unsigned int x; /**< leftmost column */
  110. unsigned int y; /**< topmost row */
  111. unsigned int w; /**< width */
  112. unsigned int h; /**< height */
  113. } vpx_image_rect_t; /**< alias for struct vpx_image_rect */
  114. /*!\brief Open a descriptor, allocating storage for the underlying image
  115. *
  116. * Returns a descriptor for storing an image of the given format. The
  117. * storage for the descriptor is allocated on the heap.
  118. *
  119. * \param[in] img Pointer to storage for descriptor. If this parameter
  120. * is NULL, the storage for the descriptor will be
  121. * allocated on the heap.
  122. * \param[in] fmt Format for the image
  123. * \param[in] d_w Width of the image
  124. * \param[in] d_h Height of the image
  125. * \param[in] align Alignment, in bytes, of the image buffer and
  126. * each row in the image(stride).
  127. *
  128. * \return Returns a pointer to the initialized image descriptor. If the img
  129. * parameter is non-null, the value of the img parameter will be
  130. * returned.
  131. */
  132. vpx_image_t *vpx_img_alloc(vpx_image_t *img,
  133. vpx_img_fmt_t fmt,
  134. unsigned int d_w,
  135. unsigned int d_h,
  136. unsigned int align);
  137. /*!\brief Open a descriptor, using existing storage for the underlying image
  138. *
  139. * Returns a descriptor for storing an image of the given format. The
  140. * storage for descriptor has been allocated elsewhere, and a descriptor is
  141. * desired to "wrap" that storage.
  142. *
  143. * \param[in] img Pointer to storage for descriptor. If this parameter
  144. * is NULL, the storage for the descriptor will be
  145. * allocated on the heap.
  146. * \param[in] fmt Format for the image
  147. * \param[in] d_w Width of the image
  148. * \param[in] d_h Height of the image
  149. * \param[in] align Alignment, in bytes, of each row in the image.
  150. * \param[in] img_data Storage to use for the image
  151. *
  152. * \return Returns a pointer to the initialized image descriptor. If the img
  153. * parameter is non-null, the value of the img parameter will be
  154. * returned.
  155. */
  156. vpx_image_t *vpx_img_wrap(vpx_image_t *img,
  157. vpx_img_fmt_t fmt,
  158. unsigned int d_w,
  159. unsigned int d_h,
  160. unsigned int align,
  161. unsigned char *img_data);
  162. /*!\brief Set the rectangle identifying the displayed portion of the image
  163. *
  164. * Updates the displayed rectangle (aka viewport) on the image surface to
  165. * match the specified coordinates and size.
  166. *
  167. * \param[in] img Image descriptor
  168. * \param[in] x leftmost column
  169. * \param[in] y topmost row
  170. * \param[in] w width
  171. * \param[in] h height
  172. *
  173. * \return 0 if the requested rectangle is valid, nonzero otherwise.
  174. */
  175. int vpx_img_set_rect(vpx_image_t *img,
  176. unsigned int x,
  177. unsigned int y,
  178. unsigned int w,
  179. unsigned int h);
  180. /*!\brief Flip the image vertically (top for bottom)
  181. *
  182. * Adjusts the image descriptor's pointers and strides to make the image
  183. * be referenced upside-down.
  184. *
  185. * \param[in] img Image descriptor
  186. */
  187. void vpx_img_flip(vpx_image_t *img);
  188. /*!\brief Close an image descriptor
  189. *
  190. * Frees all allocated storage associated with an image descriptor.
  191. *
  192. * \param[in] img Image descriptor
  193. */
  194. void vpx_img_free(vpx_image_t *img);
  195. #ifdef __cplusplus
  196. } // extern "C"
  197. #endif
  198. #endif // VPX_VPX_IMAGE_H_