2025 年 3 月 27 日より、AOSP のビルドとコントリビューションには aosp-main
ではなく android-latest-release
を使用することをおすすめします。詳細については、AOSP の変更をご覧ください。
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
audio_hw_device 構造体リファレンス
#include <
audio.h
>
|
struct
hw_device_t
|
common
|
|
uint32_t(* |
get_supported_devices
)(const struct
audio_hw_device
*dev)
|
|
int(*
|
init_check
)(const struct
audio_hw_device
*dev)
|
|
int(*
|
set_voice_volume
)(struct
audio_hw_device
*dev, float volume)
|
|
int(*
|
set_master_volume
)(struct
audio_hw_device
*dev, float volume)
|
|
int(*
|
get_master_volume
)(struct
audio_hw_device
*dev, float *volume)
|
|
int(*
|
set_mode
)(struct
audio_hw_device
*dev, audio_mode_t mode)
|
|
int(*
|
set_mic_mute
)(struct
audio_hw_device
*dev, bool state)
|
|
int(*
|
get_mic_mute
)(const struct
audio_hw_device
*dev, bool *state)
|
|
int(*
|
set_parameters
)(struct
audio_hw_device
*dev, const char *kv_pairs)
|
|
char *(*
|
get_parameters
)(const struct
audio_hw_device
*dev, const char *keys)
|
|
size_t(*
|
get_input_buffer_size
)(const struct
audio_hw_device
*dev, const struct audio_config *config)
|
|
int(*
|
open_output_stream
)(struct
audio_hw_device
*dev, audio_io_handle_t handle, audio_devices_t devices, audio_output_flags_t flags, struct audio_config *config, struct
audio_stream_out
**stream_out, const char *address)
|
|
void(*
|
close_output_stream
)(struct
audio_hw_device
*dev, struct
audio_stream_out
*stream_out)
|
|
int(*
|
open_input_stream
)(struct
audio_hw_device
*dev, audio_io_handle_t handle, audio_devices_t devices, struct audio_config *config, struct
audio_stream_in
**stream_in, audio_input_flags_t flags, const char *address, audio_source_t source)
|
|
void(*
|
close_input_stream
)(struct
audio_hw_device
*dev, struct
audio_stream_in
*stream_in)
|
|
int(*
|
dump
)(const struct
audio_hw_device
*dev, int fd)
|
|
int(*
|
set_master_mute
)(struct
audio_hw_device
*dev, bool mute)
|
|
int(*
|
get_master_mute
)(struct
audio_hw_device
*dev, bool *mute)
|
|
int(*
|
create_audio_patch
)(struct
audio_hw_device
*dev, unsigned int num_sources, const struct audio_port_config *sources, unsigned int num_sinks, const struct audio_port_config *sinks, audio_patch_handle_t *handle)
|
|
int(*
|
release_audio_patch
)(struct
audio_hw_device
*dev, audio_patch_handle_t handle)
|
|
int(*
|
get_audio_port
)(struct
audio_hw_device
*dev, struct audio_port *port)
|
|
int(*
|
set_audio_port_config
)(struct
audio_hw_device
*dev, const struct audio_port_config *config)
|
|
ファイル
audio.h
の
516 行
の定義。
int(* create_audio_patch)(struct
audio_hw_device
*dev, unsigned int num_sources, const struct audio_port_config *sources, unsigned int num_sinks, const struct audio_port_config *sinks, audio_patch_handle_t *handle)
|
int(* get_audio_port)(struct
audio_hw_device
*dev, struct audio_port *port)
|
size_t(* get_input_buffer_size)(const struct
audio_hw_device
*dev, const struct audio_config *config)
|
HAL がマスターミュート コントロールをサポートしている場合は、HAL の現在のマスターミュート ステータスを取得します。AudioFlinger は、サービスが開始されたときにプライマリ オーディオ HAL からこの値をクエリし、その値を使用してすべての HAL で初期マスターミュート設定を行います。このメソッドをサポートしていない HAL では、NULL に設定されたままになることがあります。
ファイル
audio.h
の
639 行
の定義。
HAL がマスター音量コントロールをサポートしている場合は、HAL の現在のマスター音量値を取得します。AudioFlinger は、サービスが開始されたときにプライマリ オーディオ HAL からこの値をクエリし、すべての HAL で初期マスター音量を設定するためにこの値を使用します。このメソッドをサポートしていない HAL では、NULL に設定されたままになることがあります。
ファイル
audio.h
の行
561
の定義。
char*(* get_parameters)(const struct
audio_hw_device
*dev, const char *keys)
|
オーディオ フリンジャーが、各
audio_hw_device
実装でサポートされているデバイスを列挙するために使用します。
戻り値は、audio_devices_t の 1 つ以上の値のビットマスクです。
注: AUDIO_DEVICE_API_VERSION_2_0 以降の音声 HAL 実装では、この関数は実装されていません。サポートされているデバイスはすべて audio_policy.conf ファイルにリストされている必要があります。また、オーディオ ポリシー マネージャーは、このファイルの情報に基づいて適切なオーディオ モジュールを選択する必要があります。
ファイル
audio.h
の
536 行
の定義。
オーディオ ハードウェア インターフェースが初期化されているかどうかを確認します。成功した場合は 0、失敗した場合は -ENODEV を返します。
ファイル
audio.h
の
542
行の定義。
int(* open_input_stream)(struct
audio_hw_device
*dev, audio_io_handle_t handle, audio_devices_t devices, struct audio_config *config, struct
audio_stream_in
**stream_in, audio_input_flags_t flags, const char *address, audio_source_t source)
|
このメソッドは、オーディオ ハードウェア入力ストリームを作成して開きます。
ファイル
audio.h
の行
611
の定義。
int(* open_output_stream)(struct
audio_hw_device
*dev, audio_io_handle_t handle, audio_devices_t devices, audio_output_flags_t flags, struct audio_config *config, struct
audio_stream_out
**stream_out, const char *address)
|
このメソッドは、音声ハードウェア出力ストリームを作成して開きます。「address」パラメータは、必要に応じて「devices」オーディオ デバイス タイプを修飾します。形式はデバイスの種類によって異なります。
-
Bluetooth デバイスは、デバイスの MAC アドレス(「00:11:22:AA:BB:CC」の形式)を使用します。
-
USB デバイスは、ALSA カードとデバイス番号を「card=X;device=Y」の形式で使用します。
-
他のデバイスでは、数値や他の文字列が使用される場合があります。
ファイル
audio.h
の
599 行
の定義。
int(* release_audio_patch)(struct
audio_hw_device
*dev, audio_patch_handle_t handle)
|
int(* set_audio_port_config)(struct
audio_hw_device
*dev, const struct audio_port_config *config)
|
すべての音声アクティビティの音声ミュート ステータスを設定します。0 以外の値が返された場合、ソフトウェア ミキサーはこの機能をエミュレートします。
ファイル
audio.h
の
630 行
の定義。
音声通話以外のすべての音声アクティビティの音量を設定します。範囲は 0.0 ~ 1.0 です。0 以外の値が返された場合、ソフトウェア ミキサーはこの機能をエミュレートします。
ファイル
audio.h
の
552
行の定義。
set_mode は、音声モードが変更されたときに呼び出されます。AUDIO_MODE_NORMAL モードは標準のオーディオ再生用、AUDIO_MODE_RINGTONE は着信音の再生中、AUDIO_MODE_IN_CALL は通話中です。
ファイル
audio.h
の行
568
の定義。
音声通話の音量を設定します。範囲は 0.0 ~ 1.0 です
ファイル
audio.h
の
545
行の定義。
この構造体のドキュメントは、次のファイルから生成されました。
-
hardware/libhardware/include/hardware/
audio.h
このページのコンテンツやコードサンプルは、コンテンツ ライセンスに記載のライセンスに従います。Java および OpenJDK は Oracle および関連会社の商標または登録商標です。
最終更新日 2025-03-26 UTC。
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["必要な情報がない","missingTheInformationINeed","thumb-down"],["複雑すぎる / 手順が多すぎる","tooComplicatedTooManySteps","thumb-down"],["最新ではない","outOfDate","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["サンプル / コードに問題がある","samplesCodeIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2025-03-26 UTC。"],[],[]]