Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions include/cectypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -869,6 +869,7 @@ typedef enum cec_vendor_id
CEC_VENDOR_LG = 0x00E091,
CEC_VENDOR_SHARP = 0x08001F,
CEC_VENDOR_SONY = 0x080046,
CEC_VENDOR_TEUFEL = 0x232425;
CEC_VENDOR_BROADCOM = 0x18C086,
CEC_VENDOR_SHARP2 = 0x534850,
CEC_VENDOR_VIZIO = 0x6B746D,
Expand Down
1 change: 1 addition & 0 deletions src/dotnetlib/CecSharpTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -817,6 +817,7 @@ namespace CecSharp
Sony = 0x080046,
Broadcom = 0x18C086,
Sharp2 = 0x534850,
Teufel = 0x232425,
Vizio = 0x6B746D,
Benq = 0x8065E9,
HarmanKardon = 0x9C645E,
Expand Down
2 changes: 2 additions & 0 deletions src/libcec/CECTypeUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -533,6 +533,8 @@ namespace CEC
return "Pulse Eight";
case CEC_VENDOR_GOOGLE:
return "Google";
case CEC_VENDOR_TEUFEL:
return "Teufel";
default:
return "Unknown";
}
Expand Down