mirror of
https://github.com/openharmony/drivers_peripheral.git
synced 2026-08-25 02:23:31 -04:00
e25455e453
Signed-off-by: yanghaizhou <yanghaizhou1@huawei.com>
99 lines
3.2 KiB
C
99 lines
3.2 KiB
C
/*
|
|
* Copyright (c) 2020-2021 Huawei Device Co., Ltd.
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
/**
|
|
* @addtogroup Audio
|
|
* @{
|
|
*
|
|
* @brief Defines audio-related APIs, including custom data types and functions for loading drivers,
|
|
* accessing a driver adapter, and rendering and capturing audios.
|
|
*
|
|
* @since 1.0
|
|
* @version 1.0
|
|
*/
|
|
|
|
/**
|
|
* @file audio_capture.h
|
|
*
|
|
* @brief Declares APIs for audio capturing.
|
|
*
|
|
* @since 1.0
|
|
* @version 1.0
|
|
*/
|
|
|
|
#ifndef AUDIO_CAPTURE_H
|
|
#define AUDIO_CAPTURE_H
|
|
|
|
#include "audio_types.h"
|
|
#include "audio_control.h"
|
|
#include "audio_attribute.h"
|
|
#include "audio_scene.h"
|
|
#include "audio_volume.h"
|
|
|
|
/**
|
|
* @brief Provides capabilities for audio capturing, including controlling the capturing, setting audio attributes,
|
|
* scenes, and volume, and capturing audio frames.
|
|
*
|
|
* @see AudioControl
|
|
* @see AudioAttribute
|
|
* @see AudioScene
|
|
* @see AudioVolume
|
|
* @since 1.0
|
|
* @version 1.0
|
|
*/
|
|
struct AudioCapture {
|
|
/**
|
|
* @brief Defines the audio control. For details, see {@link AudioControl}.
|
|
*/
|
|
struct AudioControl control;
|
|
/**
|
|
* @brief Defines the audio attribute. For details, see {@link AudioAttribute}.
|
|
*/
|
|
struct AudioAttribute attr;
|
|
/**
|
|
* @brief Defines the audio scene. For details, see {@link AudioScene}.
|
|
*/
|
|
struct AudioScene scene;
|
|
/**
|
|
* @brief Defines audio volume. For details, see {@link AudioVolume}.
|
|
*/
|
|
struct AudioVolume volume;
|
|
|
|
/**
|
|
* @brief Reads a frame of input data (uplink data) from the audio driver for capturing.
|
|
*
|
|
* @param capture Indicates the pointer to the <b>AudioCapture</b> object to operate.
|
|
* @param frame Indicates the pointer to the input data to read.
|
|
* @param requestBytes Indicates the size of the input data, in bytes.
|
|
* @param replyBytes Indicates the pointer to the actual length (in bytes) of the audio data to read.
|
|
* @return Returns <b>0</b> if the input data is read successfully; returns a negative value otherwise.
|
|
*/
|
|
int32_t (*CaptureFrame)(struct AudioCapture *capture, void *frame, uint64_t requestBytes, uint64_t *replyBytes);
|
|
|
|
/**
|
|
* @brief Obtains the last number of input audio frames.
|
|
*
|
|
* @param capture Indicates the pointer to the <b>AudioCapture</b> object to operate.
|
|
* @param frames Indicates the pointer to the last number of input audio frames.
|
|
* @param time Indicates the pointer to the timestamp associated with the frame.
|
|
* @return Returns <b>0</b> if the last number is obtained; returns a negative value otherwise.
|
|
* @see CaptureFrame
|
|
*/
|
|
int32_t (*GetCapturePosition)(struct AudioCapture *capture, uint64_t *frames, struct AudioTimeStamp *time);
|
|
};
|
|
|
|
#endif /* AUDIO_CAPTURE_H */
|
|
/** @} */
|