https://github.com/Jhuster/AudioDemo
Android音频开发(6):使用 OpenSL ES API(上)
Android音频开发(7):使用 OpenSL ES API(下)
typedef const struct SLObjectItf_ * const * SLObjectItf;
意思是: 将 const struct SLObjectItf_ * const * 重名名为 SLObjectItf , 其指针地址与指向的内容都是常量,类似如下代码:
int c = 10;
const int *b = &c;
const int * const * aa = &b;