1 /*
2 * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
3 *
4 * This file is part of FFmpeg.
5 *
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 #ifndef AVUTIL_PIXFMT_H
22 #define AVUTIL_PIXFMT_H
23
24 /**
25 * @file
26 * pixel format definitions
27 *
28 */
29
30 #include "libavutil/avconfig.h"
32
33 #define AVPALETTE_SIZE 1024
34 #define AVPALETTE_COUNT 256
35
36 /**
37 * Pixel format.
38 *
39 * @note
40 * AV_PIX_FMT_RGB32 is handled in an endian-specific manner. An RGBA
41 * color is put together as:
42 * (A << 24) | (R << 16) | (G << 8) | B
43 * This is stored as BGRA on little-endian CPU architectures and ARGB on
44 * big-endian CPUs.
45 *
46 * @par
47 * When the pixel format is palettized RGB32 (AV_PIX_FMT_PAL8), the palettized
48 * image data is stored in AVFrame.data[0]. The palette is transported in
49 * AVFrame.data[1], is 1024 bytes long (256 4-byte entries) and is
50 * formatted the same as in AV_PIX_FMT_RGB32 described above (i.e., it is
51 * also endian-specific). Note also that the individual RGB32 palette
52 * components stored in AVFrame.data[1] should be in the range 0..255.
53 * This is important as many custom PAL8 video codecs that were designed
54 * to run on the IBM VGA graphics adapter use 6-bit palette components.
55 *
56 * @par
57 * For all the 8bit per pixel formats, an RGB32 palette is in data[1] like
58 * for pal8. This palette is filled in automatically by the function
59 * allocating the picture.
60 *
61 * @note
62 * Make sure that all newly added big-endian formats have (pix_fmt & 1) == 1
63 * and that all newly added little-endian formats have (pix_fmt & 1) == 0.
64 * This allows simpler detection of big vs little-endian.
65 */
77 AV_PIX_FMT_MONOWHITE,
///< Y , 1bpp, 0 is white, 1 is black, in each byte pixels are ordered from the msb to the lsb
78 AV_PIX_FMT_MONOBLACK,
///< Y , 1bpp, 0 is black, 1 is white, in each byte pixels are ordered from the msb to the lsb
80 AV_PIX_FMT_YUVJ420P,
///< planar YUV 4:2:0, 12bpp, full scale (JPEG), deprecated in favor of PIX_FMT_YUV420P and setting color_range
81 AV_PIX_FMT_YUVJ422P,
///< planar YUV 4:2:2, 16bpp, full scale (JPEG), deprecated in favor of PIX_FMT_YUV422P and setting color_range
82 AV_PIX_FMT_YUVJ444P,
///< planar YUV 4:4:4, 24bpp, full scale (JPEG), deprecated in favor of PIX_FMT_YUV444P and setting color_range
83 #if FF_API_XVMC
86 #define AV_PIX_FMT_XVMC AV_PIX_FMT_XVMC_MPEG2_IDCT
87 #endif /* FF_API_XVMC */
91 AV_PIX_FMT_BGR4,
///< packed RGB 1:2:1 bitstream, 4bpp, (msb)1B 2G 1R(lsb), a byte contains two pixels, the first pixel in the byte is the one composed by the 4 msb bits
94 AV_PIX_FMT_RGB4,
///< packed RGB 1:2:1 bitstream, 4bpp, (msb)1R 2G 1B(lsb), a byte contains two pixels, the first pixel in the byte is the one composed by the 4 msb bits
96 AV_PIX_FMT_NV12,
///< planar YUV 4:2:0, 12bpp, 1 plane for Y and 1 plane for the UV components, which are interleaved (first byte U and the following byte V)
98
103
107 AV_PIX_FMT_YUVJ440P,
///< planar YUV 4:4:0 full scale (JPEG), deprecated in favor of PIX_FMT_YUV440P and setting color_range
109 #if FF_API_VDPAU
110 AV_PIX_FMT_VDPAU_H264,
///< H.264 HW decoding with VDPAU, data[0] contains a vdpau_render_state struct which contains the bitstream of the slices as well as various fields extracted from headers
111 AV_PIX_FMT_VDPAU_MPEG1,
///< MPEG-1 HW decoding with VDPAU, data[0] contains a vdpau_render_state struct which contains the bitstream of the slices as well as various fields extracted from headers
112 AV_PIX_FMT_VDPAU_MPEG2,
///< MPEG-2 HW decoding with VDPAU, data[0] contains a vdpau_render_state struct which contains the bitstream of the slices as well as various fields extracted from headers
113 AV_PIX_FMT_VDPAU_WMV3,
///< WMV3 HW decoding with VDPAU, data[0] contains a vdpau_render_state struct which contains the bitstream of the slices as well as various fields extracted from headers
114 AV_PIX_FMT_VDPAU_VC1,
///< VC-1 HW decoding with VDPAU, data[0] contains a vdpau_render_state struct which contains the bitstream of the slices as well as various fields extracted from headers
115 #endif
116 AV_PIX_FMT_RGB48BE,
///< packed RGB 16:16:16, 48bpp, 16R, 16G, 16B, the 2-byte value for each R/G/B component is stored as big-endian
117 AV_PIX_FMT_RGB48LE,
///< packed RGB 16:16:16, 48bpp, 16R, 16G, 16B, the 2-byte value for each R/G/B component is stored as little-endian
118
122 AV_PIX_FMT_RGB555LE,
///< packed RGB 5:5:5, 16bpp, (msb)1X 5R 5G 5B(lsb), little-endian, X=unused/undefined
123
127 AV_PIX_FMT_BGR555LE,
///< packed BGR 5:5:5, 16bpp, (msb)1X 5B 5G 5R(lsb), little-endian, X=unused/undefined
128
129 AV_PIX_FMT_VAAPI_MOCO,
///< HW acceleration through VA API at motion compensation entry-point, Picture.data[3] contains a vaapi_render_state struct which contains macroblocks as well as various fields extracted from headers
130 AV_PIX_FMT_VAAPI_IDCT,
///< HW acceleration through VA API at IDCT entry-point, Picture.data[3] contains a vaapi_render_state struct which contains fields extracted from headers
131 AV_PIX_FMT_VAAPI_VLD,
///< HW decoding through VA API, Picture.data[3] contains a vaapi_render_state struct which contains the bitstream of the slices as well as various fields extracted from headers
132
139 #if FF_API_VDPAU
140 AV_PIX_FMT_VDPAU_MPEG4,
///< MPEG4 HW decoding with VDPAU, data[0] contains a vdpau_render_state struct which contains the bitstream of the slices as well as various fields extracted from headers
141 #endif
143
144 AV_PIX_FMT_RGB444LE,
///< packed RGB 4:4:4, 16bpp, (msb)4X 4R 4G 4B(lsb), little-endian, X=unused/undefined
146 AV_PIX_FMT_BGR444LE,
///< packed BGR 4:4:4, 16bpp, (msb)4X 4B 4G 4R(lsb), little-endian, X=unused/undefined
149
152
153 AV_PIX_FMT_BGR48BE,
///< packed RGB 16:16:16, 48bpp, 16B, 16G, 16R, the 2-byte value for each R/G/B component is stored as big-endian
154 AV_PIX_FMT_BGR48LE,
///< packed RGB 16:16:16, 48bpp, 16B, 16G, 16R, the 2-byte value for each R/G/B component is stored as little-endian
155
156 /**
157 * The following 12 formats have the disadvantage of needing 1 format for each bit depth.
158 * Notice that each 9/10 bits sample is stored in 16 bits with extra padding.
159 * If you want to support multiple bit depths, then using AV_PIX_FMT_YUV420P16* with the bpp stored separately is better.
160 */
174
175 #ifdef AV_PIX_FMT_ABI_GIT_MASTER
176 AV_PIX_FMT_RGBA64BE,
///< packed RGBA 16:16:16:16, 64bpp, 16R, 16G, 16B, 16A, the 2-byte value for each R/G/B/A component is stored as big-endian
177 AV_PIX_FMT_RGBA64LE,
///< packed RGBA 16:16:16:16, 64bpp, 16R, 16G, 16B, 16A, the 2-byte value for each R/G/B/A component is stored as little-endian
178 AV_PIX_FMT_BGRA64BE,
///< packed RGBA 16:16:16:16, 64bpp, 16B, 16G, 16R, 16A, the 2-byte value for each R/G/B/A component is stored as big-endian
179 AV_PIX_FMT_BGRA64LE,
///< packed RGBA 16:16:16:16, 64bpp, 16B, 16G, 16R, 16A, the 2-byte value for each R/G/B/A component is stored as little-endian
180 #endif
188
189 /**
190 * duplicated pixel formats for compatibility with libav.
191 * FFmpeg supports these formats since May 8 2012 and Jan 28 2012 (commits f9ca1ac7 and 143a5c55)
192 * Libav added them Oct 12 2012 with incompatible values (commit 6d5600e85)
193 */
196
215
216 AV_PIX_FMT_VDPAU,
///< HW acceleration through VDPAU, Picture.data[3] contains a VdpVideoSurface
217
218 AV_PIX_FMT_XYZ12LE,
///< packed XYZ 4:4:4, 36 bpp, (msb) 12X, 12Y, 12Z (lsb), the 2-byte value for each X/Y/Z is stored as little-endian, the 4 lower bits are set to 0
219 AV_PIX_FMT_XYZ12BE,
///< packed XYZ 4:4:4, 36 bpp, (msb) 12X, 12Y, 12Z (lsb), the 2-byte value for each X/Y/Z is stored as big-endian, the 4 lower bits are set to 0
220 AV_PIX_FMT_NV16,
///< interleaved chroma YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
221 AV_PIX_FMT_NV20LE,
///< interleaved chroma YUV 4:2:2, 20bpp, (1 Cr & Cb sample per 2x1 Y samples), little-endian
222 AV_PIX_FMT_NV20BE,
///< interleaved chroma YUV 4:2:2, 20bpp, (1 Cr & Cb sample per 2x1 Y samples), big-endian
223
224 /**
225 * duplicated pixel formats for compatibility with libav.
226 * FFmpeg supports these formats since Sat Sep 24 06:01:45 2011 +0200 (commits 9569a3c9f41387a8c7d1ce97d8693520477a66c3)
227 * also see Fri Nov 25 01:38:21 2011 +0100 92afb431621c79155fcb7171d26f137eb1bee028
228 * Libav added them Sun Mar 16 23:05:47 2014 +0100 with incompatible values (commit 1481d24c3a0abf81e1d7a514547bd5305232be30)
229 */
230 AV_PIX_FMT_RGBA64BE_LIBAV,
///< packed RGBA 16:16:16:16, 64bpp, 16R, 16G, 16B, 16A, the 2-byte value for each R/G/B/A component is stored as big-endian
231 AV_PIX_FMT_RGBA64LE_LIBAV,
///< packed RGBA 16:16:16:16, 64bpp, 16R, 16G, 16B, 16A, the 2-byte value for each R/G/B/A component is stored as little-endian
232 AV_PIX_FMT_BGRA64BE_LIBAV,
///< packed RGBA 16:16:16:16, 64bpp, 16B, 16G, 16R, 16A, the 2-byte value for each R/G/B/A component is stored as big-endian
233 AV_PIX_FMT_BGRA64LE_LIBAV,
///< packed RGBA 16:16:16:16, 64bpp, 16B, 16G, 16R, 16A, the 2-byte value for each R/G/B/A component is stored as little-endian
234
236
237 AV_PIX_FMT_VDA,
///< HW acceleration through VDA, data[3] contains a CVPixelBufferRef
238
241
242 /**
243 * duplicated pixel formats for compatibility with libav.
244 * FFmpeg supports these formats since May 3 2013 (commit e6d4e687558d08187e7a415a7725e4b1a416f782)
245 * Libav added them Jan 14 2015 with incompatible values (commit 0e6c7dfa650e8b0497bfa7a06394b7a462ddc33a)
246 */
250 /**
251 * HW acceleration through QSV, data[3] contains a pointer to the
252 * mfxFrameSurface1 structure.
253 */
255
256 #ifndef AV_PIX_FMT_ABI_GIT_MASTER
257 AV_PIX_FMT_RGBA64BE=0x123,
///< packed RGBA 16:16:16:16, 64bpp, 16R, 16G, 16B, 16A, the 2-byte value for each R/G/B/A component is stored as big-endian
258 AV_PIX_FMT_RGBA64LE,
///< packed RGBA 16:16:16:16, 64bpp, 16R, 16G, 16B, 16A, the 2-byte value for each R/G/B/A component is stored as little-endian
259 AV_PIX_FMT_BGRA64BE,
///< packed RGBA 16:16:16:16, 64bpp, 16B, 16G, 16R, 16A, the 2-byte value for each R/G/B/A component is stored as big-endian
260 AV_PIX_FMT_BGRA64LE,
///< packed RGBA 16:16:16:16, 64bpp, 16B, 16G, 16R, 16A, the 2-byte value for each R/G/B/A component is stored as little-endian
261 #endif
268
288 AV_PIX_FMT_YUVJ411P,
///< planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples) full scale (JPEG), deprecated in favor of PIX_FMT_YUV411P and setting color_range
289
302 #if !FF_API_XVMC
303 AV_PIX_FMT_XVMC,
///< XVideo Motion Acceleration via common packet passing
304 #endif /* !FF_API_XVMC */
305
306 AV_PIX_FMT_NB,
///< number of pixel formats, DO NOT USE THIS if you want to link with shared libav* because the number of formats might differ between versions
307
308 #if FF_API_PIX_FMT
310 #endif
311 };
312
313 #if AV_HAVE_INCOMPATIBLE_LIBAV_ABI
314 #define AV_PIX_FMT_YUVA422P AV_PIX_FMT_YUVA422P_LIBAV
315 #define AV_PIX_FMT_YUVA444P AV_PIX_FMT_YUVA444P_LIBAV
316 #define AV_PIX_FMT_RGBA64BE AV_PIX_FMT_RGBA64BE_LIBAV
317 #define AV_PIX_FMT_RGBA64LE AV_PIX_FMT_RGBA64LE_LIBAV
318 #define AV_PIX_FMT_BGRA64BE AV_PIX_FMT_BGRA64BE_LIBAV
319 #define AV_PIX_FMT_BGRA64LE AV_PIX_FMT_BGRA64LE_LIBAV
320 #define AV_PIX_FMT_GBRAP AV_PIX_FMT_GBRAP_LIBAV
321 #define AV_PIX_FMT_GBRAP16BE AV_PIX_FMT_GBRAP16BE_LIBAV
322 #define AV_PIX_FMT_GBRAP16LE AV_PIX_FMT_GBRAP16LE_LIBAV
323 #endif
324
325
326 #define AV_PIX_FMT_Y400A AV_PIX_FMT_GRAY8A
327 #define AV_PIX_FMT_GBR24P AV_PIX_FMT_GBRP
328
329 #if AV_HAVE_BIGENDIAN
330 # define AV_PIX_FMT_NE(be, le) AV_PIX_FMT_##be
331 #else
332 # define AV_PIX_FMT_NE(be, le) AV_PIX_FMT_##le
333 #endif
334
335 #define AV_PIX_FMT_RGB32 AV_PIX_FMT_NE(ARGB, BGRA)
336 #define AV_PIX_FMT_RGB32_1 AV_PIX_FMT_NE(RGBA, ABGR)
337 #define AV_PIX_FMT_BGR32 AV_PIX_FMT_NE(ABGR, RGBA)
338 #define AV_PIX_FMT_BGR32_1 AV_PIX_FMT_NE(BGRA, ARGB)
339 #define AV_PIX_FMT_0RGB32 AV_PIX_FMT_NE(0RGB, BGR0)
340 #define AV_PIX_FMT_0BGR32 AV_PIX_FMT_NE(0BGR, RGB0)
342 #define AV_PIX_FMT_GRAY16 AV_PIX_FMT_NE(GRAY16BE, GRAY16LE)
343 #define AV_PIX_FMT_YA16 AV_PIX_FMT_NE(YA16BE, YA16LE)
344 #define AV_PIX_FMT_RGB48 AV_PIX_FMT_NE(RGB48BE, RGB48LE)
345 #define AV_PIX_FMT_RGB565 AV_PIX_FMT_NE(RGB565BE, RGB565LE)
346 #define AV_PIX_FMT_RGB555 AV_PIX_FMT_NE(RGB555BE, RGB555LE)
347 #define AV_PIX_FMT_RGB444 AV_PIX_FMT_NE(RGB444BE, RGB444LE)
348 #define AV_PIX_FMT_RGBA64 AV_PIX_FMT_NE(RGBA64BE, RGBA64LE)
349 #define AV_PIX_FMT_BGR48 AV_PIX_FMT_NE(BGR48BE, BGR48LE)
350 #define AV_PIX_FMT_BGR565 AV_PIX_FMT_NE(BGR565BE, BGR565LE)
351 #define AV_PIX_FMT_BGR555 AV_PIX_FMT_NE(BGR555BE, BGR555LE)
352 #define AV_PIX_FMT_BGR444 AV_PIX_FMT_NE(BGR444BE, BGR444LE)
353 #define AV_PIX_FMT_BGRA64 AV_PIX_FMT_NE(BGRA64BE, BGRA64LE)
355 #define AV_PIX_FMT_YUV420P9 AV_PIX_FMT_NE(YUV420P9BE , YUV420P9LE)
356 #define AV_PIX_FMT_YUV422P9 AV_PIX_FMT_NE(YUV422P9BE , YUV422P9LE)
357 #define AV_PIX_FMT_YUV444P9 AV_PIX_FMT_NE(YUV444P9BE , YUV444P9LE)
358 #define AV_PIX_FMT_YUV420P10 AV_PIX_FMT_NE(YUV420P10BE, YUV420P10LE)
359 #define AV_PIX_FMT_YUV422P10 AV_PIX_FMT_NE(YUV422P10BE, YUV422P10LE)
360 #define AV_PIX_FMT_YUV444P10 AV_PIX_FMT_NE(YUV444P10BE, YUV444P10LE)
361 #define AV_PIX_FMT_YUV420P12 AV_PIX_FMT_NE(YUV420P12BE, YUV420P12LE)
362 #define AV_PIX_FMT_YUV422P12 AV_PIX_FMT_NE(YUV422P12BE, YUV422P12LE)
363 #define AV_PIX_FMT_YUV444P12 AV_PIX_FMT_NE(YUV444P12BE, YUV444P12LE)
364 #define AV_PIX_FMT_YUV420P14 AV_PIX_FMT_NE(YUV420P14BE, YUV420P14LE)
365 #define AV_PIX_FMT_YUV422P14 AV_PIX_FMT_NE(YUV422P14BE, YUV422P14LE)
366 #define AV_PIX_FMT_YUV444P14 AV_PIX_FMT_NE(YUV444P14BE, YUV444P14LE)
367 #define AV_PIX_FMT_YUV420P16 AV_PIX_FMT_NE(YUV420P16BE, YUV420P16LE)
368 #define AV_PIX_FMT_YUV422P16 AV_PIX_FMT_NE(YUV422P16BE, YUV422P16LE)
369 #define AV_PIX_FMT_YUV444P16 AV_PIX_FMT_NE(YUV444P16BE, YUV444P16LE)
370
371 #define AV_PIX_FMT_GBRP9 AV_PIX_FMT_NE(GBRP9BE , GBRP9LE)
372 #define AV_PIX_FMT_GBRP10 AV_PIX_FMT_NE(GBRP10BE, GBRP10LE)
373 #define AV_PIX_FMT_GBRP12 AV_PIX_FMT_NE(GBRP12BE, GBRP12LE)
374 #define AV_PIX_FMT_GBRP14 AV_PIX_FMT_NE(GBRP14BE, GBRP14LE)
375 #define AV_PIX_FMT_GBRP16 AV_PIX_FMT_NE(GBRP16BE, GBRP16LE)
376 #define AV_PIX_FMT_GBRAP16 AV_PIX_FMT_NE(GBRAP16BE, GBRAP16LE)
378 #define AV_PIX_FMT_BAYER_BGGR16 AV_PIX_FMT_NE(BAYER_BGGR16BE, BAYER_BGGR16LE)
379 #define AV_PIX_FMT_BAYER_RGGB16 AV_PIX_FMT_NE(BAYER_RGGB16BE, BAYER_RGGB16LE)
380 #define AV_PIX_FMT_BAYER_GBRG16 AV_PIX_FMT_NE(BAYER_GBRG16BE, BAYER_GBRG16LE)
381 #define AV_PIX_FMT_BAYER_GRBG16 AV_PIX_FMT_NE(BAYER_GRBG16BE, BAYER_GRBG16LE)
384 #define AV_PIX_FMT_YUVA420P9 AV_PIX_FMT_NE(YUVA420P9BE , YUVA420P9LE)
385 #define AV_PIX_FMT_YUVA422P9 AV_PIX_FMT_NE(YUVA422P9BE , YUVA422P9LE)
386 #define AV_PIX_FMT_YUVA444P9 AV_PIX_FMT_NE(YUVA444P9BE , YUVA444P9LE)
387 #define AV_PIX_FMT_YUVA420P10 AV_PIX_FMT_NE(YUVA420P10BE, YUVA420P10LE)
388 #define AV_PIX_FMT_YUVA422P10 AV_PIX_FMT_NE(YUVA422P10BE, YUVA422P10LE)
389 #define AV_PIX_FMT_YUVA444P10 AV_PIX_FMT_NE(YUVA444P10BE, YUVA444P10LE)
390 #define AV_PIX_FMT_YUVA420P16 AV_PIX_FMT_NE(YUVA420P16BE, YUVA420P16LE)
391 #define AV_PIX_FMT_YUVA422P16 AV_PIX_FMT_NE(YUVA422P16BE, YUVA422P16LE)
392 #define AV_PIX_FMT_YUVA444P16 AV_PIX_FMT_NE(YUVA444P16BE, YUVA444P16LE)
394 #define AV_PIX_FMT_XYZ12 AV_PIX_FMT_NE(XYZ12BE, XYZ12LE)
395 #define AV_PIX_FMT_NV20 AV_PIX_FMT_NE(NV20BE, NV20LE)
399 #define PixelFormat AVPixelFormat
400
401 #define PIX_FMT_Y400A AV_PIX_FMT_Y400A
402 #define PIX_FMT_GBR24P AV_PIX_FMT_GBR24P
404 #define PIX_FMT_NE(be, le) AV_PIX_FMT_NE(be, le)
406 #define PIX_FMT_RGB32 AV_PIX_FMT_RGB32
407 #define PIX_FMT_RGB32_1 AV_PIX_FMT_RGB32_1
408 #define PIX_FMT_BGR32 AV_PIX_FMT_BGR32
409 #define PIX_FMT_BGR32_1 AV_PIX_FMT_BGR32_1
410 #define PIX_FMT_0RGB32 AV_PIX_FMT_0RGB32
411 #define PIX_FMT_0BGR32 AV_PIX_FMT_0BGR32
413 #define PIX_FMT_GRAY16 AV_PIX_FMT_GRAY16
414 #define PIX_FMT_RGB48 AV_PIX_FMT_RGB48
415 #define PIX_FMT_RGB565 AV_PIX_FMT_RGB565
416 #define PIX_FMT_RGB555 AV_PIX_FMT_RGB555
417 #define PIX_FMT_RGB444 AV_PIX_FMT_RGB444
418 #define PIX_FMT_BGR48 AV_PIX_FMT_BGR48
419 #define PIX_FMT_BGR565 AV_PIX_FMT_BGR565
420 #define PIX_FMT_BGR555 AV_PIX_FMT_BGR555
421 #define PIX_FMT_BGR444 AV_PIX_FMT_BGR444
423 #define PIX_FMT_YUV420P9 AV_PIX_FMT_YUV420P9
424 #define PIX_FMT_YUV422P9 AV_PIX_FMT_YUV422P9
425 #define PIX_FMT_YUV444P9 AV_PIX_FMT_YUV444P9
426 #define PIX_FMT_YUV420P10 AV_PIX_FMT_YUV420P10
427 #define PIX_FMT_YUV422P10 AV_PIX_FMT_YUV422P10
428 #define PIX_FMT_YUV444P10 AV_PIX_FMT_YUV444P10
429 #define PIX_FMT_YUV420P12 AV_PIX_FMT_YUV420P12
430 #define PIX_FMT_YUV422P12 AV_PIX_FMT_YUV422P12
431 #define PIX_FMT_YUV444P12 AV_PIX_FMT_YUV444P12
432 #define PIX_FMT_YUV420P14 AV_PIX_FMT_YUV420P14
433 #define PIX_FMT_YUV422P14 AV_PIX_FMT_YUV422P14
434 #define PIX_FMT_YUV444P14 AV_PIX_FMT_YUV444P14
435 #define PIX_FMT_YUV420P16 AV_PIX_FMT_YUV420P16
436 #define PIX_FMT_YUV422P16 AV_PIX_FMT_YUV422P16
437 #define PIX_FMT_YUV444P16 AV_PIX_FMT_YUV444P16
439 #define PIX_FMT_RGBA64 AV_PIX_FMT_RGBA64
440 #define PIX_FMT_BGRA64 AV_PIX_FMT_BGRA64
441 #define PIX_FMT_GBRP9 AV_PIX_FMT_GBRP9
442 #define PIX_FMT_GBRP10 AV_PIX_FMT_GBRP10
443 #define PIX_FMT_GBRP12 AV_PIX_FMT_GBRP12
444 #define PIX_FMT_GBRP14 AV_PIX_FMT_GBRP14
445 #define PIX_FMT_GBRP16 AV_PIX_FMT_GBRP16
446 #endif
449 * Chromaticity coordinates of the source primaries.
458 AVCOL_PRI_BT470BG = 5,
///< also ITU-R BT601-6 625 / ITU-R BT1358 625 / ITU-R BT1700 625 PAL & SECAM
467 * Color Transfer Characteristic.
487 };
488
489 /**
490 * YUV colorspace type.
491 */
493 AVCOL_SPC_RGB = 0,
///< order of coefficients is actually GBR, also IEC 61966-2-1 (sRGB)
494 AVCOL_SPC_BT709 = 1,
///< also ITU-R BT1361 / IEC 61966-2-4 xvYCC709 / SMPTE RP177 Annex B
497 AVCOL_SPC_FCC = 4,
///< FCC Title 47 Code of Federal Regulations 73.682 (a)(20)
498 AVCOL_SPC_BT470BG = 5,
///< also ITU-R BT601-6 625 / ITU-R BT1358 625 / ITU-R BT1700 625 PAL & SECAM / IEC 61966-2-4 xvYCC601
499 AVCOL_SPC_SMPTE170M = 6,
///< also ITU-R BT601-6 525 / ITU-R BT1358 525 / ITU-R BT1700 NTSC / functionally identical to above
505 };
506 #define AVCOL_SPC_YCGCO AVCOL_SPC_YCOCG
507
508
509 /**
510 * MPEG vs JPEG YUV range.
511 */
517 };
518
519 /**
520 * Location of chroma samples.
521 *
522 * X X 3 4 X X are luma samples,
523 * 1 2 1-6 are possible chroma positions
524 * X X 5 6 X 0 is undefined/unknown position
525 */
535 };
536
537 #endif /* AVUTIL_PIXFMT_H */