123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- /*
- * Copyright (c) 2016 Actions Semi Co., Inc.
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- /**
- * @file
- * @brief audio record.
- */
- #ifndef __AUDIO_RECORD_H__
- #define __AUDIO_RECORD_H__
- #include <audio_system.h>
- #include <audio_policy.h>
- #include <stream.h>
- /**
- * @defgroup audio_record_apis Auido Record APIs
- * @{
- */
- /**
- * @brief Create New Record Instance.
- *
- * This routine Create new record instance.
- *
- * @param stream_type stream type of Record.
- * @param sample_rate_input sample rate of dac
- * @param sample_rate_output output sample rate of audio record
- * @param format capture format 16bit/ 24bit
- * @param audio_mode audio mode of recoder , mono or stereo
- * @param outer_stream recode data output stream
- *
- * @return handle of new recorder
- */
- struct audio_record_t *audio_record_create(uint8_t stream_type, int sample_rate_input, int sample_rate_output,
- uint8_t format, uint8_t audio_mode, void *outer_stream);
- /**
- * @brief Destory a Record Instance.
- *
- * This routine Destory a Record Instance
- *
- * @param handle handle of record
- *
- * @return 0 excute successed , others failed
- */
- int audio_record_destory(struct audio_record_t *handle);
- /**
- * @brief Start Audio Record Capture
- *
- * This routine Start audio record capture, enable adc and dma.
- *
- * @param handle handle of record
- *
- * @return 0 excute successed , others failed
- */
- int audio_record_start(struct audio_record_t *handle);
- /**
- * @brief Stop Audio Record Capture
- *
- * This routine Stop audio record capture, disable adc and stop dma.
- *
- * @param handle handle of record
- *
- * @return 0 excute successed , others failed
- */
- int audio_record_stop(struct audio_record_t *handle);
- /**
- * @brief Pause Audio Record Capture
- *
- * This routine pause audio record capture, drop the caputre date
- *
- * @param handle handle of record
- *
- * @return 0 excute successed , others failed
- */
- int audio_record_pause(struct audio_record_t *handle);
- /**
- * @brief Resume Audio Record Capture
- *
- * This routine Resume audio record capture, out stream continue output capture data
- *
- * @param handle handle of record
- *
- * @return 0 excute successed , others failed
- */
- int audio_record_resume(struct audio_record_t *handle);
- /**
- * @brief Read Data From Audio Record
- *
- * This routine Read Data From Audio Record, user cam also read from out stream
- *
- * @param handle handle of record
- * @param buff buffer pointer of store read out data
- * @param num number of bytes want to read
- *
- * @return len of read datas
- */
- int audio_record_read(struct audio_record_t *handle, uint8_t *buff, int num);
- /**
- * @brief flush Audio Record Capture
- *
- * This routine flush Audio Record Capture, wait capture data read finished.
- *
- * @param handle handle of record
- *
- * @return 0 excute successed , others failed
- */
- int audio_record_flush(struct audio_record_t *handle);
- /**
- * @brief set capture volume
- *
- * This routine set capture volume, adjust capture gain for record.
- *
- * @param handle handle of record
- * @param volume gain level for capture.
- *
- * @return 0 excute successed , others failed
- */
- int audio_record_set_volume(struct audio_record_t *handle, int volume);
- /**
- * @brief get capture volume
- *
- * This routine get capture volume.
- *
- * @param handle handle of record
- *
- * @return value of capture gain
- */
- int audio_record_get_volume(struct audio_record_t *handle);
- /**
- * @brief set capture sample rate
- *
- * This routine set capture sample rate.
- *
- * @param handle handle of record
- * @param sample_rate sample rate for capture.
- *
- * @return 0 excute successed , others failed
- */
- int audio_record_set_samplerate(struct audio_record_t *handle, int sample_rate);
- /**
- * @brief get capture sample rate
- *
- * This routine get capture sample rate.
- *
- * @param handle handle of record
- *
- * @return value of capture sample rate
- */
- int audio_record_get_samplerate(struct audio_record_t *handle);
- /**
- * @brief Get Audio Record Stream
- *
- * This routine Get Audio Record Stream
- *
- * @param handle handle of record
- *
- * @return handle of audio record stream
- */
- io_stream_t audio_record_get_stream(struct audio_record_t *handle);
- /**
- * @} end defgroup audio_record_apis
- */
- #endif
|