diff options
author | agalin89 <[email protected]> | 2020-10-22 14:02:21 +0100 |
---|---|---|
committer | Scott <[email protected]> | 2020-11-12 19:36:59 +0000 |
commit | 25fd847fc82af409afc46c9b273e072bc80b7dbd (patch) | |
tree | cd66c10abd8332d77519ff5028252de7e64646e3 /libhb/ports.c | |
parent | cc7b7e6878617573b9e8251830c92488a8b4b5a5 (diff) |
qsv: added AV1 HW decoding capabilities
Diffstat (limited to 'libhb/ports.c')
-rw-r--r-- | libhb/ports.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libhb/ports.c b/libhb/ports.c index 06a34080f..e16c4a272 100644 --- a/libhb/ports.c +++ b/libhb/ports.c @@ -285,6 +285,8 @@ const char* hb_get_cpu_platform_name() return "Intel microarchitecture Kaby Lake"; case HB_CPU_PLATFORM_INTEL_ICL: return "Intel microarchitecture Ice Lake"; + case HB_CPU_PLATFORM_INTEL_TGL: + return "Intel microarchitecture Tiger Lake"; default: return NULL; } @@ -377,6 +379,10 @@ static void init_cpu_info() break; case 0x7E: hb_cpu_info.platform = HB_CPU_PLATFORM_INTEL_ICL; + break; + case 0x8C: + hb_cpu_info.platform = HB_CPU_PLATFORM_INTEL_TGL; + break; default: break; } |