自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(16)
  • 资源 (14)
  • 收藏
  • 关注

转载 NDK Suerface AudioTrack

【简介】NDK 的音视频开发中,想调用 AudioTrack或Suerface的类和方法,而它们不属于NDK,而是Android SDK 框架里的部分。解决这个问题有两个方法:1.在源码环境中将利用到AudioTrack或Suerface的项目作为Android SDK 框架的模块进行编译;2.利用NDK的交叉编译工具,并且将Android SDK 源码中对应的头文件和库拷贝出

2012-12-31 19:03:42 873

转载 HOWTO: Debug Memory Leak in Android

在介紹如何 debug 之前,首先必須知道的是,目前的系統到底有沒有記憶體洩漏?以下先介紹幾個常用的記憶體觀察法:cat /proc/meminfo      // 粗略的觀察目前記憶體的種類以及各個種類的大小ps                             // 觀察每個 process 目前記憶體使用的情況 top

2012-12-30 12:20:15 1017

转载 How to Build Android Applications Based on FFmpeg by An Example

This is a follow up post of the previous blog How to Build FFmpeg for Android.  You can read the previous tutorial first, or refer back to it when you feel necessary.This blog covers how to buil

2012-12-26 05:11:10 1276

转载 How to Build FFmpeg for Android

ffmpeg is an open-source platform for recording, converting, playing and streaming video and audio. It includes libavcodec, a popular video/audio codec.Several popular Android applications are bui

2012-12-26 05:05:29 1226

转载 FFMpeg & x264 compile for using with Android NDK on Mac OSX

1. Toolchain for compile (This NDK version is r8)a. Android’s NDK allows we to create toolchain installation using “make-standalone-toolchain.sh” script.b. Execute like below.$> /home/bywyu/andr

2012-12-25 14:18:54 1502

转载 ffmpeg / libx264 build for ANDROID

1) requirement    - NDK r4 : please use NDK r4 instead of NDK r3.    - using NDK r4 new option, you can know the detail build option.    - please get ffmpeg http://www.ffmpeg.org/download.

2012-12-24 23:04:02 1202

转载 H264解码器源码(Android 1.6 版)

H264解码器源码,移植ffmpeg中的H264解码部分到Android,深度删减优化,在模拟器(320x480)中验证通过。程序的采用jni架构。界面部分,文件读取,视频显示都是用java做的,底层的视频解码用C来做满足速度的要求。在这个版本中,从H264码流中分割出Nal是在java层做的,这样在java层直接调用解码时就知道是否有显示视频,缺点的就是耦合度/封装性差一点。

2012-12-24 22:57:09 684

转载 嵌入式Linux下基于FFmpeg的视频硬件编解码[图]

摘要: 对FFmpeg多媒体解决方案中的视频编解码流程进行研究。结合对S3C6410处理器视频硬件编解码方法的分析,阐述了嵌入式Linux下基于FFmpeg的H.264视频硬件编解码在S3C6410处理器上的实现方法,为嵌入式多媒体开发提供参考。引言目前,智能手机、PDA和平板电脑等越来越多的嵌入式设备支持高清视频采集和播放功能,高清视频的采集或播放功能正广泛用于游戏设备、监控设备

2012-12-24 17:35:57 1295 1

转载 Image is not displaying proper using OpenGL in android ndk

I am trying to display an image using OpenGL ES through android NDK.. What I am trying to do is just reading a binary file of RGB data of size 90x72. and trying to display that image on emulator.. B

2012-12-24 00:55:38 789

转载 How to decode audio via FFmpeg in Android

Use audiotrack class to do the work for you. You can do something like this.JAVA side. AudioTrack track; int bufSize = AudioTrack.getMinBufferSize(44100,

2012-12-06 14:21:37 1055

转载 Android仿系统Menu的代码

make following menu_example.xml file<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/lylMenu" android:layout_width="fill_parent" android:layout_

2012-12-04 16:34:52 792

转载 FFMPEG库压缩视频

#ifndef RECORD_H#define RECORD_H#include "avcodec.h"#include "avformat.h"#include class QRecord{public:static int Open(const char *,int,int,int);static int AddFrame(unsigned char*,unsigned

2012-12-02 22:30:45 1828

转载 Converting FFmpeg frame to OpenGL ES texture

I'm trying to convert from a video using FFmpeg to an OpenGL ES texture in ImageTargets.cpp with jni, but what I get is a mess.avpicture_free(&picture);sws_freeContext(img_convert_ctx);avpicture_a

2012-12-02 01:05:50 2734

转载 ffmpeg video to opengl texture

I'm trying to render frames grabbed and converted from a video using ffmpeg to an opengl texture to be put on a quad. I've pretty much exhausted google and not found an answer, well I've found answers

2012-12-02 00:58:04 5494

转载 Android Native Coding in C (OpenGL)

When I read questions like "How to do code sharing between Android and iOS" on stackoverflow.com, and the answers are variations on the theme: "the NDK is not for creating cross platform apps", it m

2012-12-02 00:49:11 1411

转载 OpenGL纹理尺寸限制

最近在Android平台下开发播放器,移植ffmpeg到android平台,在视频显示的时候,由于无法使用硬件特性(Video Overlap),从而使用swscale作resize,但测试发现速度太慢,根本无法实时.后来尝试使用OpenGL来提高显示速度,速度确实很快,但在真机测试时发现使用glTexImage2D创建纹理出错,模拟器没问题,经过测试和查找资料,原来width和height必须是

2012-12-02 00:28:28 6360

Hive编程指南.pdf

Hive编程指南.pdf

2021-01-12

Android NDK 绘图实例

Android NDK 绘图实例,从网上碰到的一个例子,在这里分享下,同时自己做个资源保存

2012-07-25

基于ffmpeg的Android 2.2播放器开源代码

基于ffmpeg的Android 2.2播放器开源代码,android视频播放,基于FFMPEG视频库,从网上看到,在这里分享下。也做个资源收藏

2012-07-24

FFMPEG android实例

别人的一个android FFMPEG 实例,分享一下,顺便自己保存资源

2012-07-24

UNIX环境高级编程第二版 中文版 PDF

学习Unix/Linux系统开发的很好的教材,如果要学Unix/Linux下C语言变成,这本书不得不看

2012-03-06

Linux- 用C语言实现的简单Web服务器源代码

无意间从一个论坛里面看到的,放到这里分享,版权属于作者。 作者姓名:熊第彬;Email:mushan520@gmail.com

2011-08-31

linux环境进程间通信(全)

linux环境进程间通信 貌似原文的作者是: 郑彦兴 (mlinux@163.com)国防科大计算机学院

2011-06-29

Nokia论坛技术资料Symbian解决方案-中文版 CHM文档

Nokia论坛技术资料汇编是由Nokia论坛整理发布的一组全面详尽 的技术文档。内容包盖S40、S60等开发平台,是一部不可多得的 开发宝典。hoolee在学习该文档的同时,将译成中文发表在这里, 希望能对大家的开发或学习有所帮助. ---------------------------- 本人只是在CSDN上分享一下,感谢作者!敬礼!

2010-01-21

Symbian手机应用开发标准教程的实例源代码

Symbian手机应用开发标准教程的实例源代码

2009-12-14

hibernate 3.2 官方中文参考手册(CHM)

hibernate 3.2 官方中文参考手册(CHM)

2009-12-04

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除