audio_stream_in 结构参考文档

audio_stream_in 结构参考

#include < audio.h >

数据字段

struct audio_stream   常见
 
int(*  set_gain )(struct audio_stream_in *stream, float gain)
 
ssize_t(*  read )(struct audio_stream_in *stream, void *buffer, size_t bytes)
 
uint32_t(*  get_input_frames_lost )(struct audio_stream_in *stream)
 
int(*  get_capture_position )(const struct audio_stream_in *stream, int64_t *frames, int64_t *time)
 

详细说明

定义位于文件 audio.h 的 404 行中。

字段文档

struct audio_stream common

音频流的常用方法。此 必须 audio_stream_in 的第一个成员,因为此结构的用户会在已知 audio_stream 引用 audio_stream_in 的上下文中将 audio_stream 转换为 audio_stream_in 指针。

定义位于文件 audio.h 的 410 行。

int(* get_capture_position)(const struct audio_stream_in *stream, int64_t *frames, int64_t *time)

返回最近收到的音频帧数以及与该帧数关联的时钟时间。

frames 是收到的帧总数。此操作应尽可能在捕获流水线的早期执行。一般来说,帧应为非负数,且不应“向后”播放。

time 是测量帧时钟 MONOTONIC 时间。一般来说,时间应为正量,且不应“向后”计算。

如果成功,则返回状态为 0;如果设备未准备就绪/不可用,则返回 -ENOSYS;如果参数为 null 或其他无效,则返回 -EINVAL。

定义位于文件 audio.h 的 第 449 行。

uint32_t(* get_input_frames_lost)(struct audio_stream_in *stream)

返回自上次调用此函数以来音频驱动程序中丢失的输入帧数。音频驱动程序应将值重置为 0,并在通过此函数调用返回当前值后重新开始计数。当用户空间进程被阻塞的时间超过音频驱动程序缓冲区容量时,通常会发生此类丢失。

单位:输入音频帧数

定义位于文件 audio.h 的 第 433 行。

ssize_t(* read)(struct audio_stream_in *stream, void *buffer, size_t bytes)

从音频驱动程序读取音频缓冲区。返回读取的字节数,或负的 status_t。如果在出现错误之前读取了至少一个帧,read 应返回该字节数,然后在后续调用中返回错误。

定义位于文件 audio.h 的 第 420 行。

int(* set_gain)(struct audio_stream_in *stream, float gain)

设置音频驱动程序的输入增益。此方法供日后使用

定义位于文件 audio.h 414 行


此结构体的文档是根据以下文件生成的:
  • hardware/libhardware/include/hardware/ audio.h