From aff1646df721ea3c1da61e49fb8a4a0b12475a64 Mon Sep 17 00:00:00 2001 From: huang-jianfei200 Date: Wed, 6 Nov 2024 06:28:29 +0000 Subject: [PATCH] Modify version number Signed-off-by: huang-jianfei200 Change-Id: Ie768e1454ba849613e36d11f49b4101d56d6ed77 --- .../audio_manager/native_audio_routing_manager.h | 6 +++--- .../audio_framework/common/native_audio_device_base.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/multimedia/audio_framework/audio_manager/native_audio_routing_manager.h b/multimedia/audio_framework/audio_manager/native_audio_routing_manager.h index b5f363ac7..2ad42bdb4 100644 --- a/multimedia/audio_framework/audio_manager/native_audio_routing_manager.h +++ b/multimedia/audio_framework/audio_manager/native_audio_routing_manager.h @@ -247,7 +247,7 @@ OH_AudioCommon_Result OH_AudioRoutingManager_ReleaseDevices( * {@link OH_AudioRoutingManager_ReleaseDevices} to release the DeviceDescriptor array when it is no use anymore. * @param status The {@link OH_AudioDevice_BlockStatus} is the block status. * @param userData User data which is passed by user. - * @since 13 + * @since 14 */ typedef void (*OH_AudioRoutingManager_OnDeviceBlockStatusCallback)( OH_AudioDeviceDescriptorArray *audioDeviceDescriptorArray, @@ -265,7 +265,7 @@ typedef void (*OH_AudioRoutingManager_OnDeviceBlockStatusCallback)( * {@link AUDIOCOMMON_RESULT_ERROR_INVALID_PARAM}: * 1.The param of audioRoutingManager is nullptr; * 2.The param of supported is nullptr. - * @since 13 + * @since 14 */ OH_AudioCommon_Result OH_AudioRoutingManager_IsMicBlockDetectionSupported( OH_AudioRoutingManager *audioRoutingManager, @@ -286,7 +286,7 @@ OH_AudioCommon_Result OH_AudioRoutingManager_IsMicBlockDetectionSupported( * {@link AUDIOCOMMON_RESULT_ERROR_INVALID_PARAM}: * 1.The param of audioRoutingManager is nullptr; * 2.The param of callback is nullptr. - * @since 13 + * @since 14 */ OH_AudioCommon_Result OH_AudioRoutingManager_SetMicBlockStatusCallback( OH_AudioRoutingManager *audioRoutingManager, diff --git a/multimedia/audio_framework/common/native_audio_device_base.h b/multimedia/audio_framework/common/native_audio_device_base.h index 573e07fed..baceb30a7 100644 --- a/multimedia/audio_framework/common/native_audio_device_base.h +++ b/multimedia/audio_framework/common/native_audio_device_base.h @@ -253,20 +253,20 @@ typedef struct OH_AudioDeviceDescriptorArray { /** * @brief Declaring the audio device blocked status. By default, the audio device is considered as unbloked. * - * @since 13 + * @since 14 */ typedef enum { /** * @brief Audio device is unblocked. * - * @since 13 + * @since 14 */ AUDIO_DEVICE_UNBLOCKED = 0, /** * @brief Audio Device is blocked. * - * @since 13 + * @since 14 */ AUDIO_DEVICE_BLOCKED = 1, } OH_AudioDevice_BlockStatus; -- Gitee