Get the physical address of the device with the given logical address. The logical address of the device to get the physical address for. The physical address or 0 if it wasn't found.
| 545 | /// <param name="address">The logical address of the device to get the physical address for.</param> |
| 546 | /// <returns>The physical address or 0 if it wasn't found.</returns> |
| 547 | uint16_t GetDevicePhysicalAddress(CecLogicalAddress address) |
| 548 | { |
| 549 | if (!m_libCec) { |
| 550 | return 0xFFFF; |
| 551 | } |
| 552 | return m_libCec->GetDevicePhysicalAddress((cec_logical_address)address); |
| 553 | } |
| 554 | |
| 555 | /// <summary> |
| 556 | /// Sets the stream path to the device on the given logical address. |
no test coverage detected