From 8fb02873c551010a9f1539e952f52d362e498e29 Mon Sep 17 00:00:00 2001 From: Lars Op den Kamp Date: Thu, 12 Dec 2013 02:57:24 +0100 Subject: [PATCH] added our vendor id --- include/cectypes.h | 1 + src/LibCecSharp/CecSharpTypes.h | 1 + src/lib/CECTypeUtils.h | 2 ++ 3 files changed, 4 insertions(+) diff --git a/include/cectypes.h b/include/cectypes.h index a95243c..82ff686 100644 --- a/include/cectypes.h +++ b/include/cectypes.h @@ -833,6 +833,7 @@ typedef enum cec_vendor_id CEC_VENDOR_ONKYO = 0x0009B0, CEC_VENDOR_MEDION = 0x000CB8, CEC_VENDOR_TOSHIBA2 = 0x000CE7, + CEC_VENDOR_PULSE_EIGHT = 0x001582, CEC_VENDOR_AKAI = 0x0020C7, CEC_VENDOR_AOC = 0x002467, CEC_VENDOR_PANASONIC = 0x008045, diff --git a/src/LibCecSharp/CecSharpTypes.h b/src/LibCecSharp/CecSharpTypes.h index db459e6..6dc324a 100644 --- a/src/LibCecSharp/CecSharpTypes.h +++ b/src/LibCecSharp/CecSharpTypes.h @@ -792,6 +792,7 @@ namespace CecSharp Onkyo = 0x0009B0, Medion = 0x000CB8, Toshiba2 = 0x000CE7, + PulseEight = 0x001582, Akai = 0x0020C7, AOC = 0x002467, Panasonic = 0x008045, diff --git a/src/lib/CECTypeUtils.h b/src/lib/CECTypeUtils.h index 20e318b..a47d3b5 100644 --- a/src/lib/CECTypeUtils.h +++ b/src/lib/CECTypeUtils.h @@ -521,6 +521,8 @@ namespace CEC return "Marantz"; case CEC_VENDOR_HARMAN_KARDON: return "Harman/Kardon"; + case CEC_VENDOR_PULSE_EIGHT: + return "Pulse Eight"; default: return "Unknown"; } -- 2.34.1