X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2Fimplementations%2FANCommandHandler.cpp;h=d3318a18dff928d103c86da4b586f8bc4247dc1c;hb=60383b11a744aae1352f84d1a93aef163b0a17a0;hp=1df94fa061c1a194936737bf1c7310d5a14b04fd;hpb=5477a250b595adb296ed42a88abab002981f4761;p=deb_libcec.git diff --git a/src/lib/implementations/ANCommandHandler.cpp b/src/lib/implementations/ANCommandHandler.cpp index 1df94fa..d3318a1 100644 --- a/src/lib/implementations/ANCommandHandler.cpp +++ b/src/lib/implementations/ANCommandHandler.cpp @@ -1,7 +1,7 @@ /* * This file is part of the libCEC(R) library. * - * libCEC(R) is Copyright (C) 2011 Pulse-Eight Limited. All rights reserved. + * libCEC(R) is Copyright (C) 2011-2012 Pulse-Eight Limited. All rights reserved. * libCEC(R) is an original work, containing original code. * * libCEC(R) is a trademark of Pulse-Eight Limited. @@ -46,7 +46,7 @@ CANCommandHandler::CANCommandHandler(CCECBusDevice *busDevice) : bool CANCommandHandler::HandleVendorRemoteButtonDown(const cec_command &command) { - if (m_processor->IsStarted() && command.parameters.size > 0) + if (m_processor->IsRunning() && command.parameters.size > 0) { cec_keypress key; key.duration = CEC_BUTTON_TIMEOUT; @@ -62,10 +62,7 @@ bool CANCommandHandler::HandleVendorRemoteButtonDown(const cec_command &command) } if (key.keycode != CEC_USER_CONTROL_CODE_UNKNOWN) - { - CLibCEC::AddLog(CEC_LOG_DEBUG, "key pressed: %1x", key.keycode); - m_busDevice->GetProcessor()->AddKey(key); - } + CLibCEC::AddKey(key); } return true;