diff options
author | Mark Thompson <sw@jkqxz.net> | 2016-09-30 17:27:09 +0200 |
---|---|---|
committer | Mark Thompson <sw@jkqxz.net> | 2016-10-02 20:23:18 +0100 |
commit | eaaaabf6c93321cdb78bf61dc383cf515ec12e07 (patch) | |
tree | 59eb35ffcef63d9349fb3ac6de742aa92d59529f /libavutil/hwcontext_vaapi.c | |
parent | b8cac1e83066aa87e8402c146c81b77a11b5eec3 (diff) | |
download | ffmpeg-eaaaabf6c93321cdb78bf61dc383cf515ec12e07.tar.gz |
hwcontext_vaapi: Enable P010 support
This is required for 10-bit surfaces.
Diffstat (limited to 'libavutil/hwcontext_vaapi.c')
-rw-r--r-- | libavutil/hwcontext_vaapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/hwcontext_vaapi.c b/libavutil/hwcontext_vaapi.c index cd7d43eb8d..9617979d7c 100644 --- a/libavutil/hwcontext_vaapi.c +++ b/libavutil/hwcontext_vaapi.c @@ -109,7 +109,7 @@ static struct { MAP(YUY2, YUV422, YUYV422), MAP(Y800, YUV400, GRAY8), #ifdef VA_FOURCC_P010 - //MAP(P010, YUV420_10BPP, P010), + MAP(P010, YUV420_10BPP, P010), #endif MAP(BGRA, RGB32, BGRA), //MAP(BGRX, RGB32, BGR0), |