cec: don't send out system audio mode statuses when we're not an audio device
[deb_libcec.git] / src / lib / implementations / CECCommandHandler.cpp
CommitLineData
e9de9629
LOK
1/*
2 * This file is part of the libCEC(R) library.
3 *
4 * libCEC(R) is Copyright (C) 2011 Pulse-Eight Limited. All rights reserved.
5 * libCEC(R) is an original work, containing original code.
6 *
7 * libCEC(R) is a trademark of Pulse-Eight Limited.
8 *
9 * This program is dual-licensed; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 *
23 *
24 * Alternatively, you can license this library under a commercial license,
25 * please contact Pulse-Eight Licensing for more information.
26 *
27 * For more information contact:
28 * Pulse-Eight Licensing <license@pulse-eight.com>
29 * http://www.pulse-eight.com/
30 * http://www.pulse-eight.net/
31 */
32
33#include "CECCommandHandler.h"
eafa9d46 34#include "../devices/CECBusDevice.h"
a1f8fb1b 35#include "../devices/CECAudioSystem.h"
28089abc 36#include "../devices/CECPlaybackDevice.h"
387b6f6f 37#include "../CECProcessor.h"
e9de9629
LOK
38
39using namespace CEC;
8747dd4f 40using namespace std;
e9de9629
LOK
41
42CCECCommandHandler::CCECCommandHandler(CCECBusDevice *busDevice)
43{
44 m_busDevice = busDevice;
45}
46
47bool CCECCommandHandler::HandleCommand(const cec_command &command)
48{
49 bool bHandled(true);
50
5e822b09 51 CStdString strLog;
03ae897d 52 strLog.Format(">> %s (%X) -> %s (%X): %s (%2X)", m_busDevice->GetProcessor()->ToString(command.initiator), command.initiator, m_busDevice->GetProcessor()->ToString(command.destination), command.destination, m_busDevice->GetProcessor()->ToString(command.opcode), command.opcode);
5e822b09
LOK
53 m_busDevice->AddLog(CEC_LOG_NOTICE, strLog);
54
6b72afcd 55 switch(command.opcode)
e9de9629 56 {
6b72afcd
LOK
57 case CEC_OPCODE_REPORT_POWER_STATUS:
58 HandleReportPowerStatus(command);
59 break;
60 case CEC_OPCODE_CEC_VERSION:
61 HandleDeviceCecVersion(command);
62 break;
63 case CEC_OPCODE_SET_MENU_LANGUAGE:
64 HandleSetMenuLanguage(command);
65 break;
66 case CEC_OPCODE_GIVE_PHYSICAL_ADDRESS:
67 HandleGivePhysicalAddress(command);
68 break;
69 case CEC_OPCODE_GIVE_OSD_NAME:
70 HandleGiveOSDName(command);
71 break;
72 case CEC_OPCODE_GIVE_DEVICE_VENDOR_ID:
73 HandleGiveDeviceVendorId(command);
74 break;
75 case CEC_OPCODE_DEVICE_VENDOR_ID:
76 HandleDeviceVendorId(command);
77 break;
78 case CEC_OPCODE_VENDOR_COMMAND_WITH_ID:
79 HandleDeviceVendorCommandWithId(command);
80 break;
81 case CEC_OPCODE_GIVE_DECK_STATUS:
82 HandleGiveDeckStatus(command);
83 break;
84 case CEC_OPCODE_DECK_CONTROL:
85 HandleDeckControl(command);
86 break;
87 case CEC_OPCODE_MENU_REQUEST:
88 HandleMenuRequest(command);
89 break;
90 case CEC_OPCODE_GIVE_DEVICE_POWER_STATUS:
91 HandleGiveDevicePowerStatus(command);
92 break;
93 case CEC_OPCODE_GET_CEC_VERSION:
94 HandleGetCecVersion(command);
95 break;
96 case CEC_OPCODE_USER_CONTROL_PRESSED:
97 HandleUserControlPressed(command);
98 break;
99 case CEC_OPCODE_USER_CONTROL_RELEASE:
100 HandleUserControlRelease(command);
101 break;
102 case CEC_OPCODE_GIVE_AUDIO_STATUS:
103 HandleGiveAudioStatus(command);
104 break;
105 case CEC_OPCODE_GIVE_SYSTEM_AUDIO_MODE_STATUS:
106 HandleGiveSystemAudioModeStatus(command);
107 break;
108 case CEC_OPCODE_SYSTEM_AUDIO_MODE_REQUEST:
109 HandleSetSystemAudioModeRequest(command);
110 break;
111 case CEC_OPCODE_REQUEST_ACTIVE_SOURCE:
112 HandleRequestActiveSource(command);
113 break;
114 case CEC_OPCODE_SET_STREAM_PATH:
115 HandleSetStreamPath(command);
116 break;
117 case CEC_OPCODE_ROUTING_CHANGE:
118 HandleRoutingChange(command);
119 break;
907bd60f
LOK
120 case CEC_OPCODE_ROUTING_INFORMATION:
121 HandleRoutingInformation(command);
122 break;
6b72afcd
LOK
123 case CEC_OPCODE_STANDBY:
124 HandleStandby(command);
125 break;
126 case CEC_OPCODE_ACTIVE_SOURCE:
127 HandleActiveSource(command);
128 break;
907bd60f
LOK
129 case CEC_OPCODE_REPORT_PHYSICAL_ADDRESS:
130 HandleReportPhysicalAddress(command);
131 break;
15d1a84c
LOK
132 case CEC_OPCODE_REPORT_AUDIO_STATUS:
133 HandleReportAudioStatus(command);
134 break;
868dc71f
LOK
135 case CEC_OPCODE_SYSTEM_AUDIO_MODE_STATUS:
136 HandleSystemAudioStatus(command);
137 break;
15d1a84c
LOK
138 case CEC_OPCODE_SET_OSD_NAME:
139 HandleSetOSDName(command);
140 break;
1a6669b8
LOK
141 case CEC_OPCODE_IMAGE_VIEW_ON:
142 HandleImageViewOn(command);
143 break;
144 case CEC_OPCODE_TEXT_VIEW_ON:
145 HandleTextViewOn(command);
146 break;
6b72afcd
LOK
147 default:
148 UnhandledCommand(command);
e9de9629 149 bHandled = false;
6b72afcd 150 break;
e9de9629
LOK
151 }
152
9f332fe2 153 m_busDevice->GetProcessor()->AddCommand(command);
e9de9629
LOK
154 return bHandled;
155}
156
be5b0e24
LOK
157bool CCECCommandHandler::HandleActiveSource(const cec_command &command)
158{
159 if (command.parameters.size == 2)
160 {
161 uint16_t iAddress = ((uint16_t)command.parameters[0] << 8) | ((uint16_t)command.parameters[1]);
162 return m_busDevice->GetProcessor()->SetStreamPath(iAddress);
163 }
164
165 return true;
166}
167
a9232a79
LOK
168bool CCECCommandHandler::HandleDeckControl(const cec_command &command)
169{
170 CCECBusDevice *device = GetDevice(command.destination);
88e5de6f 171 if (device && (device->GetType() == CEC_DEVICE_TYPE_PLAYBACK_DEVICE || device->GetType() == CEC_DEVICE_TYPE_RECORDING_DEVICE) && command.parameters.size > 0)
a9232a79
LOK
172 {
173 ((CCECPlaybackDevice *) device)->SetDeckControlMode((cec_deck_control_mode) command.parameters[0]);
174 return true;
175 }
176
177 return false;
178}
179
6a1c0009
LOK
180bool CCECCommandHandler::HandleDeviceCecVersion(const cec_command &command)
181{
182 if (command.parameters.size == 1)
183 {
184 CCECBusDevice *device = GetDevice(command.initiator);
185 if (device)
186 device->SetCecVersion((cec_version) command.parameters[0]);
187 }
188
189 return true;
190}
191
e9de9629
LOK
192bool CCECCommandHandler::HandleDeviceVendorCommandWithId(const cec_command &command)
193{
6b72afcd
LOK
194 if (m_busDevice->MyLogicalAddressContains(command.destination))
195 m_busDevice->GetProcessor()->TransmitAbort(command.initiator, command.opcode, CEC_ABORT_REASON_REFUSED);
196
6a1c0009 197 return true;
e9de9629
LOK
198}
199
200bool CCECCommandHandler::HandleDeviceVendorId(const cec_command &command)
201{
181b3475 202 SetVendorId(command);
6a1c0009 203 return true;
e9de9629
LOK
204}
205
206bool CCECCommandHandler::HandleGetCecVersion(const cec_command &command)
207{
6b72afcd
LOK
208 if (m_busDevice->MyLogicalAddressContains(command.destination))
209 {
210 CCECBusDevice *device = GetDevice(command.destination);
211 if (device)
212 return device->TransmitCECVersion(command.initiator);
213 }
0f23c85c
LOK
214
215 return false;
e9de9629
LOK
216}
217
a1f8fb1b
LOK
218bool CCECCommandHandler::HandleGiveAudioStatus(const cec_command &command)
219{
6b72afcd
LOK
220 if (m_busDevice->MyLogicalAddressContains(command.destination))
221 {
222 CCECBusDevice *device = GetDevice(command.destination);
223 if (device && device->GetType() == CEC_DEVICE_TYPE_AUDIO_SYSTEM)
224 return ((CCECAudioSystem *) device)->TransmitAudioStatus(command.initiator);
225 }
a1f8fb1b
LOK
226
227 return false;
228}
229
e9de9629
LOK
230bool CCECCommandHandler::HandleGiveDeckStatus(const cec_command &command)
231{
6b72afcd
LOK
232 if (m_busDevice->MyLogicalAddressContains(command.destination))
233 {
234 CCECBusDevice *device = GetDevice(command.destination);
235 if (device && (device->GetType() == CEC_DEVICE_TYPE_PLAYBACK_DEVICE || device->GetType() == CEC_DEVICE_TYPE_RECORDING_DEVICE))
236 return ((CCECPlaybackDevice *) device)->TransmitDeckStatus(command.initiator);
237 }
0f23c85c
LOK
238
239 return false;
e9de9629
LOK
240}
241
242bool CCECCommandHandler::HandleGiveDevicePowerStatus(const cec_command &command)
243{
6b72afcd
LOK
244 if (m_busDevice->MyLogicalAddressContains(command.destination))
245 {
246 CCECBusDevice *device = GetDevice(command.destination);
247 if (device)
248 return device->TransmitPowerState(command.initiator);
249 }
0f23c85c
LOK
250
251 return false;
e9de9629
LOK
252}
253
254bool CCECCommandHandler::HandleGiveDeviceVendorId(const cec_command &command)
255{
6b72afcd
LOK
256 if (m_busDevice->MyLogicalAddressContains(command.destination))
257 {
258 CCECBusDevice *device = GetDevice(command.destination);
259 if (device)
260 return device->TransmitVendorID(command.initiator);
261 }
0f23c85c
LOK
262
263 return false;
e9de9629
LOK
264}
265
266bool CCECCommandHandler::HandleGiveOSDName(const cec_command &command)
267{
6b72afcd
LOK
268 if (m_busDevice->MyLogicalAddressContains(command.destination))
269 {
270 CCECBusDevice *device = GetDevice(command.destination);
271 if (device)
272 return device->TransmitOSDName(command.initiator);
273 }
0f23c85c
LOK
274
275 return false;
e9de9629
LOK
276}
277
278bool CCECCommandHandler::HandleGivePhysicalAddress(const cec_command &command)
279{
6b72afcd
LOK
280 if (m_busDevice->MyLogicalAddressContains(command.destination))
281 {
282 CCECBusDevice *device = GetDevice(command.destination);
283 if (device)
284 return device->TransmitPhysicalAddress();
285 }
09c10b66
LOK
286
287 return false;
e9de9629
LOK
288}
289
1a6669b8
LOK
290bool CCECCommandHandler::HandleGiveSystemAudioModeStatus(const cec_command &command)
291{
292 if (m_busDevice->MyLogicalAddressContains(command.destination))
293 {
294 CCECBusDevice *device = GetDevice(command.destination);
295 if (device && device->GetType() == CEC_DEVICE_TYPE_AUDIO_SYSTEM)
296 return ((CCECAudioSystem *) device)->TransmitSystemAudioModeStatus(command.initiator);
297 }
298
299 return false;
300}
301
302bool CCECCommandHandler::HandleImageViewOn(const cec_command &command)
303{
304 m_busDevice->GetProcessor()->SetActiveSource(command.initiator);
305 return true;
306}
307
e9de9629
LOK
308bool CCECCommandHandler::HandleMenuRequest(const cec_command &command)
309{
6b72afcd 310 if (m_busDevice->MyLogicalAddressContains(command.destination))
0f23c85c 311 {
6b72afcd
LOK
312 if (command.parameters[0] == CEC_MENU_REQUEST_TYPE_QUERY)
313 {
314 CCECBusDevice *device = GetDevice(command.destination);
315 if (device)
316 return device->TransmitMenuState(command.initiator);
317 }
15d1a84c
LOK
318 }
319
320 return false;
321}
322
323bool CCECCommandHandler::HandleReportAudioStatus(const cec_command &command)
324{
325 if (command.parameters.size == 1)
326 {
327 CCECBusDevice *device = GetDevice(command.initiator);
328 if (device && device->GetType() == CEC_DEVICE_TYPE_AUDIO_SYSTEM)
6b72afcd 329 {
15d1a84c
LOK
330 ((CCECAudioSystem *)device)->SetAudioStatus(command.parameters[0]);
331 return true;
6b72afcd 332 }
0f23c85c
LOK
333 }
334 return false;
e9de9629
LOK
335}
336
907bd60f
LOK
337bool CCECCommandHandler::HandleReportPhysicalAddress(const cec_command &command)
338{
0bfce006 339 if (command.parameters.size == 3)
907bd60f
LOK
340 {
341 uint16_t iNewAddress = ((uint16_t)command.parameters[0] << 8) | ((uint16_t)command.parameters[1]);
16b1e052 342 SetPhysicalAddress(command.initiator, iNewAddress);
907bd60f
LOK
343 }
344 return true;
345}
346
e55f3f70
LOK
347bool CCECCommandHandler::HandleReportPowerStatus(const cec_command &command)
348{
349 if (command.parameters.size == 1)
350 {
351 CCECBusDevice *device = GetDevice(command.initiator);
352 if (device)
353 device->SetPowerStatus((cec_power_status) command.parameters[0]);
354 }
355 return true;
356}
357
e9de9629
LOK
358bool CCECCommandHandler::HandleRequestActiveSource(const cec_command &command)
359{
360 CStdString strLog;
361 strLog.Format(">> %i requests active source", (uint8_t) command.initiator);
362 m_busDevice->AddLog(CEC_LOG_DEBUG, strLog.c_str());
8747dd4f
LOK
363
364 vector<CCECBusDevice *> devices;
365 for (int iDevicePtr = (int)GetMyDevices(devices)-1; iDevicePtr >=0; iDevicePtr--)
366 devices[iDevicePtr]->TransmitActiveSource();
c4098482 367
8747dd4f 368 return true;
e9de9629
LOK
369}
370
371bool CCECCommandHandler::HandleRoutingChange(const cec_command &command)
372{
373 if (command.parameters.size == 4)
374 {
375 uint16_t iOldAddress = ((uint16_t)command.parameters[0] << 8) | ((uint16_t)command.parameters[1]);
376 uint16_t iNewAddress = ((uint16_t)command.parameters[2] << 8) | ((uint16_t)command.parameters[3]);
e9de9629 377
0f23c85c
LOK
378 CCECBusDevice *device = GetDevice(command.initiator);
379 if (device)
9dc04b07 380 device->SetStreamPath(iNewAddress, iOldAddress);
e9de9629
LOK
381 }
382 return true;
383}
384
907bd60f
LOK
385bool CCECCommandHandler::HandleRoutingInformation(const cec_command &command)
386{
387 if (command.parameters.size == 2)
388 {
389 uint16_t iNewAddress = ((uint16_t)command.parameters[0] << 8) | ((uint16_t)command.parameters[1]);
16b1e052 390 m_busDevice->GetProcessor()->SetStreamPath(iNewAddress);
907bd60f 391 }
15d1a84c
LOK
392
393 return false;
907bd60f
LOK
394}
395
a3269a0a
LOK
396bool CCECCommandHandler::HandleSetMenuLanguage(const cec_command &command)
397{
398 if (command.parameters.size == 3)
399 {
400 CCECBusDevice *device = GetDevice(command.initiator);
401 if (device)
402 {
403 cec_menu_language language;
404 language.device = command.initiator;
56701628 405 for (uint8_t iPtr = 0; iPtr < 4; iPtr++)
a3269a0a
LOK
406 language.language[iPtr] = command.parameters[iPtr];
407 language.language[3] = 0;
408 device->SetMenuLanguage(language);
15d1a84c
LOK
409 return true;
410 }
411 }
412 return false;
413}
414
415bool CCECCommandHandler::HandleSetOSDName(const cec_command &command)
416{
417 if (command.parameters.size > 0)
418 {
419 CCECBusDevice *device = GetDevice(command.initiator);
420 if (device)
421 {
422 char buf[1024];
423 for (uint8_t iPtr = 0; iPtr < command.parameters.size; iPtr++)
424 buf[iPtr] = (char)command.parameters[iPtr];
425 buf[command.parameters.size] = 0;
426
427 CStdString strName(buf);
428 device->SetOSDName(strName);
6b72afcd 429
15d1a84c 430 return true;
a3269a0a
LOK
431 }
432 }
15d1a84c 433 return false;
a3269a0a
LOK
434}
435
e9de9629
LOK
436bool CCECCommandHandler::HandleSetStreamPath(const cec_command &command)
437{
438 if (command.parameters.size >= 2)
439 {
b6c7bc94 440 uint16_t iStreamAddress = ((uint16_t)command.parameters[0] << 8) | ((uint16_t)command.parameters[1]);
e9de9629 441 CStdString strLog;
b6c7bc94 442 strLog.Format(">> %i sets stream path to physical address %04x", command.initiator, iStreamAddress);
e9de9629 443 m_busDevice->AddLog(CEC_LOG_DEBUG, strLog.c_str());
04437dcf 444
b6c7bc94
LOK
445 if (m_busDevice->GetProcessor()->SetStreamPath(iStreamAddress))
446 {
447 CCECBusDevice *device = GetDeviceByPhysicalAddress(iStreamAddress);
448 if (device)
449 {
450 return device->TransmitActiveSource() &&
451 device->TransmitMenuState(command.initiator);
452 }
453 }
e9de9629 454 }
15d1a84c 455 return false;
e9de9629
LOK
456}
457
e5e86c76
LOK
458bool CCECCommandHandler::HandleSetSystemAudioModeRequest(const cec_command &command)
459{
6b72afcd 460 if (m_busDevice->MyLogicalAddressContains(command.destination) && command.parameters.size >= 1)
e5e86c76
LOK
461 {
462 CCECBusDevice *device = GetDevice(command.destination);
463 if (device&& device->GetType() == CEC_DEVICE_TYPE_AUDIO_SYSTEM)
464 return ((CCECAudioSystem *) device)->SetSystemAudioMode(command);
465 }
6b72afcd 466 return false;
e5e86c76
LOK
467}
468
4d6b4433
LOK
469bool CCECCommandHandler::HandleStandby(const cec_command &command)
470{
471 CCECBusDevice *device = GetDevice(command.initiator);
472 if (device)
473 device->SetPowerStatus(CEC_POWER_STATUS_STANDBY);
6b72afcd 474
4d6b4433
LOK
475 return true;
476}
477
868dc71f
LOK
478bool CCECCommandHandler::HandleSystemAudioStatus(const cec_command &command)
479{
480 CCECBusDevice *device = GetDevice(command.initiator);
481 if (device && device->GetType() == CEC_DEVICE_TYPE_AUDIO_SYSTEM)
482 {
483 ((CCECAudioSystem *)device)->SetSystemAudioMode(command);
484 return true;
485 }
486
487 return false;
488}
489
1a6669b8 490bool CCECCommandHandler::HandleTextViewOn(const cec_command &command)
cf0ecd85 491{
1a6669b8
LOK
492 m_busDevice->GetProcessor()->SetActiveSource(command.initiator);
493 return true;
cf0ecd85
LOK
494}
495
e9de9629
LOK
496bool CCECCommandHandler::HandleUserControlPressed(const cec_command &command)
497{
6b72afcd 498 if (m_busDevice->MyLogicalAddressContains(command.destination) && command.parameters.size > 0)
e9de9629
LOK
499 {
500 m_busDevice->GetProcessor()->AddKey();
501
502 if (command.parameters[0] <= CEC_USER_CONTROL_CODE_MAX)
503 {
504 CStdString strLog;
68391d4f 505 strLog.Format("key pressed: %x", command.parameters[0]);
e9de9629
LOK
506 m_busDevice->AddLog(CEC_LOG_DEBUG, strLog.c_str());
507
68391d4f
LOK
508 if (command.parameters[0] == CEC_USER_CONTROL_CODE_POWER ||
509 command.parameters[0] == CEC_USER_CONTROL_CODE_POWER_ON_FUNCTION)
510 {
511 CCECBusDevice *device = GetDevice(command.destination);
512 if (device)
513 device->SetPowerStatus(CEC_POWER_STATUS_ON);
514 }
515
e9de9629 516 m_busDevice->GetProcessor()->SetCurrentButton((cec_user_control_code) command.parameters[0]);
15d1a84c 517 return true;
e9de9629
LOK
518 }
519 }
15d1a84c 520 return false;
e9de9629
LOK
521}
522
523bool CCECCommandHandler::HandleUserControlRelease(const cec_command &command)
524{
6b72afcd
LOK
525 if (m_busDevice->MyLogicalAddressContains(command.destination))
526 m_busDevice->GetProcessor()->AddKey();
527
e9de9629
LOK
528 return true;
529}
530
531void CCECCommandHandler::UnhandledCommand(const cec_command &command)
532{
b5b53c7d
LOK
533 CStdString strLog;
534 strLog.Format("unhandled command with opcode %02x from address %d", command.opcode, command.initiator);
535 m_busDevice->AddLog(CEC_LOG_DEBUG, strLog);
0f23c85c
LOK
536}
537
8747dd4f
LOK
538unsigned int CCECCommandHandler::GetMyDevices(vector<CCECBusDevice *> &devices) const
539{
540 unsigned int iReturn(0);
541
542 cec_logical_addresses addresses = m_busDevice->GetProcessor()->GetLogicalAddresses();
f2198ab5 543 for (uint8_t iPtr = 0; iPtr < 16; iPtr++)
8747dd4f
LOK
544 {
545 if (addresses[iPtr])
546 {
547 devices.push_back(GetDevice((cec_logical_address) iPtr));
548 ++iReturn;
549 }
550 }
551
552 return iReturn;
553}
554
0f23c85c
LOK
555CCECBusDevice *CCECCommandHandler::GetDevice(cec_logical_address iLogicalAddress) const
556{
557 CCECBusDevice *device = NULL;
558
559 if (iLogicalAddress >= CECDEVICE_TV && iLogicalAddress <= CECDEVICE_BROADCAST)
560 device = m_busDevice->GetProcessor()->m_busDevices[iLogicalAddress];
561
562 return device;
e9de9629 563}
6685ae07
LOK
564
565CCECBusDevice *CCECCommandHandler::GetDeviceByPhysicalAddress(uint16_t iPhysicalAddress) const
566{
8ac9c610 567 return m_busDevice->GetProcessor()->GetDeviceByPhysicalAddress(iPhysicalAddress);
6685ae07 568}
181b3475 569
c4098482
LOK
570CCECBusDevice *CCECCommandHandler::GetDeviceByType(cec_device_type type) const
571{
572 return m_busDevice->GetProcessor()->GetDeviceByType(type);
573}
574
181b3475
LOK
575void CCECCommandHandler::SetVendorId(const cec_command &command)
576{
577 if (command.parameters.size < 3)
578 {
579 m_busDevice->AddLog(CEC_LOG_WARNING, "invalid vendor ID received");
580 return;
581 }
582
bae71306
LOK
583 uint64_t iVendorId = ((uint64_t)command.parameters[0] << 16) +
584 ((uint64_t)command.parameters[1] << 8) +
181b3475
LOK
585 (uint64_t)command.parameters[2];
586
587 CCECBusDevice *device = GetDevice((cec_logical_address) command.initiator);
588 if (device)
c4098482 589 device->SetVendorId(iVendorId);
181b3475 590}
5e822b09 591
16b1e052
LOK
592void CCECCommandHandler::SetPhysicalAddress(cec_logical_address iAddress, uint16_t iNewAddress)
593{
594 if (!m_busDevice->MyLogicalAddressContains(iAddress))
595 {
596 bool bOurAddress(m_busDevice->GetProcessor()->GetPhysicalAddress() == iNewAddress);
597 GetDevice(iAddress)->SetPhysicalAddress(iNewAddress);
598 if (bOurAddress)
599 {
600 /* another device reported the same physical address as ours
601 * since we don't have physical address detection yet, we'll just use the
602 * given address, increased by 0x100 for now */
603 m_busDevice->GetProcessor()->SetPhysicalAddress(iNewAddress + 0x100);
604 }
605 }
606}