新增设置/获取编码器接口

Signed-off-by: liuyuanyuan <liuyuanyuan61@huawei.com>
This commit is contained in:
liuyuanyuan 2023-11-15 15:27:01 +08:00
parent bc3ec799a2
commit a65942710a
2 changed files with 241 additions and 0 deletions

View File

@ -258,6 +258,80 @@ declare namespace a2dp {
* @since 11
*/
disableAbsoluteVolume(deviceId: string, callback: AsyncCallback<void>): void;
/**
* Get codec information.
*
* @permission ohos.permission.ACCESS_BLUETOOTH
* @param { string } deviceId - Indicates device ID. For example, "11:22:33:AA:BB:FF".
* @returns { CodecInfo } Returns the CodecInfo.
* @throws { BusinessError } 201 - Permission denied.
* @throws { BusinessError } 202 - Non-system applications are not allowed to use system APIs.
* @throws { BusinessError } 401 - Invalid parameter.
* @throws { BusinessError } 801 - Capability not supported.
* @throws { BusinessError } 2900001 - Service stopped.
* @throws { BusinessError } 2900003 - Bluetooth switch is off.
* @throws { BusinessError } 2900099 - Operation failed.
* @syscap SystemCapability.Communication.Bluetooth.Core
* @since 11
*/
getCurrentCodecInfo(deviceId: string): CodecInfo;
/**
* Set codec information.
*
* @permission ohos.permission.ACCESS_BLUETOOTH and ohos.permission.MANAGE_BLUETOOTH
* @param { string } deviceId - Indicates device ID. For example, "11:22:33:AA:BB:FF".
* @param { CodecInfo } codecInfo - Indicates the CodecInfo.
* @throws { BusinessError } 201 - Permission denied.
* @throws { BusinessError } 202 - Non-system applications are not allowed to use system APIs.
* @throws { BusinessError } 401 - Invalid parameter.
* @throws { BusinessError } 801 - Capability not supported.
* @throws { BusinessError } 2900001 - Service stopped.
* @throws { BusinessError } 2900003 - Bluetooth switch is off.
* @throws { BusinessError } 2900099 - Operation failed.
* @syscap SystemCapability.Communication.Bluetooth.Core
* @since 11
*/
setCurrentCodecInfo(deviceId: string, codecInfo: CodecInfo): void;
}
/**
* Describes the codec information.
*
* @typedef CodecInfo
* @syscap SystemCapability.Communication.Bluetooth.Core
* @since 11
*/
interface CodecInfo {
/**
* codec type
*
* @syscap SystemCapability.Communication.Bluetooth.Core
* @since 11
*/
codecType: CodecType;
/**
* codec bits per sample.
*
* @syscap SystemCapability.Communication.Bluetooth.Core
* @since 11
*/
codecBitsPerSample: CodecBitsPerSample;
/**
* codec channel mode.
*
* @syscap SystemCapability.Communication.Bluetooth.Core
* @since 11
*/
codecChannelMode: CodecChannelMode;
/**
* codec sample rate.
*
* @syscap SystemCapability.Communication.Bluetooth.Core
* @since 11
*/
codecSampleRate: CodecSampleRate;
}
/**
@ -283,6 +357,172 @@ declare namespace a2dp {
*/
STATE_PLAYING
}
/**
* Describes the codec type.
*
* @enum { number }
* @syscap SystemCapability.Communication.Bluetooth.Core
* @since 11
*/
enum CodecType {
/**
* invalid codec type.
*
* @syscap SystemCapability.Communication.Bluetooth.Core
* @since 11
*/
CODEC_TYPE_INVALID = -1,
/**
* SBC - Sub-band coding.
*
* @syscap SystemCapability.Communication.Bluetooth.Core
* @since 11
*/
CODEC_TYPE_SBC = 0,
/**
* AAC -Advanced Audio Coding.
*
* @syscap SystemCapability.Communication.Bluetooth.Core
* @since 11
*/
CODEC_TYPE_AAC = 1,
/**
* L2HC.
*
* @syscap SystemCapability.Communication.Bluetooth.Core
* @since 11
*/
CODEC_TYPE_L2HC = 2
}
/**
* Describes the codec channel mode.
*
* @enum { number }
* @syscap SystemCapability.Communication.Bluetooth.Core
* @since 11
*/
enum CodecChannelMode {
/**
* Codec channel mode none.
*
* @syscap SystemCapability.Communication.Bluetooth.Core
* @since 11
*/
CODEC_CHANNEL_MODE_NONE = 0,
/**
* Codec channel mode MONO.
*
* @syscap SystemCapability.Communication.Bluetooth.Core
* @since 11
*/
CODEC_CHANNEL_MODE_MONO = 1,
/**
* Codec channel mode STEREO.
*
* @syscap SystemCapability.Communication.Bluetooth.Core
* @since 11
*/
CODEC_CHANNEL_MODE_STEREO = 2
}
/**
* Describes the codec bits per sample.
*
* @enum { number }
* @syscap SystemCapability.Communication.Bluetooth.Core
* @since 11
*/
enum CodecBitsPerSample {
/**
* Codec bits per sample none.
*
* @syscap SystemCapability.Communication.Bluetooth.Core
* @since 11
*/
CODEC_BITS_PER_SAMPLE_NONE = 0,
/**
* Codec 16 bits per sample.
*
* @syscap SystemCapability.Communication.Bluetooth.Core
* @since 11
*/
CODEC_BITS_PER_SAMPLE_16 = 1,
/**
* Codec 24 bits per sample.
*
* @syscap SystemCapability.Communication.Bluetooth.Core
* @since 11
*/
CODEC_BITS_PER_SAMPLE_24 = 2,
/**
* Codec 32 bits per sample.
*
* @syscap SystemCapability.Communication.Bluetooth.Core
* @since 11
*/
CODEC_BITS_PER_SAMPLE_32 = 3
}
/**
* Describes the codec sample rate.
*
* @enum { number }
* @syscap SystemCapability.Communication.Bluetooth.Core
* @since 11
*/
enum CodecSampleRate {
/**
* Codec sample rate none.
*
* @syscap SystemCapability.Communication.Bluetooth.Core
* @since 11
*/
CODEC_SAMPLE_RATE_NONE = 0,
/**
* Codec sample rate 44.1k.
*
* @syscap SystemCapability.Communication.Bluetooth.Core
* @since 11
*/
CODEC_SAMPLE_RATE_44100 = 1,
/**
* Codec sample rate 48k.
*
* @syscap SystemCapability.Communication.Bluetooth.Core
* @since 11
*/
CODEC_SAMPLE_RATE_48000 = 2,
/**
* Codec sample rate 88.2k.
*
* @syscap SystemCapability.Communication.Bluetooth.Core
* @since 11
*/
CODEC_SAMPLE_RATE_88200 = 3,
/**
* Codec sample rate 96k.
*
* @syscap SystemCapability.Communication.Bluetooth.Core
* @since 11
*/
CODEC_SAMPLE_RATE_96000 = 4,
/**
* Codec sample rate 176.4k.
*
* @syscap SystemCapability.Communication.Bluetooth.Core
* @since 11
*/
CODEC_SAMPLE_RATE_176400 = 5,
/**
* Codec sample rate 192k.
*
* @syscap SystemCapability.Communication.Bluetooth.Core
* @since 11
*/
CODEC_SAMPLE_RATE_192000 = 6
}
}
export default a2dp;

View File

@ -628,6 +628,7 @@ sac
sae
sak
satellites
sbc
scdma
scene
sco