| 1144 | } |
| 1145 | |
| 1146 | bool CCECCommandHandler::TransmitAudioStatus(const cec_logical_address iInitiator, const cec_logical_address iDestination, uint8_t state, bool bIsReply) |
| 1147 | { |
| 1148 | cec_command command; |
| 1149 | cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_REPORT_AUDIO_STATUS); |
| 1150 | command.parameters.PushBack(state); |
| 1151 | |
| 1152 | return Transmit(command, false, bIsReply); |
| 1153 | } |
| 1154 | |
| 1155 | bool CCECCommandHandler::TransmitSetSystemAudioMode(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_system_audio_status state, bool bIsReply) |
| 1156 | { |
no test coverage detected