天行健,君子以自强不息!
发布时间:2015-12-21 22:56:20
android-ffmpeg-tutorial01的源码分析1. java的入口函数android APK的Java入口函数位于:app->src->java->roman10.tutorial.android_ffmpeg_tutorial01。在这个文件目录下有两个java程序文件,分别是:MainActivity.javaUtils.java其中,MainActivity.java是Java的入口程序源文件。它的主要函数如下// MainActivi.........【阅读全文】
发布时间:2015-12-21 22:52:03
Ubuntu下为AndroidStudio编译并使用FFmpeg(二)AndroidStudio部分1. 下载并导入项目$ git clone https://github.com/roman10/android-ffmpeg-tutorial.git下载一个别人写好的ffmpeg example例子,然后使用android studio的import project进行导入"android-ffmpeg-tutorial01"Fig-12. 修改各种配置1). 导入工程后,.........【阅读全文】
发布时间:2015-12-21 22:48:06
Ubuntu下为AndroidStudio编译并使用FFmpeg(一)ndk部分1.1 下载ndk,并编译,做示例程序测试1、下载Android NDK自解压包,官方地址:https://developer.android.com/ndk/downloads/index.html#download下载:$ wget -c http://dl.google.com/android/ndk/android-ndk-r10e-linux-x86_64.bin2、解压,将Android NDK.........【阅读全文】
发布时间:2015-12-17 17:00:36
一、传统的获取系统时间的方法传统的C++获取时间的方法需要分平台来定义。相信百度代码也不少。我自己写了下,如下。const std::string getCurrentSystemTime(){ if (PLATFORM_ANDROID || PLATFORM_IOS) { struct timeval s_now; struct tm* p_tm; &nb.........【阅读全文】
发布时间:2015-12-17 14:44:06
在std::shared_ptr被引入之前,C++标准库中实现的用于管理资源的智能指针只有std::auto_ptr一个而已。std::auto_ptr的作用非常有限,因为它存在被管理资源的所有权转移问题。这导致多个std::auto_ptr类型的局部变量不能共享同一个资源,这个问题是非常严重的哦。因为,我个人觉得,智能指针内存管理要解决的根本问题是.........【阅读全文】