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__)
相关推荐
xuyin120422 分钟前
Android内存优化
android
jzlhll12323 分钟前
android kotlinx.serialization用法和封装全解
android
龚子亦30 分钟前
【Unity开发】安卓应用开发中,用户进行权限请求
android·unity·安卓权限
共享家95271 小时前
MySQL-基础查询(下)
android·mysql
查克陈Chuck1 小时前
Launcher3模块化-组件化
android·launcher开发
千里马学框架1 小时前
google官方文档:深入剖析ProtoLog原理及Winscope的查看方式
android·车载系统·framework·perfetto·系统开发·winscope
apihz1 小时前
获取当前北京时间的免费API接口教程
android
apihz1 小时前
货币汇率换算免费API接口(每日更新汇率)
android·java·开发语言
恋猫de小郭2 小时前
八年开源,GSY 用五种技术开发了同一个 Github 客户端,这次轮到 AI + Compose
android·前端·flutter
sc.溯琛10 小时前
MySQL 高级实战:触发器、事务与数据库备份恢复全攻略
android·adb