cec: fixed handling of CEC_OPCODE_SET_STREAM_PATH
[deb_libcec.git] / src / lib / devices / CECPlaybackDevice.h
index 2b13508375f3b9649a634c3f2f3a1e16dc7cb3cb..24ce072af0e423fba722c7b5b3f393bbe1624724 100644 (file)
@@ -40,5 +40,14 @@ namespace CEC
   public:
     CCECPlaybackDevice(CCECProcessor *processor, cec_logical_address address, uint16_t iPhysicalAddress = 0);
     virtual ~CCECPlaybackDevice(void) {};
+
+    virtual cec_deck_info GetDeckStatus(void) const { return m_deckStatus; };
+
+    virtual void SetDeckStatus(cec_deck_info deckStatus);
+
+    virtual bool TransmitDeckStatus(cec_logical_address dest);
+
+  protected:
+    cec_deck_info m_deckStatus;
   };
 }