From aa59dc68d74a62b469e0bf5ae39cd73d16d5c1b3 Mon Sep 17 00:00:00 2001
From: maxd <maxim.d33@gmail.com>
Date: Fri, 3 Feb 2017 20:32:14 +0100
Subject: [PATCH] qsv: adding hevc decode support

---
 libhb/decavcodec.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/libhb/decavcodec.c b/libhb/decavcodec.c
index 3515ba167..bed5d2cfb 100644
--- a/libhb/decavcodec.c
+++ b/libhb/decavcodec.c
@@ -1495,6 +1495,13 @@ static int decavcodecvInit( hb_work_object_t * w, hb_job_t * job )
             av_dict_set( &av_opts, "flags", "output_corrupt", 0 );
         }
 
+#ifdef USE_QSV
+        if (pv->qsv.decode && pv->context->codec_id == AV_CODEC_ID_HEVC)
+        {
+            av_dict_set( &av_opts, "load_plugin", "hevc_hw", 0 );
+        }
+#endif
+
         if ( hb_avcodec_open( pv->context, codec, &av_opts, pv->threads ) )
         {
             av_dict_free( &av_opts );
@@ -1900,6 +1907,7 @@ static int decavcodecvInfo( hb_work_object_t *w, hb_work_info_t *info )
     {
         switch (pv->context->codec_id)
         {
+            case AV_CODEC_ID_HEVC:
             case AV_CODEC_ID_H264:
                 if (pv->context->pix_fmt == AV_PIX_FMT_YUV420P ||
                     pv->context->pix_fmt == AV_PIX_FMT_YUVJ420P)
-- 
2.40.0