You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
603 B
20 lines
603 B
/* Copyright 2020 Google Inc. All Rights Reserved. */
|
|
|
|
package device.google.atv.audio_proxy@5.1;
|
|
|
|
import android.hardware.audio@5.0::IStreamOut;
|
|
import android.hardware.audio@5.0::Result;
|
|
|
|
import IStreamEventListener;
|
|
|
|
/**
|
|
* IStreamOut with extra APIs for audio proxy HAL.
|
|
*/
|
|
interface IAudioProxyStreamOut extends IStreamOut {
|
|
/**
|
|
* Set a listener on this object. It allows the audio proxy client to
|
|
* communicate stream events with audio proxy service.
|
|
* @param listener the listener to receive the event callbacks.
|
|
*/
|
|
setEventListener(IStreamEventListener listener);
|
|
}; |