X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2Fimplementations%2FVLCommandHandler.h;h=18b75070d9531a3ce69d7500955d5eee1d2513c2;hb=b78b4e339dd201d11c5e6dbfec36534d6bc5fd69;hp=c3b0fe0337b261e5caf978d23076e9b12f929835;hpb=7656096e8198e19fd4f7b41cf9df54d811cf6fe3;p=deb_libcec.git diff --git a/src/lib/implementations/VLCommandHandler.h b/src/lib/implementations/VLCommandHandler.h index c3b0fe0..18b7507 100644 --- a/src/lib/implementations/VLCommandHandler.h +++ b/src/lib/implementations/VLCommandHandler.h @@ -41,5 +41,14 @@ namespace CEC CVLCommandHandler(CCECBusDevice *busDevice); virtual ~CVLCommandHandler(void) {}; virtual bool InitHandler(void); + + virtual bool HandleDeviceVendorCommandWithId(const cec_command &command); + virtual bool TransmitActiveSource(const cec_logical_address iInitiator, uint16_t iPhysicalAddress); + virtual bool TransmitPendingActiveSourceCommands(void); + + private: + PLATFORM::CMutex m_mutex; + bool m_bActiveSourcePending; + bool m_bPowerUpEventReceived; }; };