X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2Fdevices%2FCECPlaybackDevice.h;h=d12c15053878ce4ff927d8bceb1e3e7f4c16dc41;hb=e75e09bfc2b9799a6a57f9c4ca8cff4984e8fc99;hp=414f8478517562b71366d592fdc5f60222827aaf;hpb=e14b15876a6d4b601973d01905eb2a6a0daeedcb;p=deb_libcec.git diff --git a/src/lib/devices/CECPlaybackDevice.h b/src/lib/devices/CECPlaybackDevice.h index 414f847..d12c150 100644 --- a/src/lib/devices/CECPlaybackDevice.h +++ b/src/lib/devices/CECPlaybackDevice.h @@ -41,13 +41,15 @@ namespace CEC CCECPlaybackDevice(CCECProcessor *processor, cec_logical_address address, uint16_t iPhysicalAddress = CEC_INVALID_PHYSICAL_ADDRESS); virtual ~CCECPlaybackDevice(void) {}; - cec_deck_info GetDeckStatus(void); - cec_deck_control_mode GetDeckControlMode(void); + cec_deck_info GetDeckStatus(const cec_logical_address initiator); + cec_deck_control_mode GetDeckControlMode(const cec_logical_address initiator); void SetDeckStatus(cec_deck_info deckStatus); void SetDeckControlMode(cec_deck_control_mode mode); - bool TransmitDeckStatus(cec_logical_address dest); + bool TransmitDeckStatus(cec_logical_address dest, bool bIsReply); + + virtual void ResetDeviceStatus(void); protected: cec_deck_info m_deckStatus;