Zephyr API Documentation
3.5.0
A Scalable Open Source RTOS
|
|
3.5.0 |
Abstraction for audio codecs. More...
Data Structures | |
union | audio_dai_cfg_t |
Digital Audio Interface Configuration. More... | |
struct | audio_codec_cfg |
Codec configuration parameters. More... | |
union | audio_property_value_t |
Codec property values. More... | |
Functions | |
static int | audio_codec_configure (const struct device *dev, struct audio_codec_cfg *cfg) |
Configure the audio codec. | |
static void | audio_codec_start_output (const struct device *dev) |
Set codec to start output audio playback. | |
static void | audio_codec_stop_output (const struct device *dev) |
Set codec to stop output audio playback. | |
static int | audio_codec_set_property (const struct device *dev, audio_property_t property, audio_channel_t channel, audio_property_value_t val) |
Set a codec property defined by audio_property_t. | |
static int | audio_codec_apply_properties (const struct device *dev) |
Atomically apply any cached properties. | |
Abstraction for audio codecs.
enum audio_channel_t |
#include <zephyr/audio/codec.h>
Audio channel identifiers to use in audio_codec_set_property().
enum audio_dai_type_t |
#include <zephyr/audio/codec.h>
Digital Audio Interface (DAI) type.
Enumerator | |
---|---|
AUDIO_DAI_TYPE_I2S | I2S Interface. |
AUDIO_DAI_TYPE_INVALID | Other interfaces can be added here. |
enum audio_pcm_rate_t |
#include <zephyr/audio/codec.h>
PCM audio sample rates.
enum audio_pcm_width_t |
#include <zephyr/audio/codec.h>
PCM audio sample bit widths.
Enumerator | |
---|---|
AUDIO_PCM_WIDTH_16_BITS | 16-bit sample width |
AUDIO_PCM_WIDTH_20_BITS | 20-bit sample width |
AUDIO_PCM_WIDTH_24_BITS | 24-bit sample width |
AUDIO_PCM_WIDTH_32_BITS | 32-bit sample width |
enum audio_property_t |
#include <zephyr/audio/codec.h>
Codec properties that can be set by audio_codec_set_property().
Enumerator | |
---|---|
AUDIO_PROPERTY_OUTPUT_VOLUME | Output volume. |
AUDIO_PROPERTY_OUTPUT_MUTE | Output mute/unmute. |
|
inlinestatic |
#include <zephyr/audio/codec.h>
Atomically apply any cached properties.
Following one or more invocations of audio_codec_set_property, that may have been cached by the driver, audio_codec_apply_properties can be invoked to apply all the properties as atomic as possible
dev | Pointer to the device structure for codec driver instance. |
|
inlinestatic |
#include <zephyr/audio/codec.h>
Configure the audio codec.
Configure the audio codec device according to the configuration parameters provided as input
dev | Pointer to the device structure for codec driver instance. |
cfg | Pointer to the structure containing the codec configuration. |
|
inlinestatic |
#include <zephyr/audio/codec.h>
Set a codec property defined by audio_property_t.
Set a property such as volume level, clock configuration etc.
dev | Pointer to the device structure for codec driver instance. |
property | The codec property to set |
channel | The audio channel for which the property has to be set |
val | pointer to a property value of type audio_codec_property_value_t |
|
inlinestatic |
#include <zephyr/audio/codec.h>
Set codec to start output audio playback.
Setup the audio codec device to start the audio playback
dev | Pointer to the device structure for codec driver instance. |
|
inlinestatic |
#include <zephyr/audio/codec.h>
Set codec to stop output audio playback.
Setup the audio codec device to stop the audio playback
dev | Pointer to the device structure for codec driver instance. |