解决faplayer在android4.1上只有图像没有声音的问题

1p_library = InitLibrary(p_this);2if (!p_library) {);4return VLC_EGENERIC;5}

看来是InitLibrary函数出了问题,我们来看看这个函数的内容:

1 void *InitLibrary() { 2void *p_library;, RTLD_NOW); 5if (!p_library) 6return NULL;));));));));));));));));));));));));(!((as_getOutputFrameCount && as_getOutputLatency && as_getOutputSamplingRate) || at_getMinFrameCount)) {21 dlclose(p_library);22return NULL;23 }(!((at_ctor || at_ctor_legacy) && at_dtor && at_initCheck && at_start && at_stop && at_write && at_flush)) {26 dlclose(p_library);27return NULL;28 }29return p_library;30 }

嗯,看来这个函数的内容是从so库中查找相应的函数地址,然后把地址赋值给对应的函数指针,那么类似“_ZN7android11AudioSystem19getOutputFrameCountEPii”这样的字符串就是函数在so库中的签名了。我们看看这个字符串所代表的函数的签名:

typedef int (*AudioSystem_getOutputFrameCount)(int *, int);

为什么这样的函数在so中会有这样奇怪的代号呢?这方面的知识有一篇文章讲的很好:C++的函数重载

了解了这个后我就在猜想:应该是某个或是某几个函数的签名在4.1中发生了改变,导致找不到才出的错,于是我这样修改程序:

1 void *InitLibrary() { 2void *p_library;, RTLD_NOW); 5if (!p_library) 6return NULL;));));));));));));));));));));));));(!((as_getOutputFrameCount && as_getOutputLatency && as_getOutputSamplingRate) || at_getMinFrameCount)) {);22if (!as_getOutputFrameCount) {);24 }25if (!as_getOutputLatency) {);27 }28if (!as_getOutputSamplingRate) {);30 }31if (!at_getMinFrameCount)32 {);34 }35 dlclose(p_library);36return NULL;37 }(!((at_ctor || at_ctor_legacy) && at_dtor && at_initCheck && at_start && at_stop && at_write && at_flush)) {);41 dlclose(p_library);42return NULL;43 }44return p_library;45 }

查看日志后,发现是“error2” 也就是as_getOutputLatency为空,那说明“_ZN7android11AudioSystem16getOutputLatencyEPji”这个签名现在在libmedia.so中找不到了,那么现在这个函数的签名是什么呢?要想弄清楚这个,我们需要弄清楚怎么查看libmedia.so中函数的签名。

在网上查询方法后,在终端上使用readelf -s libmedia.so,结果是一长串符号列表,类似下面的内容:

1 root@ubuntu:/mnt/hgfs/share/4.1.2# readelf -s libmedia.socontains 1918 entries: 4 Num: Value Size Type Bind VisNdx Name NOTYPE LOCAL DEFAULT UND FUNC GLOBAL DEFAULT 7 _ZN7android10AudioTrack16 FUNC GLOBAL DEFAULT UND __aeabi_unwind_cpp_pr0 83: 0003706d2 FUNC GLOBAL DEFAULT 7 _ZTv0_n16_N7android10Audi 94: 0003706d2 FUNC GLOBAL DEFAULT 7 _ZN7android10AudioTrack16105: 0003706f 12 FUNC GLOBAL DEFAULT 7 _ZTv0_n12_N7android10Audi116: 0003707d 68 FUNC GLOBAL DEFAULT 7 _ZN7android10AudioTrack16 FUNC GLOBAL DEFAULT UND pthread_cond_destroy FUNC GLOBAL DEFAULT UND pthread_mutex_destroy FUNC GLOBAL DEFAULT UND _ZN7android6ThreadD2Ev FUNC GLOBAL DEFAULT UND _ZN7android7RefBaseD2Ev1611: 000370c1 12 FUNC GLOBAL DEFAULT 7 _ZTv0_n12_N7android10Audi1712: 000370cd 18 FUNC GLOBAL DEFAULT 7 _ZN7android10AudioTrack16 FUNC GLOBAL DEFAULT UND _ZdlPv FUNC GLOBAL DEFAULT UND pthread_mutex_lock FUNC GLOBAL DEFAULT UND __aeabi_unwind_cpp_pr1 FUNC GLOBAL DEFAULT UND pthread_mutex_unlock FUNC GLOBAL DEFAULT UND __aeabi_idiv FUNC GLOBAL DEFAULT UND __aeabi_uidiv2419: 000370ed 98 FUNC GLOBAL DEFAULT 7 _ZN7android10AudioTrack162520: 0003f015 52 FUNC GLOBAL DEFAULT 7 _ZN7android11AudioSystem22621: 0003efdd 52 FUNC GLOBAL DEFAULT 7 _ZN7android11AudioSystem12722: 0003efa9 52 FUNC GLOBAL DEFAULT 7 _ZN7android11AudioSystem12823: 0003714f 62 FUNC GLOBAL DEFAULT 7 _ZN7android10AudioTrackC2 FUNC GLOBAL DEFAULT UND pthread_mutex_init3025: 0003718d 80 FUNC GLOBAL DEFAULT 7 _ZN7android10AudioTrackC1 FUNC GLOBAL DEFAULT UND _ZN7android7RefBaseC2EvFUNC GLOBAL DEFAULT 7 _ZNK7android10AudioTrack93328: 000371e14 FUNC GLOBAL DEFAULT 7 _ZNK7android10AudioTrack73429: 000371e54 FUNC GLOBAL DEFAULT 7 _ZNK7android10AudioTrack13530: 000371e94 FUNC GLOBAL DEFAULT 7 _ZNK7android10AudioTrack63631: 000371ed6 FUNC GLOBAL DEFAULT 7 _ZNK7android10AudioTrack13732: 000371f36 FUNC GLOBAL DEFAULT 7 _ZNK7android10AudioTrack13833: 000371f9 44 FUNC GLOBAL DEFAULT 7 _ZNK7android10AudioTrack9FUNC GLOBAL DEFAULT 7 _ZN7android10AudioTrack12FUNC GLOBAL DEFAULT 7 _ZNK7android10AudioTrack7FUNC GLOBAL DEFAULT 7 _ZN7android10AudioTrack7f FUNC GLOBAL DEFAULT UND pthread_cond_signalFUNC GLOBAL DEFAULT 7 _ZN7android10AudioTrack5fFUNC GLOBAL DEFAULT 7 _ZN7android10AudioTrack5p4540: 000372cb 22 FUNC GLOBAL DEFAULT 7 _ZN7android10AudioTrack4m4641: 000372e1 12 FUNC GLOBAL DEFAULT 7 _ZNK7android10AudioTrack54742: 000372ed 144 FUNC GLOBAL DEFAULT 7 _ZN7android10AudioTrack9s4843: 0003737d 14 FUNC GLOBAL DEFAULT 7 _ZNK7android10AudioTrack94944: 0003738d 96 FUNC GLOBAL DEFAULT 7 _ZN7android10AudioTrack215045: 000373ed8 FUNC GLOBAL DEFAULT 7 _ZNK7android10AudioTrack25146: 000373f5 74 FUNC GLOBAL DEFAULT 7 _ZN7android10AudioTrack135247: 0003743f 40 FUNC GLOBAL DEFAULT 7 _ZNK7android10AudioTrack1FUNC GLOBAL DEFAULT 7 _ZN7android10AudioTrack9s FUNC GLOBAL DEFAULT UND __android_log_printFUNC GLOBAL DEFAULT 7 _ZN7android10AudioTrack7sFUNC GLOBAL DEFAULT 7 _ZN7android10AudioTrack175752: 0003756b 16 FUNC GLOBAL DEFAULT 7 _ZNK7android10AudioTrack15853: 0003757b 16 FUNC GLOBAL DEFAULT 7 _ZNK7android10AudioTrack25954: 0003758b 94 FUNC GLOBAL DEFAULT 7 _ZN7android10AudioTrack11 FUNC GLOBAL DEFAULT UND android_atomic_or6156: 000375e9 50 FUNC GLOBAL DEFAULT 7 _ZN7android10AudioTrack1162 …

我喜欢出发。凡是到达了的地方,

解决faplayer在android4.1上只有图像没有声音的问题

相关文章:

你感兴趣的文章:

标签云: