You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

321 lines
10KB

  1. /*
  2. * pixel format descriptor
  3. * Copyright (c) 2009 Michael Niedermayer <michaelni@gmx.at>
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * Libav is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with Libav; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #ifndef AVUTIL_PIXDESC_H
  22. #define AVUTIL_PIXDESC_H
  23. #include <inttypes.h>
  24. #include "attributes.h"
  25. #include "pixfmt.h"
  26. typedef struct AVComponentDescriptor {
  27. /**
  28. * Which of the 4 planes contains the component.
  29. */
  30. int plane;
  31. /**
  32. * Number of elements between 2 horizontally consecutive pixels.
  33. * Elements are bits for bitstream formats, bytes otherwise.
  34. */
  35. int step;
  36. /**
  37. * Number of elements before the component of the first pixel.
  38. * Elements are bits for bitstream formats, bytes otherwise.
  39. */
  40. int offset;
  41. /**
  42. * Number of least significant bits that must be shifted away
  43. * to get the value.
  44. */
  45. int shift;
  46. /**
  47. * Number of bits in the component.
  48. */
  49. int depth;
  50. #if FF_API_PLUS1_MINUS1
  51. /** deprecated, use step instead */
  52. attribute_deprecated int step_minus1;
  53. /** deprecated, use depth instead */
  54. attribute_deprecated int depth_minus1;
  55. /** deprecated, use offset instead */
  56. attribute_deprecated int offset_plus1;
  57. #endif
  58. } AVComponentDescriptor;
  59. /**
  60. * Descriptor that unambiguously describes how the bits of a pixel are
  61. * stored in the up to 4 data planes of an image. It also stores the
  62. * subsampling factors and number of components.
  63. *
  64. * @note This is separate of the colorspace (RGB, YCbCr, YPbPr, JPEG-style YUV
  65. * and all the YUV variants) AVPixFmtDescriptor just stores how values
  66. * are stored not what these values represent.
  67. */
  68. typedef struct AVPixFmtDescriptor {
  69. const char *name;
  70. uint8_t nb_components; ///< The number of components each pixel has, (1-4)
  71. /**
  72. * Amount to shift the luma width right to find the chroma width.
  73. * For YV12 this is 1 for example.
  74. * chroma_width = AV_CEIL_RSHIFT(luma_width, log2_chroma_w)
  75. * The note above is needed to ensure rounding up.
  76. * This value only refers to the chroma components.
  77. */
  78. uint8_t log2_chroma_w;
  79. /**
  80. * Amount to shift the luma height right to find the chroma height.
  81. * For YV12 this is 1 for example.
  82. * chroma_height= AV_CEIL_RSHIFT(luma_height, log2_chroma_h)
  83. * The note above is needed to ensure rounding up.
  84. * This value only refers to the chroma components.
  85. */
  86. uint8_t log2_chroma_h;
  87. /**
  88. * Combination of AV_PIX_FMT_FLAG_... flags.
  89. */
  90. uint64_t flags;
  91. /**
  92. * Parameters that describe how pixels are packed. If the format
  93. * has chroma components, they must be stored in comp[1] and
  94. * comp[2].
  95. * If the format is RGB-like, the first component is R, followed
  96. * by G and B.
  97. *
  98. * If the format is YUV-like, the first component is Y, followed
  99. * by U and V.
  100. *
  101. * If present, the Alpha channel is always the last component.
  102. */
  103. AVComponentDescriptor comp[4];
  104. /**
  105. * Alternative comma-separated names.
  106. */
  107. const char *alias;
  108. } AVPixFmtDescriptor;
  109. /**
  110. * Pixel format is big-endian.
  111. */
  112. #define AV_PIX_FMT_FLAG_BE (1 << 0)
  113. /**
  114. * Pixel format has a palette in data[1], values are indexes in this palette.
  115. */
  116. #define AV_PIX_FMT_FLAG_PAL (1 << 1)
  117. /**
  118. * All values of a component are bit-wise packed end to end.
  119. */
  120. #define AV_PIX_FMT_FLAG_BITSTREAM (1 << 2)
  121. /**
  122. * Pixel format is an HW accelerated format.
  123. */
  124. #define AV_PIX_FMT_FLAG_HWACCEL (1 << 3)
  125. /**
  126. * At least one pixel component is not in the first data plane.
  127. */
  128. #define AV_PIX_FMT_FLAG_PLANAR (1 << 4)
  129. /**
  130. * The pixel format contains RGB-like data (as opposed to YUV/grayscale).
  131. */
  132. #define AV_PIX_FMT_FLAG_RGB (1 << 5)
  133. /**
  134. * The pixel format is "pseudo-paletted". This means that Libav treats it as
  135. * paletted internally, but the palette is generated by the decoder and is not
  136. * stored in the file.
  137. */
  138. #define AV_PIX_FMT_FLAG_PSEUDOPAL (1 << 6)
  139. /**
  140. * The pixel format has an alpha channel.
  141. */
  142. #define AV_PIX_FMT_FLAG_ALPHA (1 << 7)
  143. /**
  144. * Read a line from an image, and write the values of the
  145. * pixel format component c to dst.
  146. *
  147. * @param data the array containing the pointers to the planes of the image
  148. * @param linesize the array containing the linesizes of the image
  149. * @param desc the pixel format descriptor for the image
  150. * @param x the horizontal coordinate of the first pixel to read
  151. * @param y the vertical coordinate of the first pixel to read
  152. * @param w the width of the line to read, that is the number of
  153. * values to write to dst
  154. * @param read_pal_component if not zero and the format is a paletted
  155. * format writes the values corresponding to the palette
  156. * component c in data[1] to dst, rather than the palette indexes in
  157. * data[0]. The behavior is undefined if the format is not paletted.
  158. */
  159. void av_read_image_line(uint16_t *dst, const uint8_t *data[4],
  160. const int linesize[4], const AVPixFmtDescriptor *desc,
  161. int x, int y, int c, int w, int read_pal_component);
  162. /**
  163. * Write the values from src to the pixel format component c of an
  164. * image line.
  165. *
  166. * @param src array containing the values to write
  167. * @param data the array containing the pointers to the planes of the
  168. * image to write into. It is supposed to be zeroed.
  169. * @param linesize the array containing the linesizes of the image
  170. * @param desc the pixel format descriptor for the image
  171. * @param x the horizontal coordinate of the first pixel to write
  172. * @param y the vertical coordinate of the first pixel to write
  173. * @param w the width of the line to write, that is the number of
  174. * values to write to the image line
  175. */
  176. void av_write_image_line(const uint16_t *src, uint8_t *data[4],
  177. const int linesize[4], const AVPixFmtDescriptor *desc,
  178. int x, int y, int c, int w);
  179. /**
  180. * Return the pixel format corresponding to name.
  181. *
  182. * If there is no pixel format with name name, then looks for a
  183. * pixel format with the name corresponding to the native endian
  184. * format of name.
  185. * For example in a little-endian system, first looks for "gray16",
  186. * then for "gray16le".
  187. *
  188. * Finally if no pixel format has been found, returns PIX_FMT_NONE.
  189. */
  190. enum AVPixelFormat av_get_pix_fmt(const char *name);
  191. /**
  192. * Return the short name for a pixel format, NULL in case pix_fmt is
  193. * unknown.
  194. *
  195. * @see av_get_pix_fmt(), av_get_pix_fmt_string()
  196. */
  197. const char *av_get_pix_fmt_name(enum AVPixelFormat pix_fmt);
  198. /**
  199. * Print in buf the string corresponding to the pixel format with
  200. * number pix_fmt, or an header if pix_fmt is negative.
  201. *
  202. * @param buf the buffer where to write the string
  203. * @param buf_size the size of buf
  204. * @param pix_fmt the number of the pixel format to print the
  205. * corresponding info string, or a negative value to print the
  206. * corresponding header.
  207. */
  208. char *av_get_pix_fmt_string(char *buf, int buf_size,
  209. enum AVPixelFormat pix_fmt);
  210. /**
  211. * Return the number of bits per pixel used by the pixel format
  212. * described by pixdesc. Note that this is not the same as the number
  213. * of bits per sample.
  214. *
  215. * The returned number of bits refers to the number of bits actually
  216. * used for storing the pixel information, that is padding bits are
  217. * not counted.
  218. */
  219. int av_get_bits_per_pixel(const AVPixFmtDescriptor *pixdesc);
  220. /**
  221. * @return a pixel format descriptor for provided pixel format or NULL if
  222. * this pixel format is unknown.
  223. */
  224. const AVPixFmtDescriptor *av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt);
  225. /**
  226. * Iterate over all pixel format descriptors known to libavutil.
  227. *
  228. * @param prev previous descriptor. NULL to get the first descriptor.
  229. *
  230. * @return next descriptor or NULL after the last descriptor
  231. */
  232. const AVPixFmtDescriptor *av_pix_fmt_desc_next(const AVPixFmtDescriptor *prev);
  233. /**
  234. * @return an AVPixelFormat id described by desc, or AV_PIX_FMT_NONE if desc
  235. * is not a valid pointer to a pixel format descriptor.
  236. */
  237. enum AVPixelFormat av_pix_fmt_desc_get_id(const AVPixFmtDescriptor *desc);
  238. /**
  239. * Utility function to access log2_chroma_w log2_chroma_h from
  240. * the pixel format AVPixFmtDescriptor.
  241. *
  242. * @param[in] pix_fmt the pixel format
  243. * @param[out] h_shift store log2_chroma_w (horizontal/width shift)
  244. * @param[out] v_shift store log2_chroma_h (vertical/height shift)
  245. *
  246. * @return 0 on success, AVERROR(ENOSYS) on invalid or unknown pixel format
  247. */
  248. int av_pix_fmt_get_chroma_sub_sample(enum AVPixelFormat pix_fmt,
  249. int *h_shift, int *v_shift);
  250. /**
  251. * @return number of planes in pix_fmt, a negative AVERROR if pix_fmt is not a
  252. * valid pixel format.
  253. */
  254. int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt);
  255. /**
  256. * Utility function to swap the endianness of a pixel format.
  257. *
  258. * @param[in] pix_fmt the pixel format
  259. *
  260. * @return pixel format with swapped endianness if it exists,
  261. * otherwise AV_PIX_FMT_NONE
  262. */
  263. enum AVPixelFormat av_pix_fmt_swap_endianness(enum AVPixelFormat pix_fmt);
  264. /**
  265. * @return the name for provided color range or NULL if unknown.
  266. */
  267. const char *av_color_range_name(enum AVColorRange range);
  268. /**
  269. * @return the name for provided color primaries or NULL if unknown.
  270. */
  271. const char *av_color_primaries_name(enum AVColorPrimaries primaries);
  272. /**
  273. * @return the name for provided color transfer or NULL if unknown.
  274. */
  275. const char *av_color_transfer_name(enum AVColorTransferCharacteristic transfer);
  276. /**
  277. * @return the name for provided color space or NULL if unknown.
  278. */
  279. const char *av_color_space_name(enum AVColorSpace space);
  280. /**
  281. * @return the name for provided chroma location or NULL if unknown.
  282. */
  283. const char *av_chroma_location_name(enum AVChromaLocation location);
  284. #endif /* AVUTIL_PIXDESC_H */