From: Lars Op den Kamp Date: Tue, 3 Jan 2012 17:01:12 +0000 (+0100) Subject: cec: don't send deck status updates when sending an active source message by default X-Git-Tag: upstream/2.2.0~1^2~42^2~1 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;ds=sidebyside;h=d79b67d88e372b75312481b672bd0d0bd94f5e09;p=deb_libcec.git cec: don't send deck status updates when sending an active source message by default --- diff --git a/src/lib/implementations/CECCommandHandler.cpp b/src/lib/implementations/CECCommandHandler.cpp index 9f442be..40b4f07 100644 --- a/src/lib/implementations/CECCommandHandler.cpp +++ b/src/lib/implementations/CECCommandHandler.cpp @@ -48,7 +48,7 @@ CCECCommandHandler::CCECCommandHandler(CCECBusDevice *busDevice) : m_bHandlerInited(false), m_iUseCounter(0), m_expectedResponse(CEC_OPCODE_NONE), - m_bOPTSendDeckStatusUpdateOnActiveSource(true), + m_bOPTSendDeckStatusUpdateOnActiveSource(false), m_vendorId(CEC_VENDOR_UNKNOWN) { } diff --git a/src/lib/implementations/VLCommandHandler.cpp b/src/lib/implementations/VLCommandHandler.cpp index 6a6bad2..f0d59db 100644 --- a/src/lib/implementations/VLCommandHandler.cpp +++ b/src/lib/implementations/VLCommandHandler.cpp @@ -40,7 +40,6 @@ CVLCommandHandler::CVLCommandHandler(CCECBusDevice *busDevice) : CCECCommandHandler(busDevice) { m_vendorId = CEC_VENDOR_PANASONIC; - m_bOPTSendDeckStatusUpdateOnActiveSource = false; } bool CVLCommandHandler::InitHandler(void)