vlcplayer for android 源码编译log打印

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__)
相关推荐
hjlgs5 小时前
framework修改快速验证
android
游戏开发爱好者85 小时前
iOS 开发者的安全加固工具,从源码到成品 IPA 的多层防护体系实践
android·安全·ios·小程序·uni-app·cocoa·iphone
安卓理事人6 小时前
安卓内存泄露排查LeakCanary
android
秃了也弱了。7 小时前
MySQL空间函数详解,MySQL记录经纬度并进行计算
android·数据库·mysql
.豆鲨包8 小时前
【Android】Binder机制浅析
android·binder
Nerve9 小时前
GooglePay: API 文档
android·google
Nerve10 小时前
GooglePay: 订阅商品购买流程
android·google
summerkissyou198710 小时前
Audio-触摸音-播放流程
android
Nerve10 小时前
GooglePay: 消耗商品购买流程
android·google
LiteHeaven10 小时前
Android 8.1 Unable to create application data 问题分析
android