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__)
相关推荐
BoomHe2 天前
Android AOSP13 原生 Launcher3 壁纸获取方式
android
Digitally2 天前
如何将联系人从 Android 转移到 Android
android
李小枫2 天前
webflux接收application/x-www-form-urlencoded参数
android·java·开发语言
爱丽_2 天前
MySQL `EXPLAIN`:看懂执行计划、判断索引是否生效与排错套路
android·数据库·mysql
NPE~2 天前
[App逆向]环境搭建下篇 — — 逆向源码+hook实战
android·javascript·python·教程·逆向·hook·逆向分析
yewq-cn2 天前
AOSP 下载
android
cch89182 天前
Laravel vs ThinkPHP:PHP框架终极对决
android·php·laravel
米码收割机2 天前
【Android】基于安卓app的汽车租赁管理系统(源码+部署方式+论文)[独一无二]
android·汽车
流星雨在线2 天前
安卓使用 Startup 管理三方 SDK 初始化
android·startup
jwn9992 天前
Laravel3.x:PHP框架的经典里程碑
android