ข้อมูลอ้างอิงเกี่ยวกับโครงสร้าง audio_hw_device

ข้อมูลอ้างอิงเกี่ยวกับโครงสร้าง 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)
 

คำอธิบายโดยละเอียด

คําจํากัดความที่บรรทัด 516 ของไฟล์ audio.h .

เอกสารประกอบในสนาม

void(* close_input_stream)(struct audio_hw_device *dev, struct audio_stream_in *stream_in)

คําจํากัดความที่บรรทัด 620 ของไฟล์ audio.h .

void(* close_output_stream)(struct audio_hw_device *dev, struct audio_stream_out *stream_out)

คําจํากัดความที่บรรทัด 607 ของไฟล์ audio.h .

struct hw_device_t common

วิธีการทั่วไปของอุปกรณ์เสียง ข้อมูลนี้ ต้อง เป็นสมาชิกแรกของ audio_hw_device เนื่องจากผู้ใช้โครงสร้างนี้จะแคสต์ hw_device_t เป็น ตัวชี้ audio_hw_device ในบริบทที่ทราบว่า hw_device_t อ้างอิงถึง audio_hw_device

คําจํากัดความที่บรรทัด 522 ของไฟล์ 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 .

int(* dump)(const struct audio_hw_device *dev, int fd)

วิธีนี้จะแสดงสถานะของฮาร์ดแวร์เสียง

คําจํากัดความที่บรรทัด 624 ของไฟล์ audio.h .

int(* get_audio_port)(struct audio_hw_device *dev, struct audio_port *port)

คําจํากัดความที่บรรทัด 665 ของไฟล์ audio.h .

size_t(* get_input_buffer_size)(const struct audio_hw_device *dev, const struct audio_config *config)

คําจํากัดความที่บรรทัด 588 ของไฟล์ audio.h .

int(* get_master_mute)(struct audio_hw_device *dev, bool *mute)

รับสถานะการปิดเสียงหลักปัจจุบันของ HAL หาก HAL รองรับการควบคุมการปิดเสียงหลัก AudioFlinger จะค้นหาค่านี้จาก HAL เสียงหลักเมื่อบริการเริ่มขึ้น และใช้ค่าดังกล่าวเพื่อตั้งค่าการปิดเสียงหลักเริ่มต้นใน HAL ทั้งหมด HAL ที่ไม่รองรับวิธีการนี้อาจตั้งค่าเป็น NULL

คําจํากัดความที่บรรทัด 639 ของไฟล์ audio.h .

int(* get_master_volume)(struct audio_hw_device *dev, float *volume)

รับค่าระดับเสียงหลักปัจจุบันสำหรับ HAL หาก HAL รองรับการควบคุมระดับเสียงหลัก AudioFlinger จะค้นหาค่านี้จาก HAL เสียงหลักเมื่อบริการเริ่มขึ้น และใช้ค่าดังกล่าวเพื่อตั้งค่าระดับเสียงหลักเริ่มต้นใน HAL ทั้งหมด HAL ที่ไม่รองรับวิธีการนี้อาจตั้งค่าเป็น NULL

คําจํากัดความที่บรรทัด 561 ของไฟล์ audio.h .

int(* get_mic_mute)(const struct audio_hw_device *dev, bool *state)

คําจํากัดความที่บรรทัด 572 ของไฟล์ audio.h .

char*(* get_parameters)(const struct audio_hw_device *dev, const char *keys)

คําจํากัดความที่บรรทัด 581 ของไฟล์ audio.h .

uint32_t(* get_supported_devices)(const struct audio_hw_device *dev)

ที่ใช้โดย Flinger เสียงเพื่อแสดงรายการอุปกรณ์ที่รองรับในแต่ละการใช้งาน audio_hw_device

ผลลัพธ์คือบิตมาสก์ของค่า audio_devices_t อย่างน้อย 1 ค่า

หมายเหตุ: การใช้งาน HAL เสียงที่ขึ้นต้นด้วย AUDIO_DEVICE_API_VERSION_2_0 จะไม่ใช้ฟังก์ชันนี้ อุปกรณ์ที่รองรับทั้งหมดควรแสดงอยู่ในไฟล์ audio_policy.conf และผู้จัดการนโยบายเสียงต้องเลือกโมดูลเสียงที่เหมาะสมตามข้อมูลในไฟล์นี้

คําจํากัดความที่บรรทัด 536 ของไฟล์ audio.h .

int(* init_check)(const struct audio_hw_device *dev)

ตรวจสอบว่าอินเทอร์เฟซฮาร์ดแวร์เสียงได้รับการเริ่มต้นแล้วหรือไม่ ผลลัพธ์คือ 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)

คําจํากัดความที่บรรทัด 656 ของไฟล์ audio.h .

int(* set_audio_port_config)(struct audio_hw_device *dev, const struct audio_port_config *config)

คําจํากัดความที่บรรทัด 669 ของไฟล์ audio.h .

int(* set_master_mute)(struct audio_hw_device *dev, bool mute)

ตั้งค่าสถานะการปิดเสียงสำหรับกิจกรรมเสียงทั้งหมด หากระบบแสดงผลค่าอื่นที่ไม่ใช่ 0 มิกเซอร์ซอฟต์แวร์จะจำลองความสามารถนี้

คําจํากัดความที่บรรทัด 630 ของไฟล์ audio.h .

int(* set_master_volume)(struct audio_hw_device *dev, float volume)

ตั้งค่าระดับเสียงสำหรับกิจกรรมเสียงทั้งหมดที่ไม่ใช่การโทรด้วยเสียง ช่วงระหว่าง 0.0 ถึง 1.0 หากระบบแสดงผลค่าอื่นที่ไม่ใช่ 0 มิกเซอร์ซอฟต์แวร์จะจำลองความสามารถนี้

คําจํากัดความที่บรรทัด 552 ของไฟล์ audio.h .

int(* set_mic_mute)(struct audio_hw_device *dev, bool state)

คําจํากัดความที่บรรทัด 571 ของไฟล์ audio.h .

int(* set_mode)(struct audio_hw_device *dev, audio_mode_t mode)

ระบบจะเรียกใช้ set_mode เมื่อโหมดเสียงมีการเปลี่ยนแปลง โหมด AUDIO_MODE_NORMAL มีไว้สําหรับการเล่นเสียงแบบมาตรฐาน, AUDIO_MODE_RINGTONE เมื่อเล่นเสียงเรียกเข้า และ AUDIO_MODE_IN_CALL เมื่อมีการโทรอยู่

คําจํากัดความที่บรรทัด 568 ของไฟล์ audio.h .

int(* set_parameters)(struct audio_hw_device *dev, const char *kv_pairs)

คําจํากัดความที่บรรทัด 575 ของไฟล์ audio.h .

int(* set_voice_volume)(struct audio_hw_device *dev, float volume)

ตั้งค่าระดับเสียงของสายสนทนาด้วยเสียง ช่วงอยู่ระหว่าง 0.0 ถึง 1.0

คําจํากัดความที่บรรทัด 545 ของไฟล์ audio.h .


เอกสารประกอบสำหรับโครงสร้างนี้สร้างขึ้นจากไฟล์ต่อไปนี้
  • hardware/libhardware/include/hardware/ audio.h