cec: add SetOSDString() to the interface (not supported by all tvs)
[deb_libcec.git] / src / lib / LibCEC.cpp
index 78fca2d1a610c2528bfc7cd34096e0db9ea0fbfb..a1f2650f4198305561ae6943b33c449dce7bc47d 100644 (file)
@@ -193,6 +193,11 @@ bool CLibCEC::SetInactiveView(void)
   return m_cec ? m_cec->SetInactiveView() : false;
 }
 
+bool CLibCEC::SetOSDString(cec_logical_address iLogicalAddress, cec_display_control duration, const char *strMessage)
+{
+  return m_cec ? m_cec->SetOSDString(iLogicalAddress, duration, strMessage) : false;
+}
+
 void CLibCEC::AddLog(cec_log_level level, const string &strMessage)
 {
   if (m_cec)