1/* Copyright 2020 Google Inc. All Rights Reserved. */ 2 3package device.google.atv.audio_proxy@5.1; 4 5import android.hardware.audio@5.0::IStreamOut; 6import android.hardware.audio@5.0::Result; 7 8import IStreamEventListener; 9 10/** 11 * IStreamOut with extra APIs for audio proxy HAL. 12 */ 13interface IAudioProxyStreamOut extends IStreamOut { 14 /** 15 * Set a listener on this object. It allows the audio proxy client to 16 * communicate stream events with audio proxy service. 17 * @param listener the listener to receive the event callbacks. 18 */ 19 setEventListener(IStreamEventListener listener); 20};