diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-04-09 03:07:47 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-04-09 03:07:47 +0200 |
commit | 0a1cc04e6c09295cf06a1ca96d9a5a6e8bd85acb (patch) | |
tree | ac4bfa3f2e2fa0c0a7766633650516e0ac4247ef /libavutil/pixfmt.h | |
parent | 352e13e2a9914c623fc53fab3ff49a21e9232674 (diff) | |
parent | 8b17243d1742279bcb2368f8d325ea71e66736c8 (diff) | |
download | ffmpeg-0a1cc04e6c09295cf06a1ca96d9a5a6e8bd85acb.tar.gz |
Merge commit '8b17243d1742279bcb2368f8d325ea71e66736c8'
* commit '8b17243d1742279bcb2368f8d325ea71e66736c8':
lavu: Add packed YVYU422 pixel format
Conflicts:
libavutil/version.h
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/pixfmt.h')
-rw-r--r-- | libavutil/pixfmt.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/pixfmt.h b/libavutil/pixfmt.h index 374f967608..57155cb7d6 100644 --- a/libavutil/pixfmt.h +++ b/libavutil/pixfmt.h @@ -228,6 +228,8 @@ enum AVPixelFormat { 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 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 + AV_PIX_FMT_YVYU422, ///< packed YUV 4:2:2, 16bpp, Y0 Cr Y1 Cb + #ifndef AV_PIX_FMT_ABI_GIT_MASTER 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 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 |