X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2FCECProcessor.h;h=b73b1bbb0995f5c439cf38d90de35e072b9b6cd4;hb=fe173477e4bef75ac6fb90e1ebcc9f65ca48e8f6;hp=98b265e78077070f8dc4ee8ced8067cd5fb9ebea;hpb=8747dd4fbf6aca45c49391ba754f013f28ca3806;p=deb_libcec.git diff --git a/src/lib/CECProcessor.h b/src/lib/CECProcessor.h index 98b265e..b73b1bb 100644 --- a/src/lib/CECProcessor.h +++ b/src/lib/CECProcessor.h @@ -57,6 +57,7 @@ namespace CEC virtual void *Process(void); virtual bool IsMonitoring(void) const { return m_bMonitor; } + virtual CCECBusDevice * GetDeviceByPhysicalAddress(uint16_t iPhysicalAddress) const; virtual cec_version GetDeviceCecVersion(cec_logical_address iAddress); virtual bool GetDeviceMenuLanguage(cec_logical_address iAddress, cec_menu_language *language); virtual const std::string & GetDeviceName(void) { return m_strDeviceName; } @@ -68,9 +69,11 @@ namespace CEC virtual uint16_t GetPhysicalAddress(void) const; virtual bool SetActiveView(void); + virtual bool SetActiveSource(cec_device_type type = CEC_DEVICE_TYPE_RESERVED); virtual bool SetInactiveView(void); virtual bool SetLogicalAddress(cec_logical_address iLogicalAddress); virtual bool SetPhysicalAddress(uint16_t iPhysicalAddress); + virtual bool SetStreamPath(uint16_t iStreamPath); virtual bool SwitchMonitoring(bool bEnable); virtual bool PollDevice(cec_logical_address iAddress); @@ -89,7 +92,7 @@ namespace CEC CCECBusDevice *m_busDevices[16]; private: - bool TryLogicalAddress(cec_logical_address address, const char *strLabel, unsigned int iIndex); + bool TryLogicalAddress(cec_logical_address address, unsigned int iIndex); bool FindLogicalAddressRecordingDevice(unsigned int iIndex); bool FindLogicalAddressTuner(unsigned int iIndex); bool FindLogicalAddressPlaybackDevice(unsigned int iIndex);