2dfa337903
bug: 135708935 Test: Manual Change-Id: Iacaebdac6a8ce08ca47ae272be13d51fbd502959
19 lines
514 B
Text
19 lines
514 B
Text
package android.hardware.tv.tuner@1.0;
|
|
|
|
interface IDemuxCallback {
|
|
/**
|
|
* Notify the client that a new filter event happened.
|
|
*
|
|
* @param filterEvent a demux filter event.
|
|
*/
|
|
oneway onFilterEvent(DemuxFilterEvent filterEvent);
|
|
|
|
/**
|
|
* Notify the client a new status of a demux filter.
|
|
*
|
|
* @param filterId the demux filter ID.
|
|
* @param status a new status of the demux filter.
|
|
*/
|
|
oneway onFilterStatus(DemuxFilterId filterId, DemuxFilterStatus status);
|
|
};
|
|
|