Merge "Mark 'session' field in audio HAL AIDL as unused."

This commit is contained in:
Treehugger Robot
2022-08-19 18:45:38 +00:00
committed by Gerrit Code Review
2 changed files with 7 additions and 3 deletions

View File

@@ -23,8 +23,9 @@ import android.media.audio.common.AudioProfile;
import android.media.audio.common.ExtraAudioDescriptor;
/**
* Audio port structure describes the capabilities of an audio port
* as well as its current configuration.
* Audio port structure describes the capabilities of an audio port.
* This is a "blueprint" which contains all the possible configurations
* that are supported by the port.
*
* {@hide}
*/

View File

@@ -34,6 +34,9 @@ union AudioPortExt {
AudioPortDeviceExt device;
/** Information specific to mix ports. */
AudioPortMixExt mix;
/** Audio session identifier. */
/**
* NOT USED. Framework audio session identifier.
* Use android.media.AudioPortExtSys.session on the system side.
*/
int session;
}