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__)
相关推荐
冬奇Lab1 天前
MediaPlayer 播放器架构:NuPlayer 的 Source/Decoder/Renderer 三驾马车
android·音视频开发·源码阅读
炸炸鱼.1 天前
Python 操作 MySQL 数据库
android·数据库·python·adb
用户41659673693551 天前
nextlib 项目架构与深度技术指南 (Architecture & Technical Master Guide)
android
aq55356001 天前
Laravel10.x重磅升级,新特性一览
android·java·开发语言
Trouvaille ~1 天前
【MySQL篇】数据类型:存储数据的基础
android·数据库·mysql·adb·字符集·数据类型·基础入门
2401_885885041 天前
开发视频短信接口好开发吗?图文视频短信接口对接教程
android·音视频
千码君20161 天前
kotlin:Jetpack Compose 给APP添加声音(点击音效/背景音乐)
android·开发语言·kotlin·音效·jetpack compose
Fᴏʀ ʏ꯭ᴏ꯭ᴜ꯭.1 天前
MySQL半同步复制与GTID实战详解
android·mysql·adb
用户41659673693551 天前
深度解码:记一次视频时间戳(PTS)异常导致的播放故障排查
android
大白菜和MySQL1 天前
linux系统环境常用命令
android·linux·adb