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__)
相关推荐
爱笑鱼17 小时前
Binder(八):远端进程死了,BinderProxy 为什么还能收到通知?
android
zhangphil17 小时前
Android ContentProvider/ContentResolver读图片,跨进程 IPC慢
android
龚礼鹏18 小时前
深入解析 Android Automotive (AAOS) 启动流程与 CarService 核心机制(基于 Android 16 最新源码视角)
android
rosmis18 小时前
agent各指标定义
android·java·开发语言
风样滴男人哟19 小时前
PHP特性之反射类ReflectionClass机制
android·开发语言·php
小孔龙20 小时前
RenderNode 与 DisplayList:Android 硬件加速的绘制记录与复用
android·性能优化
qizayaoshuap21 小时前
鸿蒙 ArkTS 实战:搜索列表 城市实时过滤(示例 94)
android·华为·harmonyos
朝星21 小时前
Framework筑基之Handler消息机制5(应用层)
android
2601_9657984721 小时前
ForumLab Review: Fast PHP Script for SEO Forum Sites
android·adb·php
LUCKY-LIVING21 小时前
ELF File in linux
android·java·linux