diff options
author | RĂ©mi Denis-Courmont <remi@remlab.net> | 2013-01-11 23:27:58 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-01-12 12:00:49 +0100 |
commit | 169fb94f0f65dcb18549f6f25fb29ea58d7eaf92 (patch) | |
tree | a9783d1c8b6ff9236ffa2f242f5a34af115dde66 /libavutil/pixfmt.h | |
parent | f61272f0efd80da437570aad2c40e00f9d3f4fe6 (diff) | |
download | ffmpeg-169fb94f0f65dcb18549f6f25fb29ea58d7eaf92.tar.gz |
pixfmt: add picture format for VDPAU
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavutil/pixfmt.h')
-rw-r--r-- | libavutil/pixfmt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/pixfmt.h b/libavutil/pixfmt.h index 1072f00895..1863099037 100644 --- a/libavutil/pixfmt.h +++ b/libavutil/pixfmt.h @@ -178,6 +178,7 @@ enum AVPixelFormat { AV_PIX_FMT_YUVA422P16LE, ///< planar YUV 4:2:2 48bpp, (1 Cr & Cb sample per 2x1 Y & A samples, little-endian) AV_PIX_FMT_YUVA444P16BE, ///< planar YUV 4:4:4 64bpp, (1 Cr & Cb sample per 1x1 Y & A samples, big-endian) AV_PIX_FMT_YUVA444P16LE, ///< planar YUV 4:4:4 64bpp, (1 Cr & Cb sample per 1x1 Y & A samples, little-endian) + AV_PIX_FMT_VDPAU, ///< HW acceleration through VDPAU, Picture.data[3] contains a VdpVideoSurface 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 #if FF_API_PIX_FMT |