Merge "Fix AVR compatibility." am: 9e4df4985a am: babd85e24d

am: 4088527e0c

Change-Id: Ib1088ec8aa9e3afdb05c46681ec8cb7bab74f790
This commit is contained in:
Jay Patel
2019-08-23 03:47:32 -07:00
committed by android-build-merger

View File

@@ -832,7 +832,11 @@ final class HdmiCecLocalDeviceTv extends HdmiCecLocalDevice {
mService.setSystemAudioActivated(on);
mService.announceSystemAudioModeChange(on);
}
startArcAction(on);
if (on && !mArcEstablished) {
startArcAction(true);
} else if (!on) {
startArcAction(false);
}
}
}