diff options
| author | Michael Niedermayer <[email protected]> | 2012-07-04 21:11:39 +0200 | 
|---|---|---|
| committer | Luca Barbato <[email protected]> | 2016-10-12 17:39:30 +0200 | 
| commit | 1e93aa69a60815d1407a6c34d8da3f83ab193ad5 (patch) | |
| tree | efe8f9aa2247cee8766f34e84951bd0f730f12bc /libavutil/pixfmt.h | |
| parent | e7e5be8635c1cf0588d2a07e59374135de6da55a (diff) | |
Add GBRP12 pixel format support
Signed-off-by: Vittorio Giovara <[email protected]>
Diffstat (limited to 'libavutil/pixfmt.h')
| -rw-r--r-- | libavutil/pixfmt.h | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/libavutil/pixfmt.h b/libavutil/pixfmt.h index 3e040fb3a0..473f53cc11 100644 --- a/libavutil/pixfmt.h +++ b/libavutil/pixfmt.h @@ -239,6 +239,9 @@ enum AVPixelFormat {      AV_PIX_FMT_YUV444P12BE, ///< planar YUV 4:4:4, 36bpp, (1 Cr & Cb sample per 1x1 Y), big-endian      AV_PIX_FMT_YUV444P12LE, ///< planar YUV 4:4:4, 36bpp, (1 Cr & Cb sample per 1x1 Y), little-endian +    AV_PIX_FMT_GBRP12BE,  ///< planar GBR 4:4:4 36bpp, big-endian +    AV_PIX_FMT_GBRP12LE,  ///< planar GBR 4:4:4 36bpp, little-endian +      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  }; @@ -281,6 +284,7 @@ enum AVPixelFormat {  #define AV_PIX_FMT_GBRP9     AV_PIX_FMT_NE(GBRP9BE ,    GBRP9LE)  #define AV_PIX_FMT_GBRP10    AV_PIX_FMT_NE(GBRP10BE,    GBRP10LE) +#define AV_PIX_FMT_GBRP12    AV_PIX_FMT_NE(GBRP12BE,    GBRP12LE)  #define AV_PIX_FMT_GBRP16    AV_PIX_FMT_NE(GBRP16BE,    GBRP16LE)  #define AV_PIX_FMT_GBRAP16   AV_PIX_FMT_NE(GBRAP16BE,   GBRAP16LE)  | 
