cec: bump version to 1.6.3. check the client version, not the server version in libce...
[deb_libcec.git] / src / lib / devices / CECPlaybackDevice.h
index f8a24a19170d870d6ac750d1c9cfad5250309c66..c21bf30f206a8ea107a19c0309692d2f108faed9 100644 (file)
@@ -38,17 +38,19 @@ namespace CEC
   class CCECPlaybackDevice : public CCECBusDevice
   {
   public:
-    CCECPlaybackDevice(CCECProcessor *processor, cec_logical_address address, uint16_t iPhysicalAddress = 0);
+    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);
 
+    virtual void ResetDeviceStatus(void);
+
   protected:
     cec_deck_info         m_deckStatus;
     cec_deck_control_mode m_deckControlMode;