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__)
相关推荐
年小个大1 天前
受 go-zero 启发,我给 Flutter 写了一套 CLI 脚手架
android·flutter·架构
Android-Flutter1 天前
为什么说ActivityThread是主线程?
android·kotlin
余额瞒着我当琳1 天前
C++模板初阶与STL初探
android·java·c++
知行合一。。。1 天前
DeepAgents--01--Agent和OpenClaw的相关概念
android·数据库
汪海游龙2 天前
告别 Play Console 手动上传:从模拟器截图到自动发版的完整流水线
android·ci/cd·github
weixin_440784112 天前
【IntentSeivice实现原理】
android·java·开发语言·intentservice
delta_hell2 天前
【阅读源码--Android】动画之ValueAnimator--2
android·源码·valueanimator
delta_hell2 天前
【阅读源码--Android】动画之辅助类
android·源码·animator
delta_hell2 天前
【阅读源码--Android】动画之ValueAnimator--1
android·源码·valueanimator
消失的旧时光-19432 天前
第 2 篇:Android 控制屏为什么与机器人主控使用 TCP 长连接?
android·tcp/ip·机器人