اعتبارًا من 27 آذار (مارس) 2025، ننصحك باستخدام android-latest-release
بدلاً من aosp-main
لإنشاء AOSP والمساهمة فيه. لمزيد من المعلومات، يُرجى الاطّلاع على التغييرات في AOSP.
تنظيم صفحاتك في مجموعات
يمكنك حفظ المحتوى وتصنيفه حسب إعداداتك المفضّلة.
مرجع بنية audio_hw_device
#include <
audio.h
>
|
struct
hw_device_t
|
شائعة
|
|
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)
|
|
التعريف في السطر
516
من الملف
audio.h
.
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)
|
التحكّم في التوجيه
التعريف في السطر
648
من الملف
audio.h
.
تؤدي هذه الطريقة إلى تفريغ حالة أجهزة الصوت.
التعريف في السطر
624
من الملف
audio.h
.
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.
التعريف في السطر
639
من الملف
audio.h
.
الحصول على قيمة مستوى الصوت الرئيسي الحالي لواجهة HAL، إذا كانت واجهة HAL تتيح التحكّم في مستوى الصوت الرئيسي سيطلب AudioFlinger هذه القيمة من HAL الأساسي للصوت عند بدء الخدمة وسيستخدم القيمة لضبط مستوى الصوت الرئيسي الأولي في جميع واجهات HAL. قد تترك واجهات HAL التي لا تتوافق مع هذه الطريقة القيمة على NULL.
التعريف في السطر
561
من الملف
audio.h
.
char*(* get_parameters)(const struct
audio_hw_device
*dev, const char *keys)
|
يستخدمه Audio Flinger لتعداد الأجهزة المتوافقة مع كل
audio_hw_device
تنفيذ.
القيمة المعروضة هي قناع بتات يتضمّن قيمة واحدة أو أكثر من audio_devices_t
ملاحظة: لا تُنفِّذ عمليات تنفيذ HAL للصوت بدءًا من AUDIO_DEVICE_API_VERSION_2_0 هذه الوظيفة. يجب إدراج جميع الأجهزة المتوافقة في ملف audio_policy.conf، وعلى مدير سياسة الصوت اختيار وحدة الصوت المناسبة استنادًا إلى المعلومات الواردة في هذا الملف.
التعريف في السطر
536
من الملف
audio.h
.
للتحقّق مما إذا تم إعداد واجهة أجهزة الصوت، يتم عرض القيمة 0 في حال النجاح، و-ENODEV في حال تعذُّر ذلك.
التعريف في السطر
542
من الملف
audio.h
.
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)
|
تنشئ هذه الطريقة بث إدخال الأجهزة الصوتية وتفتحه.
التعريف في السطر
611
من الملف
audio.h
.
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 إذا لزم الأمر. يعتمد تنسيق المحتوى على نوع الجهاز:
-
تستخدم أجهزة البلوتوث عنوان MAC للجهاز بالتنسيق "00:11:22:AA:BB:CC".
-
تستخدم أجهزة USB بطاقة ALSA وأرقام الأجهزة في الشكل "card=X;device=Y".
-
قد تستخدم الأجهزة الأخرى رقمًا أو أي سلسلة أخرى.
التعريف في السطر
599
من الملف
audio.h
.
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، سيحاكى أداة خلط البرامج هذه الميزة.
التعريف في السطر
630
من الملف
audio.h
.
ضبط مستوى الصوت لجميع الأنشطة الصوتية بخلاف المكالمات الصوتية يجب أن تتراوح القيمة بين 0.0 و1.0. إذا تم إرجاع أي قيمة غير 0، سيحاكى أداة خلط البرامج هذه الميزة.
التعريف في السطر
552
من الملف
audio.h
.
يتمّ استدعاء set_mode عند تغيير وضع الصوت. يُستخدَم وضع AUDIO_MODE_NORMAL لتشغيل الصوت العادي، ووضع AUDIO_MODE_RINGTONE عند تشغيل نغمة رنين، ووضع AUDIO_MODE_IN_CALL عندما تكون مكالمة جارية.
التعريف في السطر
568
من الملف
audio.h
.
ضبط مستوى صوت مكالمة صوتية النطاق يتراوح بين 0.0 و1.0
التعريف في السطر
545
من الملف
audio.h
.
تم إنشاء مستندات هذه البنية من الملف التالي:
-
hardware/libhardware/include/hardware/
audio.h
يخضع كل من المحتوى وعيّنات التعليمات البرمجية في هذه الصفحة للتراخيص الموضحّة في ترخيص استخدام المحتوى. إنّ Java وOpenJDK هما علامتان تجاريتان مسجَّلتان لشركة Oracle و/أو الشركات التابعة لها.
تاريخ التعديل الأخير: 2025-03-26 (حسب التوقيت العالمي المتفَّق عليه)
[[["يسهُل فهم المحتوى.","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 (حسب التوقيت العالمي المتفَّق عليه)"],[],[]]