vlcplayer for android 源码编译log打印
这篇文章记录了vlcplayer for android 开源库中libvlc.so中添加log打印的方法。
主要针对libvlc源码中msg_Info/msg_Err/msg_Warn/msg_Dbg 函数打印输出到Android log中。修改如下:
vlc-android/libvlcjni/vlc/include/vlc_message.h中,导入
c
#include <android/log.h>
msg_Info/msg_Err/msg_Warn/msg_Dbg最终都会调用到msg_Generic ,所以只修改msg_Generic ,修改如下,去掉vlc_Log函数
c
#define msg_Generic(o,p, ...) \
__android_log_print(p,vlcmodule_name,__VA_ARGS__)