我需要在同一个ios项目中的MobileVLCKit播放器和live555 streamer。
我成功地构建了库,并合并到同一个iOS项目中。但是VLC播放器在live555.cpp的代码下面崩溃了
error: Execution was interrupted, reason: EXC_BAD_ACCESS (code=1, address=0xbadd9b286bcebea0). The process has been returned to the state before expression evaluation.
在live555.cpp p_sys->rtsp->sendOptionsCommand( &continueAfterOPTIONS, &authenticator );文件中的源代码
MobileVLCKit MobileVLCKit/ImportedSources/vlc/modules/access/live555.cpp中live555.cpp文件路径
请帮帮我。我在这里从过去的2-3天的结构。
发布于 2015-11-04 17:58:32
MobileVLCKit还包括liblive555,因此假设您是静态链接,由于符号冲突,只有一个可以获胜。考虑改为动态链接MobileVLCKit,或者确保每个二进制文件只包含一次liblive555。
https://stackoverflow.com/questions/33501678
复制相似问题