diff options
author | Rodeo <[email protected]> | 2013-12-27 20:49:39 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2013-12-27 20:49:39 +0000 |
commit | e087032ff8edb0441eafc225ae860503ce12f3d4 (patch) | |
tree | cf550b8e074d46aff5a235daf6c8c825660b21ca /libhb/ports.h | |
parent | 840cb1e3448867a3d56bafc980dce39189d4814f (diff) |
ports: detect more Intel microarchitecture families.
Also disable QSV hardware support on Bonnell-based microprocessors. Some Cloverview processors apparently support media SDK with third-party hardware, and until we can access hardware to test and fix the crashes we have on that platform, let's not enable it.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5942 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/ports.h')
-rw-r--r-- | libhb/ports.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libhb/ports.h b/libhb/ports.h index 5021a5176..bcc898865 100644 --- a/libhb/ports.h +++ b/libhb/ports.h @@ -23,8 +23,10 @@ enum hb_cpu_platform { // list of microarchitecture codenames HB_CPU_PLATFORM_UNSPECIFIED = 0, + HB_CPU_PLATFORM_INTEL_BNL, HB_CPU_PLATFORM_INTEL_SNB, HB_CPU_PLATFORM_INTEL_IVB, + HB_CPU_PLATFORM_INTEL_SLM, HB_CPU_PLATFORM_INTEL_HSW, }; int hb_get_cpu_count(); |