cec: added bWait parameter to volume change methods.
[deb_libcec.git] / src / lib / LibCECC.cpp
index ec703f2d69ba6c178fb3365f012b8d91977c1195..0193124e84cb07d78b78ceb5b8c0ad49a12d6e9c 100644 (file)
@@ -264,4 +264,32 @@ int cec_is_active_device_type(cec_device_type type)
   return -1;
 }
 
+int cec_set_hdmi_port(uint8_t iPort)
+{
+  if (cec_parser)
+    return cec_parser->SetHDMIPort(iPort) ? 1 : 0;
+  return -1;
+}
+
+int cec_volume_up(int bWait /* = 1 */)
+{
+  if (cec_parser)
+    return cec_parser->VolumeUp(bWait == 1);
+  return -1;
+}
+
+int cec_volume_down(int bWait /* = 1 */)
+{
+  if (cec_parser)
+    return cec_parser->VolumeDown(bWait == 1);
+  return -1;
+}
+
+int cec_mute_audio(int bWait /* = 1 */)
+{
+  if (cec_parser)
+    return cec_parser->MuteAudio(bWait == 1);
+  return -1;
+}
+
 //@}