CEC: Implement handleReportArcInitiate method

Bug: 159901363
Test: None

Change-Id: Ibdff6d2c83d945f487312a14b577ace0636d7b02
Merged-In: Ibdff6d2c83d945f487312a14b577ace0636d7b02
This commit is contained in:
Aravind Angadi
2021-02-04 23:46:57 +05:30
committed by Yan Han
parent 5f2492095f
commit 78527ccd26

View File

@@ -557,8 +557,12 @@ public class HdmiCecLocalDeviceAudioSystem extends HdmiCecLocalDeviceSource {
@ServiceThreadOnly
protected boolean handleReportArcInitiate(HdmiCecMessage message) {
assertRunOnServiceThread();
// TODO(amyjojo): implement report arc initiate handler
HdmiLogger.debug(TAG + "Stub handleReportArcInitiate");
/*
* Ideally, we should have got this response before the {@link ArcInitiationActionFromAvr}
* has timed out. Even if the response is late, {@link ArcInitiationActionFromAvr
* #handleInitiateArcTimeout()} would not have disabled ARC. So nothing needs to be done
* here.
*/
return true;
}