CEC: Add VTS test to enable audio return channel am: a17d5ae5be
Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/1579867 Change-Id: Ib738cfb20c3baf34e0da30de235123f2175a9708
This commit is contained in:
commit
e7a66a40de
1 changed files with 13 additions and 0 deletions
|
@ -137,3 +137,16 @@ TEST_P(HdmiCecTest, SetLanguage) {
|
|||
Return<void> ret = hdmiCec->setLanguage("eng");
|
||||
EXPECT_TRUE(ret.isOk());
|
||||
}
|
||||
|
||||
TEST_P(HdmiCecTest, EnableAudioReturnChannel) {
|
||||
hidl_vec<HdmiPortInfo> ports;
|
||||
Return<void> ret =
|
||||
hdmiCec->getPortInfo([&ports](hidl_vec<HdmiPortInfo> list) { ports = list; });
|
||||
EXPECT_TRUE(ret.isOk());
|
||||
for (size_t i = 0; i < ports.size(); ++i) {
|
||||
if (ports[i].arcSupported) {
|
||||
ret = hdmiCec->enableAudioReturnChannel(ports[i].portId, true);
|
||||
EXPECT_TRUE(ret.isOk());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue