Merge "bluetooth.audio pass both source and sink metadata"

This commit is contained in:
Treehugger Robot
2022-01-12 00:48:30 +00:00
committed by Gerrit Code Review
2 changed files with 11 additions and 2 deletions

View File

@@ -38,5 +38,6 @@ interface IBluetoothAudioPort {
void startStream();
void stopStream();
void suspendStream();
void updateMetadata(in android.hardware.audio.common.SourceMetadata sourceMetadata);
void updateSourceMetadata(in android.hardware.audio.common.SourceMetadata sourceMetadata);
void updateSinkMetadata(in android.hardware.audio.common.SinkMetadata sinkMetadata);
}

View File

@@ -16,6 +16,7 @@
package android.hardware.bluetooth.audio;
import android.hardware.audio.common.SinkMetadata;
import android.hardware.audio.common.SourceMetadata;
import android.hardware.bluetooth.audio.PresentationPosition;
@@ -69,5 +70,12 @@ interface IBluetoothAudioPort {
* @param sourceMetadata Description of the audio that is played by the
* clients.
*/
void updateMetadata(in SourceMetadata sourceMetadata);
void updateSourceMetadata(in SourceMetadata sourceMetadata);
/**
* Called when the metadata of the stream's sink has been changed.
*
* @param sinkMetadata as passed from Audio Framework
*/
void updateSinkMetadata(in SinkMetadata sinkMetadata);
}