Sends a mute keypress to an audiosystem if it's present. The new audio status.
| 470 | /// </summary> |
| 471 | /// <returns>The new audio status.</returns> |
| 472 | uint8_t MuteAudio() |
| 473 | { |
| 474 | if (!m_libCec) { |
| 475 | return 0; |
| 476 | } |
| 477 | return m_libCec->AudioToggleMute(); |
| 478 | } |
| 479 | |
| 480 | /// <summary> |
| 481 | /// Send a keypress to a device on the CEC bus. |
nothing calls this directly
no test coverage detected