From 0c0e6117b501284dcac517f5918c3ac8f6ac88bb Mon Sep 17 00:00:00 2001 From: AOL Date: Fri, 3 Sep 2021 02:47:55 +0000 Subject: [PATCH] sync standard sdk to rich device sdk Signed-off-by: magekkkk --- api/@ohos.multimedia.audio.d.ts | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/api/@ohos.multimedia.audio.d.ts b/api/@ohos.multimedia.audio.d.ts index f17b2261b2..48152496f8 100644 --- a/api/@ohos.multimedia.audio.d.ts +++ b/api/@ohos.multimedia.audio.d.ts @@ -37,14 +37,14 @@ declare namespace audio { * @sysCap SystemCapability.Multimedia.Audio */ enum AudioVolumeType { - /** - * the media stream - */ - MEDIA = 1, /** * the ringtone stream */ RINGTONE = 2, + /** + * the media stream + */ + MEDIA = 3, } /** @@ -94,23 +94,23 @@ declare namespace audio { /** * speaker */ - SPEAKER = 1, + SPEAKER = 2, /** * wired headset */ - WIRED_HEADSET = 2, + WIRED_HEADSET = 3, /** * bluetooth sco */ - BLUETOOTH_SCO = 3, + BLUETOOTH_SCO = 7, /** * bluetooth a2dp */ - BLUETOOTH_A2DP = 4, + BLUETOOTH_A2DP = 8, /** * mic */ - MIC = 5, + MIC = 15, } /** * the audiomanager of the audio -- Gitee