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__)
相关推荐
BD_Marathon14 分钟前
Eclipse 代码自动补全设置
android·java·eclipse
w***74401 小时前
SQL Server 数据库迁移到 MySQL 的完整指南
android·数据库·mysql
zgyhc20509 小时前
【Android Audio】dumpsys media.metrics分析
android
nono牛9 小时前
Android Binder 详解与实践指南
android·binder
小镇学者9 小时前
【PHP】PHP WebShell(网页木马)分析
android·开发语言·php
2501_9160074710 小时前
iOS 压力测试的工程化体系,构建高强度、多维度、跨工具协同的真实负载测试流程
android·ios·小程序·uni-app·cocoa·压力测试·iphone
毕设源码-钟学长12 小时前
【开题答辩全过程】以 浮生馆汉服租赁管理系统为例,包含答辩的问题和答案
android·java·tomcat
louisgeek12 小时前
Android NDK 开发中的崩溃排查
android
2501_9159214314 小时前
iOS 开发者工具推荐,构建从调试到性能优化的多维度生产力工具链(2025 深度工程向)
android·ios·性能优化·小程序·uni-app·iphone·webview
Chrison_mu15 小时前
Android项目背景动效-Kotlin
android·开发语言·kotlin