audio_stream 結構體參考資料

audio_stream 結構參考資料

#include < audio.h >

資料欄位

uint32_t(*  get_sample_rate )(const struct audio_stream *stream)
 
int(*  set_sample_rate )(struct audio_stream *stream, uint32_t rate)
 
size_t(*  get_buffer_size )(const struct audio_stream *stream)
 
audio_channel_mask_t(*  get_channels )(const struct audio_stream *stream)
 
audio_format_t(*  get_format )(const struct audio_stream *stream)
 
int(*  set_format )(struct audio_stream *stream, audio_format_t format)
 
int(*  standby )(struct audio_stream *stream)
 
int(*  dump )(const struct audio_stream *stream, int fd)
 
audio_devices_t(*  get_device )(const struct audio_stream *stream)
 
int(*  set_device )(struct audio_stream *stream, audio_devices_t device)
 
int(*  set_parameters )(struct audio_stream *stream, const char *kv_pairs)
 
char *(*  get_parameters )(const struct audio_stream *stream, const char *keys)
 
int(*  add_audio_effect )(const struct audio_stream *stream, effect_handle_t effect)
 
int(*  remove_audio_effect )(const struct audio_stream *stream, effect_handle_t effect)
 

詳細說明

定義位於檔案 audio.h 170 行。

欄位說明文件

int(* add_audio_effect)(const struct audio_stream *stream, effect_handle_t effect)

定義位於檔案 audio.h 246 行。

int(* dump)(const struct audio_stream *stream, int fd)

傾印音訊輸入/輸出裝置的狀態

定義位於檔案 audio.h 212 行。

size_t(* get_buffer_size)(const struct audio_stream *stream)

傳回此串流的輸入/輸出緩衝區大小 (以位元組為單位),例如4800。應為影格大小的倍數。另請參閱 get_input_buffer_size。

定義位於檔案 audio.h 186 行。

audio_channel_mask_t(* get_channels)(const struct audio_stream *stream)

傳回管道遮罩 - 例如 AUDIO_CHANNEL_OUT_STEREO 或 AUDIO_CHANNEL_IN_STEREO

定義位於檔案 audio.h 192 行。

audio_devices_t(* get_device)(const struct audio_stream *stream)

傳回這個串流連結的裝置組合

定義位於檔案 audio.h 215 行。

audio_format_t(* get_format)(const struct audio_stream *stream)

傳回音訊格式,例如 AUDIO_FORMAT_PCM_16_BIT

定義位於檔案 audio.h 197 行。

char*(* get_parameters)(const struct audio_stream *stream, const char *keys)

定義位於檔案 audio.h 244 行。

uint32_t(* get_sample_rate)(const struct audio_stream *stream)

以 Hz 為單位傳回取樣率,例如44100。

定義位於檔案 audio.h 175 行。

int(* remove_audio_effect)(const struct audio_stream *stream, effect_handle_t effect)

定義位於檔案 audio.h 248 行。

int(* set_device)(struct audio_stream *stream, audio_devices_t device)

目前未使用 - set_device() set_parameters() 對應,兩者都使用 AUDIO_PARAMETER_STREAM_ROUTING 鍵,用於輸入和輸出。AUDIO_PARAMETER_STREAM_INPUT_SOURCE 是額外資訊,僅供輸入串流使用。

定義位於檔案 audio.h 223 行。

int(* set_format)(struct 音訊串流 *stream, audio_format_t format)

定義位於檔案 audio.h 202 行。

int(* set_parameters)(struct audio_stream *stream, const char *kv_pairs)

設定/取得音訊串流參數。這個函式會接受參數鍵值組合的清單,格式如下:key1=value1;key2=value2;...

部分鍵保留給標準參數使用 (請參閱 AudioParameter 類別)

如果在輸出內容處於活動狀態時,實作項目不接受參數變更,但在其他情況下可接受參數,則必須傳回 -ENOSYS。

音訊傳送器會將串流置於待命狀態,然後變更參數值。

定義位於檔案 audio.h 238 行。

int(* set_sample_rate)(struct audio_stream *stream, uint32_t rate)

定義位於檔案 audio.h 180 行。

int(* standby)(struct audio_stream *stream)

將音訊硬體輸入/輸出裝置設為待機模式。驅動程式應在下一個 I/O 作業時退出待機模式。成功時傳回 0,失敗時傳回 <0。

定義位於檔案 audio.h 209 行。


這個結構體的說明文件是由下列檔案產生:
  • hardware/libhardware/include/hardware/ audio.h