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)

このストリームの入出力バッファのサイズをバイト単位で返します(例: 4,800 です。フレームサイズの倍数にする必要があります。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 で返します(例: 44,100

ファイル 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() は、入力と出力の両方でキー AUDIO_PARAMETER_STREAM_ROUTING を使用する set_parameters() に対応しています。AUDIO_PARAMETER_STREAM_INPUT_SOURCE は、入力ストリームでのみ使用される追加情報です。

ファイル audio.h 223 行 の定義。

int(* set_format)(struct audio_stream *stream, audio_format_t format)

ファイル audio.h の行 202 の定義。

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

音声ストリーム パラメータを設定/取得します。この関数は、key1=value1;key2=value2;... という形式のパラメータ Key-Value ペアのリストを受け取ります。

一部のキーは標準パラメータ用に予約されています(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