summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Thompson <ptf@google.com>2022-10-12 17:00:14 -0400
committerXiang, Haihao <haihao.xiang@intel.com>2022-11-30 13:15:38 +0800
commitab755cb7c4079a0884ede18b232341fe36affb8c (patch)
treecf2a5485fa0c8d72b6bb7db8b4db3a3f90845f3f
parent3ed3f6a783fdfff3fa1b567888518dcbda7eb2a3 (diff)
downloadlibva-intel-driver-master.tar.gz
i965_device_info.c: Add missing entries to gen7_cpu_hook_listHEADmaster
Based on https://ark.intel.com/content/www/us/en/ark/products/graphics/96744/intel-hd-graphics-for-3rd-generation-intel-processors.html#@nofilter these processors do not support h264 hardware encoding and should be added to the gen7_cpu_hook_list. Signed-off-by: Patrick Thompson ptf@google.com
-rw-r--r--src/i965_device_info.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/i965_device_info.c b/src/i965_device_info.c
index a6adcf5c..6c7bfd9a 100644
--- a/src/i965_device_info.c
+++ b/src/i965_device_info.c
@@ -1065,9 +1065,37 @@ static void gen6_hw_codec_preinit(VADriverContextP ctx, struct hw_codec_info *co
* It is captured by /proc/cpuinfo and the space character is stripped.
*/
const static char *gen7_cpu_hook_list[] = {
+ "Intel(R)Celeron(R)CPUG1620T",
+ "Intel(R)Celeron(R)CPUG1630",
+ "Intel(R)Celeron(R)CPU1005M",
+ "Intel(R)Celeron(R)CPU1017U",
+ "Intel(R)Celeron(R)CPU1019Y",
+ "Intel(R)Celeron(R)CPU1000M",
"Intel(R)Celeron(R)CPU1007U",
+ "Intel(R)Celeron(R)CPU1020E",
+ "Intel(R)Celeron(R)CPU1020M",
"Intel(R)Celeron(R)CPU1037U",
+ "Intel(R)Celeron(R)CPU1047UE",
+ "Intel(R)Celeron(R)CPU927UE",
+ "Intel(R)Celeron(R)CPUG1610",
+ "Intel(R)Celeron(R)CPUG1610T",
+ "Intel(R)Celeron(R)CPUG1620",
+ "Intel(R)Pentium(R)CPU2020M",
+ "Intel(R)Pentium(R)CPU2030M",
+ "Intel(R)Pentium(R)CPU2117U",
+ "Intel(R)Pentium(R)CPU2127U",
+ "Intel(R)Pentium(R)CPU2129Y",
+ "Intel(R)Pentium(R)CPUA1018",
+ "Intel(R)Pentium(R)CPUG2010",
+ "Intel(R)Pentium(R)CPUG2020",
+ "Intel(R)Pentium(R)CPUG2020T",
+ "Intel(R)Pentium(R)CPUG2030",
+ "Intel(R)Pentium(R)CPUG2030T",
+ "Intel(R)Pentium(R)CPUG2100T",
+ "Intel(R)Pentium(R)CPUG2120",
+ "Intel(R)Pentium(R)CPUG2120T",
"Intel(R)Pentium(R)CPUG2130",
+ "Intel(R)Pentium(R)CPUG2140",
};
static void gen7_hw_codec_preinit(VADriverContextP ctx, struct hw_codec_info *codec_info)