cec: added VolumeUp()/cec_volume_up(), VolumeDown()/cec_volume_down(), MuteAudio...
[deb_libcec.git] / src / testclient / main.cpp
index 7a60eb2c5a9e9673c899aad00816356459da482c..e293f80b9c9225eca99039eb8e0f211f898615e0 100644 (file)
@@ -594,6 +594,18 @@ int main (int argc, char *argv[])
         {
           parser->PingAdapter();
         }
+        else if (command == "volup")
+        {
+          parser->VolumeUp();
+        }
+        else if (command == "voldown")
+        {
+          parser->VolumeDown();
+        }
+        else if (command == "mute")
+        {
+          parser->MuteAudio();
+        }
         else if (command == "mon")
         {
           CStdString strEnable;