log unhandled vendor remote keycodes in the log, so they get logged without debugging...
authorLars Op den Kamp <lars@opdenkamp.eu>
Thu, 25 Oct 2012 11:56:43 +0000 (13:56 +0200)
committerLars Op den Kamp <lars@opdenkamp.eu>
Thu, 25 Oct 2012 11:56:43 +0000 (13:56 +0200)
src/lib/implementations/CECCommandHandler.cpp
src/lib/implementations/CECCommandHandler.h

index 2be7f3a7dffeace1768dc2a38b87068d82da5a6e..863b6175de5d757980cf8dfa59e56701fb699e48 100644 (file)
@@ -718,6 +718,12 @@ int CCECCommandHandler::HandleVendorCommand(const cec_command & UNUSED(command))
   return CEC_ABORT_REASON_INVALID_OPERAND;
 }
 
+int CCECCommandHandler::HandleVendorRemoteButtonDown(const cec_command& command)
+{
+  LIB_CEC->AddLog(CEC_LOG_NOTICE, "unhandled vendor remote button received with keycode %x", command.parameters[0]);
+  return COMMAND_HANDLED;
+}
+
 void CCECCommandHandler::UnhandledCommand(const cec_command &command, const cec_abort_reason reason)
 {
   if (m_processor->IsHandledByLibCEC(command.destination))
index ccefb580ea783de77112cddd245ef328b0c8c52d..b09f9b3ecbf3b9b657caa33d283232c9138dff97 100644 (file)
@@ -135,7 +135,7 @@ namespace CEC
     virtual int HandleUserControlPressed(const cec_command &command);
     virtual int HandleUserControlRelease(const cec_command &command);
     virtual int HandleVendorCommand(const cec_command &command);
-    virtual int HandleVendorRemoteButtonDown(const cec_command & UNUSED(command)) { return COMMAND_HANDLED; }
+    virtual int HandleVendorRemoteButtonDown(const cec_command& command);
     virtual int HandleVendorRemoteButtonUp(const cec_command & UNUSED(command)) { return COMMAND_HANDLED; }
     virtual void UnhandledCommand(const cec_command &command, const cec_abort_reason reason);