diff options
author | Anton Khirnov <anton@khirnov.net> | 2016-06-22 13:00:49 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2016-07-03 09:13:29 +0200 |
commit | d20c118975220a0256027d1c2410bade94b8534d (patch) | |
tree | fb28236b84f0fc69d66a6237d0e8a93d7141bf09 | |
parent | 40f74dc87acb3f5bbb51f273790a4a7a64201b16 (diff) | |
download | ffmpeg-d20c118975220a0256027d1c2410bade94b8534d.tar.gz |
hwcontext_qsv: add support for p010
-rw-r--r-- | libavutil/hwcontext_qsv.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/hwcontext_qsv.c b/libavutil/hwcontext_qsv.c index b222da2e4d..f2c80860a8 100644 --- a/libavutil/hwcontext_qsv.c +++ b/libavutil/hwcontext_qsv.c @@ -90,6 +90,7 @@ static const struct { uint32_t fourcc; } supported_pixel_formats[] = { { AV_PIX_FMT_NV12, MFX_FOURCC_NV12 }, + { AV_PIX_FMT_P010, MFX_FOURCC_P010 }, }; static int qsv_device_init(AVHWDeviceContext *ctx) |