当前位置:   article > 正文

Android音频框架笔记 - 下篇_audio_module

audio_module

原址

六、HAL层

6-1、Audio HAL层,其实包括了audio.xxx.so 和 audiopolicy.so等。从前述的总框架图,也有写,代码库路径也有写。

具体运行时so对象图,对于audio.xxx.so部分,参考“Android系统Audio框架介绍”最后一张图。如下:


Paste_Image.png
6-2、对audio.primary.so库,对于Audio HAL框架的实现分析

Audio HAL层架构定义: hardware\libhardware\include\hardware\audio.h
厂商实现:以Anroid4.1.1版为例,audio.primary.grouper.so库为例, 代码位置device\asus\grouper\audio\audio_hw.c

//Audio HAL层架构中audio_module 的定义,继承hw_module_t,其实没有任何扩展

  1. struct audio_module {
  2. struct hw_module_t common;
  3. };

// 厂商audio_module 的实现,关键是open函数赋值,其作用是打开该设备,返回audio_hw_device 结构体对象,但在这份实现中,返回是audio_device对象,即audio_hw_device子类

  1. struct audio_module HAL_MODULE_INFO_SYM = {
  2. .common = {
  3. .tag = HARDWARE_MODULE_TAG,
  4. .module_api_version = AUDIO_MODULE_API_VERSION_0_1,
  5. .hal_api_version = HARDWARE_HAL_API_VERSION,
  6. .id = AUDIO_HARDWARE_MODULE_ID,
  7. .name = "Grouper audio HW HAL",
  8. .author = "The Android Open Source Project",
  9. .methods = &hal_module_methods,
  10. },
  11. };
  12. static struct hw_module_methods_t hal_module_methods = {
  13. .open = adev_open, //open函数主要是填充audio_hw_device 结构体对象,返回之
  14. };

//Audio HAL层架构中audio_hw_device的定义,audio_hw_device 继承自hw_device_t。
//可以看到跟上层调用者的接口很一致,其实,它的作用就是为上层提供统一、稳定的接口,从而让底层的频繁变化,可以不影响上层的架构。

  1. struct audio_hw_device {
  2. struct hw_device_t common;
  3. uint32_t (*get_supported_devices)(const struct audio_hw_device *dev);
  4. int (*init_check)(const struct audio_hw_device *dev);
  5. int (*set_voice_volume)(struct audio_hw_device *dev, float volume);
  6. int (*set_master_volume)(struct audio_hw_device *dev, float volume);
  7. int (*get_master_volume)(struct audio_hw_device *dev, float *volume);
  8. int (*set_mode)(struct audio_hw_device *dev, audio_mode_t mode);
  9. int (*set_mic_mute)(struct audio_hw_device *dev, bool state);
  10. int (*get_mic_mute)(const struct audio_hw_device *dev, bool *state);
  11. int (*set_parameters)(struct audio_hw_device *dev, const char *kv_pairs);
  12. char * (*get_parameters)(const struct audio_hw_device *dev,
  13. const char *keys);
  14. size_t (*get_input_buffer_size)(const struct audio_hw_device *dev,
  15. const struct audio_config *config);
  16. int (*open_output_stream)(struct audio_hw_device *dev,
  17. audio_io_handle_t handle,
  18. audio_devices_t devices,
  19. audio_output_flags_t flags,
  20. struct audio_config *config,
  21. struct audio_stream_out **stream_out);
  22. void (*close_output_stream)(struct audio_hw_device *dev,
  23. struct audio_stream_out* stream_out);
  24. int (*open_input_stream)(struct audio_hw_device *dev,
  25. audio_io_handle_t handle,
  26. audio_devices_t devices,
  27. struct audio_config *config,
  28. struct audio_stream_in **stream_in);
  29. void (*close_input_stream)(struct audio_hw_device *dev,
  30. struct audio_stream_in *stream_in);
  31. int (*dump)(const struct audio_hw_device *dev, int fd);
  32. };
  33. typedef struct audio_hw_device audio_hw_device_t;

//厂商中audio_hw_device 的实现,audio_device 继承自audio_hw_device。关键在于stream_out / stream_in 两个类

  1. struct audio_device {
  2. struct audio_hw_device hw_device;
  3. pthread_mutex_t lock; /* see note below on mutex acquisition order */
  4. unsigned int devices;
  5. bool standby;
  6. bool mic_mute;
  7. struct audio_route *ar;
  8. int orientation;
  9. bool screen_off;
  10. struct stream_out *active_out;
  11. struct stream_in *active_in;
  12. };

// 以下作简明阐述
//Audio HAL层架构中,audio_stream_out / audio_stream_in 代表输出/输入流
//这里是实现类,关键是struct pcm *pcm; 它已经就是alsa库里定义的结构体了。它的初始化也正是调用alsa库的open_pcm()函数而来。
// out->pcm = pcm_open(PCM_CARD, device, PCM_OUT | PCM_NORESTART, out->pcm_config);
//所以,意思就是,从这里开始,往下就是调用alsalib库了。

  1. struct stream_out {
  2. struct audio_stream_out stream;
  3. struct pcm *pcm;
  4. ...
  5. };
  6. struct stream_in {
  7. struct audio_stream_in stream;
  8. struct pcm *pcm;
  9. ...
  10. };
audio设备打开流程

audio_policy.conf加载、解析之后的流程,见前面
audio_policy.conf加载、解析之后的流程如下:
厂商的Audio HAL模块加载流程:
AudioFlinger::loadHwModule(const char *name)
-> load_audio_interface()
-> hw_get_module_by_class()
//参考HAL框架加载知识,这里加载到相应.so的xxx_hw_module_t 结构体
-> audio_hw_device_open() --> xxx_hw_module_t.open() ,在参数里返回audio_hw_device_t结构体

至此,已经加载了HAL模块.so库,并打开相应设备,返回我们要的audio_hw_device_t结构体
多少个.so,见audio_policy.conf加载上半部,
audio_hw_device_t: 音频设备的抽象类。多少个audio_hw_device_t结构体? 有多少个so,就有多少个。 一一对应关系。
audio_stream_out : 音频设备的输入输出通道的抽象类。这个才是对应pcmc0d0p之类的具体通道,right?
至于这些结构体的定义与功能,见HAL相关小节。

输出通道打开流程:
  • 输出通道打开流程(上)
    如AudioRecord.cpp开始:
    AudioRecord.cpp
    ->set()
    -> AudioSystem.getInput()
    -> 各种辗转
    ->AudioFlinger->openInput()

如AudioTrack.cpp开始:
AudioTrack.set()
-> AudioSystem::getOutput
-> 各种辗转
->AudioFlinger->openOutput()

  • 输出通道打开流程(下)
    无论上层的打开流程如何辗转反侧,最终都调用到具体执行者AudioFlinger。由此开始分析如下:
    AudioFlinger如何打开输出通道呢? 具体是如何调用到alsalib库,甚至驱动的呢? 接着走。
    AudioFlinger->openOutput()
    -> findSuitableHwDev_l ()
    //寻找输出设备,返回audio_hw_device_t
    -> audio_hw_device_t-> open_output_stream(..., struct audio_stream_out **stream_out))
    //HAL层,Audio架构标准接口
    -> new audio_stream_out
    //HAL层,厂商实现类,如device\asus\grouper\audio\audio_hw.c
    -> audio_stream_out.pcm = pcm_open()
    // pcm_open() 已经是调用到tinyalsa库了,也就操作到了/dev/snd/pcmcxdxx设备节点了。
    //所以看到调用层级AudioFlinger -> Audio HAL -> tinyalsa -> ALSA driver -> 硬件。此即所谓软件层级。

  • 参考
    “ANDROID音频系统散记之四:4.0音频系统HAL初探”

七、 TinyAlsa库

直接看其Android.mk你就明白了:
libtinyalsa.so:
给Audio HAL层代码调用的库,即几个audio.xxx.so会调用到libtinyalsa.so里的函数。
从框架全图也可以看到。
其它:tinyalsa工具程序,可用于测试、调试

流程图
初始化, 见书

八、调试

tinyalas调试

命令: tinyplay / tinycap /tinypcminfo (用法直接看usage)
命令源码位置:/external/tinyalsa
声卡驱动信息:cat /proc/asound/cards
tinyalsa声卡设备:ls /dev/snd

九、接入第三方视频解码库

mark而已,属于视频部分。

十、参考

ALSA官方文档
http://www.alsa-project.org/~tiwai/writing-an-alsa-driver/index.html
《深入理解Android内核设计思想》-2014
[深入理解Android卷一全文-第七章] 深入理解Audio系统
http://blog.csdn.net/innost/article/details/47208109

有不少这个模块的文章,不过是2012年左右,ALSA架构时代,其中值得参考的两篇已存
http://blog.csdn.net/njuitjf/article/category/837094/1

一些没看,暂时的资料:
http://blog.chinaunix.net/xmlrpc.php?r=blog/article&uid=27570663&id=4432842

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/319053
推荐阅读
相关标签
  

闽ICP备14008679号