Tizen Native API
5.5
|
The Audio Input API provides a set of functions to directly manage the system audio input devices.
#include <audio_io.h>
The Audio Input API provides a set of functions to record audio data (PCM format) from audio devices.
This API is related with the following features:
It is recommended to design feature related codes in your application for reliability.
You can check if a device supports the related features for this API by using System Information, thereby controlling the procedure of your application.
To ensure your application is only running on the device with specific features, please define the features in your manifest file using the manifest editor in the SDK.
More details on featuring your application can be found from Feature Element.
Functions | |
int | audio_in_create (int sample_rate, audio_channel_e channel, audio_sample_type_e type, audio_in_h *input) |
Creates an audio device instance and returns an input handle to record PCM (pulse-code modulation) data. | |
int | audio_in_destroy (audio_in_h input) |
Releases the audio input handle and all its resources associated with an audio stream. | |
int | audio_in_set_sound_stream_info (audio_in_h input, sound_stream_info_h stream_info) |
Sets the sound stream information to the audio input. | |
int | audio_in_prepare (audio_in_h input) |
Prepares the audio input for reading audio data by starting buffering of audio data from the device. | |
int | audio_in_unprepare (audio_in_h input) |
Unprepares the audio input. | |
int | audio_in_pause (audio_in_h input) |
Pauses buffering of audio data from the device. | |
int | audio_in_resume (audio_in_h input) |
Resumes buffering audio data from the device. | |
int | audio_in_flush (audio_in_h input) |
Flushes and discards buffered audio data from the input stream. | |
int | audio_in_read (audio_in_h input, void *buffer, unsigned int length) |
Reads audio data from the audio input buffer. | |
int | audio_in_get_buffer_size (audio_in_h input, int *size) |
Gets the size to be allocated for the audio input buffer. | |
int | audio_in_get_sample_rate (audio_in_h input, int *sample_rate) |
Gets the sample rate of the audio input data stream. | |
int | audio_in_get_channel (audio_in_h input, audio_channel_e *channel) |
Gets the channel type of the audio input data stream. | |
int | audio_in_get_sample_type (audio_in_h input, audio_sample_type_e *type) |
Gets the sample audio format of the audio input data stream. | |
int | audio_in_set_stream_cb (audio_in_h input, audio_in_stream_cb callback, void *user_data) |
Sets an asynchronous (event) callback function to handle recording PCM (pulse-code modulation) data. | |
int | audio_in_unset_stream_cb (audio_in_h input) |
Unregisters the callback function. | |
int | audio_in_peek (audio_in_h input, const void **buffer, unsigned int *length) |
Peeks into the 'audio in' buffer. | |
int | audio_in_drop (audio_in_h input) |
Drops the 'audio in' buffer that was peeked into. | |
int | audio_in_set_state_changed_cb (audio_in_h input, audio_in_state_changed_cb callback, void *user_data) |
Sets the state changed callback function to the audio input handle. | |
int | audio_in_unset_state_changed_cb (audio_in_h input) |
Unregisters the state changed callback function of the audio input handle. | |
Typedefs | |
typedef struct audio_io_s * | audio_in_h |
The audio input handle. | |
typedef void(* | audio_in_stream_cb )(audio_in_h handle, size_t nbytes, void *user_data) |
Called when audio input data is available in asynchronous (event) mode. | |
typedef void(* | audio_in_state_changed_cb )(audio_in_h handle, audio_io_state_e previous, audio_io_state_e current, bool by_policy, void *user_data) |
Called when the state of audio input is changed. |
typedef struct audio_io_s* audio_in_h |
The audio input handle.
typedef void(* audio_in_state_changed_cb)(audio_in_h handle, audio_io_state_e previous, audio_io_state_e current, bool by_policy, void *user_data) |
Called when the state of audio input is changed.
[in] | handle | The handle of the audio input |
[in] | previous | The previous state of the audio input |
[in] | current | The current state of the audio input |
[in] | by_policy | true if the state is changed by policy, otherwise false if the state is not changed by policy |
[in] | user_data | The user data passed from the callback registration function |
typedef void(* audio_in_stream_cb)(audio_in_h handle, size_t nbytes, void *user_data) |
Called when audio input data is available in asynchronous (event) mode.
[in] | handle | The handle to the audio input |
[in] | nbytes | The amount of available 'audio in' data which can be peeked. |
[in] | user_data | The user data passed from the callback registration function |
int audio_in_create | ( | int | sample_rate, |
audio_channel_e | channel, | ||
audio_sample_type_e | type, | ||
audio_in_h * | input | ||
) |
Creates an audio device instance and returns an input handle to record PCM (pulse-code modulation) data.
This function is used for audio input initialization.
[in] | sample_rate | The audio sample rate Before 5.0: 8000[Hz] ~ 48000[Hz] Since 5.0: 8000[Hz] ~ 192000[Hz] |
[in] | channel | The audio channel type Before 5.5: Mono or stereo Since 5.5: Mono, stereo or multi-channels |
[in] | type | The type of audio sample Before 5.0: 8 or 16-bit Since 5.0: 8, 16 or 24-bit Since 5.5: 8, 16, 24 or 32-bit |
[out] | input | An audio input handle is created on success |
0
on success, otherwise a negative error value AUDIO_IO_ERROR_NONE | Successful |
AUDIO_IO_ERROR_INVALID_PARAMETER | Invalid parameter |
AUDIO_IO_ERROR_PERMISSION_DENIED | Permission denied |
AUDIO_IO_ERROR_OUT_OF_MEMORY | Out of memory |
AUDIO_IO_ERROR_DEVICE_NOT_OPENED | Device not opened |
AUDIO_IO_ERROR_SOUND_POLICY | Sound policy error |
AUDIO_IO_ERROR_NOT_SUPPORTED | Not supported |
int audio_in_destroy | ( | audio_in_h | input | ) |
Releases the audio input handle and all its resources associated with an audio stream.
[in] | input | The handle to the audio input to destroy |
0
on success, otherwise a negative error value AUDIO_IO_ERROR_NONE | Successful |
AUDIO_IO_ERROR_INVALID_PARAMETER | Invalid parameter |
AUDIO_IO_ERROR_DEVICE_NOT_CLOSED | Device not closed |
AUDIO_IO_ERROR_NOT_SUPPORTED | Not supported |
int audio_in_drop | ( | audio_in_h | input | ) |
Drops the 'audio in' buffer that was peeked into.
This function works correctly only with read callback. Otherwise it won't operate as intended.
[in] | input | The handle to the audio input |
AUDIO_IO_ERROR_NONE | Successful |
AUDIO_IO_ERROR_INVALID_PARAMETER | Invalid parameter |
AUDIO_IO_ERROR_INVALID_OPERATION | Invalid operation |
AUDIO_IO_ERROR_NOT_SUPPORTED | Not supported |
AUDIO_IO_ERROR_INVALID_STATE | Invalid state |
int audio_in_flush | ( | audio_in_h | input | ) |
Flushes and discards buffered audio data from the input stream.
[in] | input | The handle to the audio input |
0
on success, otherwise a negative error value AUDIO_IO_ERROR_NONE | Successful |
AUDIO_IO_ERROR_INVALID_PARAMETER | Invalid parameter |
AUDIO_IO_ERROR_NOT_SUPPORTED | Not supported |
AUDIO_IO_ERROR_INVALID_STATE | Invalid state |
int audio_in_get_buffer_size | ( | audio_in_h | input, |
int * | size | ||
) |
Gets the size to be allocated for the audio input buffer.
[in] | input | The handle to the audio input |
[out] | size | The buffer size (in bytes, the maximum size is 1 MB) |
0
on success, otherwise a negative error value AUDIO_IO_ERROR_NONE | Successful |
AUDIO_IO_ERROR_INVALID_PARAMETER | Invalid parameter |
AUDIO_IO_ERROR_NOT_SUPPORTED | Not supported |
int audio_in_get_channel | ( | audio_in_h | input, |
audio_channel_e * | channel | ||
) |
Gets the channel type of the audio input data stream.
[in] | input | The handle to the audio input |
[out] | channel | The audio channel type Before 5.5: Mono or stereo Since 5.5: Mono, stereo or multi-channels |
0
on success, otherwise a negative error value AUDIO_IO_ERROR_NONE | Successful |
AUDIO_IO_ERROR_INVALID_PARAMETER | Invalid parameter |
AUDIO_IO_ERROR_NOT_SUPPORTED | Not supported |
int audio_in_get_sample_rate | ( | audio_in_h | input, |
int * | sample_rate | ||
) |
Gets the sample rate of the audio input data stream.
[in] | input | The handle to the audio input |
[out] | sample_rate | The audio sample rate Before 5.0: 8000[Hz] ~ 48000[Hz] Since 5.0: 8000[Hz] ~ 192000[Hz] |
0
on success, otherwise a negative error value AUDIO_IO_ERROR_NONE | Successful |
AUDIO_IO_ERROR_INVALID_PARAMETER | Invalid parameter |
AUDIO_IO_ERROR_NOT_SUPPORTED | Not supported |
int audio_in_get_sample_type | ( | audio_in_h | input, |
audio_sample_type_e * | type | ||
) |
Gets the sample audio format of the audio input data stream.
[in] | input | The handle to the audio input |
[out] | type | The type of audio sample Before 5.0: 8 or 16-bit Since 5.0: 8, 16 or 24-bit Since 5.5: 8, 16, 24 or 32-bit |
0
on success, otherwise a negative error value AUDIO_IO_ERROR_NONE | Successful |
AUDIO_IO_ERROR_INVALID_PARAMETER | Invalid parameter |
AUDIO_IO_ERROR_NOT_SUPPORTED | Not supported |
int audio_in_pause | ( | audio_in_h | input | ) |
Pauses buffering of audio data from the device.
[in] | input | The handle to the audio input |
0
on success, otherwise a negative error value AUDIO_IO_ERROR_NONE | Successful |
AUDIO_IO_ERROR_INVALID_PARAMETER | Invalid parameter |
AUDIO_IO_ERROR_NOT_SUPPORTED | Not supported |
AUDIO_IO_ERROR_INVALID_STATE | Invalid state |
int audio_in_peek | ( | audio_in_h | input, |
const void ** | buffer, | ||
unsigned int * | length | ||
) |
Peeks into the 'audio in' buffer.
This function works correctly only with read callback. Otherwise it won't operate as intended.
[in] | input | The handle to the audio input |
[out] | buffer | start buffer pointer of peeked 'audio in' data |
[out] | length | amount of 'audio in' data to be peeked |
0
on success, otherwise a negative error value AUDIO_IO_ERROR_NONE | Successful |
AUDIO_IO_ERROR_INVALID_PARAMETER | Invalid parameter |
AUDIO_IO_ERROR_INVALID_OPERATION | Invalid operation |
AUDIO_IO_ERROR_NOT_SUPPORTED | Not supported |
AUDIO_IO_ERROR_INVALID_STATE | Invalid state |
int audio_in_prepare | ( | audio_in_h | input | ) |
Prepares the audio input for reading audio data by starting buffering of audio data from the device.
[in] | input | The handle to the audio input |
0
on success, otherwise a negative error value AUDIO_IO_ERROR_NONE | Successful |
AUDIO_IO_ERROR_INVALID_PARAMETER | Invalid parameter |
AUDIO_IO_ERROR_NOT_SUPPORTED | Not supported |
AUDIO_IO_ERROR_DEVICE_POLICY_RESTRICTION | Device policy restriction |
AUDIO_IO_ERROR_INVALID_STATE | Invalid state |
int audio_in_read | ( | audio_in_h | input, |
void * | buffer, | ||
unsigned int | length | ||
) |
Reads audio data from the audio input buffer.
[in] | input | The handle to the audio input |
[out] | buffer | The PCM buffer address |
[in] | length | The length of the PCM data buffer (in bytes) |
AUDIO_IO_ERROR_INVALID_PARAMETER | Invalid parameter |
AUDIO_IO_ERROR_INVALID_BUFFER | Invalid buffer pointer |
AUDIO_IO_ERROR_SOUND_POLICY | Sound policy error |
AUDIO_IO_ERROR_INVALID_OPERATION | Invalid operation |
AUDIO_IO_ERROR_NOT_SUPPORTED | Not supported |
int audio_in_resume | ( | audio_in_h | input | ) |
Resumes buffering audio data from the device.
[in] | input | The handle to the audio input |
0
on success, otherwise a negative error value AUDIO_IO_ERROR_NONE | Successful |
AUDIO_IO_ERROR_INVALID_PARAMETER | Invalid parameter |
AUDIO_IO_ERROR_NOT_SUPPORTED | Not supported |
AUDIO_IO_ERROR_INVALID_STATE | Invalid state |
int audio_in_set_sound_stream_info | ( | audio_in_h | input, |
sound_stream_info_h | stream_info | ||
) |
Sets the sound stream information to the audio input.
[in] | input | The handle to the audio input |
[in] | stream_info | The handle of stream information |
0
on success, otherwise a negative error value AUDIO_IO_ERROR_NONE | Successful |
AUDIO_IO_ERROR_INVALID_PARAMETER | Invalid parameter |
AUDIO_IO_ERROR_NOT_SUPPORTED | Not supported |
AUDIO_IO_ERROR_INVALID_STATE | Invalid state |
AUDIO_IO_ERROR_NOT_SUPPORTED_TYPE | Not supported stream type |
int audio_in_set_state_changed_cb | ( | audio_in_h | input, |
audio_in_state_changed_cb | callback, | ||
void * | user_data | ||
) |
Sets the state changed callback function to the audio input handle.
[in] | input | The audio input handle |
[in] | callback | the state changed callback called when the state of the handle is changed (audio_in_state_changed_cb) |
[in] | user_data | user data to be retrieved when callback is called |
0
on success, otherwise a negative error value AUDIO_IO_ERROR_NONE | Successful |
AUDIO_IO_ERROR_INVALID_PARAMETER | Invalid parameter |
AUDIO_IO_ERROR_NOT_SUPPORTED | Not supported |
int audio_in_set_stream_cb | ( | audio_in_h | input, |
audio_in_stream_cb | callback, | ||
void * | user_data | ||
) |
Sets an asynchronous (event) callback function to handle recording PCM (pulse-code modulation) data.
callback will be called when you can read a PCM data. It might cause dead lock if change the state of audio handle in callback. (ex: audio_in_destroy(), audio_in_prepare(), audio_in_unprepare()) Recommend to use as a VOIP only. Recommend not to hold callback too long.(it affects latency)
[in] | input | An audio input handle |
[in] | callback | notify stream callback when user can read data (audio_in_stream_cb) |
[in] | user_data | user data to be retrieved when callback is called |
0
on success, otherwise a negative error value AUDIO_IO_ERROR_NONE | Successful |
AUDIO_IO_ERROR_INVALID_PARAMETER | Invalid parameter |
AUDIO_IO_ERROR_OUT_OF_MEMORY | Out of memory |
AUDIO_IO_ERROR_DEVICE_NOT_OPENED | Device not opened |
AUDIO_IO_ERROR_SOUND_POLICY | Sound policy error |
AUDIO_IO_ERROR_NOT_SUPPORTED | Not supported |
int audio_in_unprepare | ( | audio_in_h | input | ) |
Unprepares the audio input.
[in] | input | The handle to the audio input |
0
on success, otherwise a negative error value AUDIO_IO_ERROR_NONE | Successful |
AUDIO_IO_ERROR_INVALID_PARAMETER | Invalid parameter |
AUDIO_IO_ERROR_NOT_SUPPORTED | Not supported |
AUDIO_IO_ERROR_INVALID_STATE | Invalid state |
int audio_in_unset_state_changed_cb | ( | audio_in_h | input | ) |
Unregisters the state changed callback function of the audio input handle.
[in] | input | The handle to the audio input |
0
on success, otherwise a negative error value AUDIO_IO_ERROR_NONE | Successful |
AUDIO_IO_ERROR_INVALID_PARAMETER | Invalid parameter |
AUDIO_IO_ERROR_NOT_SUPPORTED | Not supported |
int audio_in_unset_stream_cb | ( | audio_in_h | input | ) |
Unregisters the callback function.
[in] | input | The handle to the audio input |
0
on success, otherwise a negative error value AUDIO_IO_ERROR_NONE | Successful |
AUDIO_IO_ERROR_INVALID_PARAMETER | Invalid parameter |
AUDIO_IO_ERROR_INVALID_OPERATION | Invalid operation |
AUDIO_IO_ERROR_NOT_SUPPORTED | Not supported |