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__)
相关推荐
步行cgn6 小时前
Spring Boot 中的 YAML 完全指南
android·spring boot·firefox
事圆则缓7 小时前
Java 常见数据结构与 Android 使用场景
android·java·数据结构
RisunJan7 小时前
Android 高频面试题与解答
android
MyBili8 小时前
【安卓开发/搞机】快图浏览(QuickPic)技术解析:为何这款3MB应用仍是本地图库的性能天花板?
android·app·安卓·文件管理·相册·看图软件·手机相册
事圆则缓8 小时前
Kotlin 高阶工程化与 Android 深入实践
android·开发语言·kotlin
zhangphil8 小时前
AI大模型生成maxTokens 与上下文context
android·llama
淡淡的香烟8 小时前
Androidiot开发之猫脸识别
android·物联网
2501_915106328 小时前
iOS数据采集技术详解:从性能监控到崩溃分析的全链路实践
android·ios·小程序·https·uni-app·iphone·webview
天空之城--17 小时前
Android Koin 完全指南:从原理到实践
android
zhangphil18 小时前
Android main thread主线程Choreographer doFrame发生FullSuspendCheck
android