summaryrefslogtreecommitdiff
path: root/libavutil/pixfmt.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2015-02-07 12:14:45 +0100
committerAnton Khirnov <anton@khirnov.net>2015-02-19 15:07:21 +0100
commit5b1d9ceec715846a58fe029bc3889ed6fa62436a (patch)
tree56d75771ad67337574694f94b3b0b176ced5ffec /libavutil/pixfmt.h
parent0f532fd3f9b9ca974cea0feb8ddcaf4a7f3b23c5 (diff)
pixfmt: add a pixel format for QSV hwaccel
Diffstat (limited to 'libavutil/pixfmt.h')
-rw-r--r--libavutil/pixfmt.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavutil/pixfmt.h b/libavutil/pixfmt.h
index e507425150..4763583868 100644
--- a/libavutil/pixfmt.h
+++ b/libavutil/pixfmt.h
@@ -209,6 +209,11 @@ enum AVPixelFormat {
AV_PIX_FMT_GBRAP, ///< planar GBRA 4:4:4:4 32bpp
AV_PIX_FMT_GBRAP16BE, ///< planar GBRA 4:4:4:4 64bpp, big-endian
AV_PIX_FMT_GBRAP16LE, ///< planar GBRA 4:4:4:4 64bpp, little-endian
+ /**
+ * HW acceleration through QSV, data[3] contains a pointer to the
+ * mfxFrameSurface1 structure.
+ */
+ AV_PIX_FMT_QSV,
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