Welcome![Sign In][Sign Up]
Location:
Search - android jni c

Search list

[Communication-Mobileandroidjni

Description: android jni调用c c回调java
Platform: | Size: 162716 | Author: dir4678@tom.com | Hits:

[JSP/JavaAndriod_JNI

Description: 在Android平台中用C/C++语言编写Native底层库,以及对应的JNI接口的详细例子-Implement the JNI interface for Google Android system. Introduce the method of building Java Native code.
Platform: | Size: 15360 | Author: Richardson | Hits:

[MiddleWaresamples

Description: 这是一个在android平台上通过中间层jni技术,实现调用C++的代码,主要是makefile文件的实现,如果编译多个C-This is a android platform, through the middle layer jni technology to realize call C++ code, mainly the realization of makefile file, if the build number of CPP
Platform: | Size: 9216 | Author: luoguangxian | Hits:

[Streaming Mpeg4H264Android_code

Description: H264解码器源码,移植ffmpeg中的H264解码部分到Android,深度删减优化,在模拟器(320x480)中验证通过。 程序的采用jni架构。界面部分,文件读取,视频显示都是用java做的,底层的视频解码用C来做满足速度的要求。 在这个版本中,从H264码流中分割出Nal是在java层做的,这样在java层直接调用解码时就知道是否有显示视频,缺点的就是耦合度/封装性差一点。 如果采用在底层做Nal分割的方法,可以封装得好看一些,但是每次送的数据有限制,如果送的数据太多,底层可能会一次解码出好几帧视频,但是通知到界面层只能显示一帧,造成丢帧的现象。 如果每次送的数据较少,就会有很多次底层调用没有进行实质解码,很小气的做法,比如有一压缩数据帧需要600字节,如果一次送100个字节给解码器,那么要送6次才会进行实质解码,因为每个数据帧有大有小,所以只能取极小值才不会导致丢帧。 不过所有的编码解码都是各种因素平衡折中的结果,具体用什么方法具体分析。 注意解码库写死了视频大小240x320,其他视频大小要简单修改一下底层的代码。-H264 decoder source code, porting ffmpeg s H264 decoding to Android, the depth of cut optimization, in the simulator (320x480) in the validation passed.
Platform: | Size: 650240 | Author: caoliang | Hits:

[androidandroidwordsnap

Description: android平台的文字扫描,采用jni调用c++函数库进行处理,目前版本只支持英文。-android platform, scan the text, using jni c++ library call processing, the current version only supports English.
Platform: | Size: 168960 | Author: tansir | Hits:

[androidhello-jni

Description: android 环境下利用ndk开发应用程序的例子,就可以在java下用c的库-this is the example code for android develop, it can help develop applications effectively
Platform: | Size: 26624 | Author: hsd352 | Hits:

[JSP/JavaAndroidPJNI

Description: java通过jni调用C++的电子书,讲的十分详细 -java through jni call C++, e-books, talking about very detailed
Platform: | Size: 12145664 | Author: 张凯 | Hits:

[androidAndroid_JNI

Description: Android JNI开发的详细步骤,照此文档可以让你的Android的Java应用程序调用你的C或C++的接口函数。-Android JNI development of the detailed steps, do the same document can make your Java application calls Android' s your C or C++ interface functions.
Platform: | Size: 19456 | Author: ChenRenJie | Hits:

[androidJNI_android-daquan

Description: 多部经典java JNI教程,含中文教程,网上最全的JNI资料大合集!android开发必备的资料,全面教您掌握JNI,让你在android下用C语言也可轻松开发。好不容易搜集来的资料!-More than the classic java JNI tutorial, including Chinese language tutorials, JNI most complete information on the Internet Big Collection! android development of the necessary information, a comprehensive teach you to master JNI, so you use the C language under the android can be easily developed. To finally collect the information!
Platform: | Size: 792576 | Author: huansuchanzhe | Hits:

[androidjava-JNA

Description: android JNA中文教程,学习JNI,android开发用C必看!!很值得推荐的好教程!-android JNA Chinese tutorial, learning JNI, android development with C must see! ! Recommend a good tutorial is worth!
Platform: | Size: 282624 | Author: huansuchanzhe | Hits:

[androidJNIExample

Description: ANDROID开发中通过jni实现java代码和c/c++代码互通的example,浅显易懂,适合初学者。-ANDROID development achieved through jni java code and c/c++ code in exchange for example, easy to understand for beginners.
Platform: | Size: 142336 | Author: | Hits:

[androidAndroid-C-a-NDK-a-Cygwin

Description: 最近在学习android中如何使用C/C++编程。下载了好多非常好的资料,现在与大家分享。其中包括:Cygwin的下载与环境搭建。NDK,JNI,MK的使用。这份资料还是很全面的。-Recently in learning how to use the android C/C++ programming. Download a lot of very good information to share with you now. These include: Cygwin download and environmental structures. NDK, JNI, MK use. This information is very comprehensive.
Platform: | Size: 8150016 | Author: 王者 | Hits:

[androidH264Android

Description: H264解码器源码,移植ffmpeg中的H264解码部分到Android,深度删减优化,在模拟器(320x480)中验证通过。 程序的采用jni架构。界面部分,文件读取,视频显示都是用java做的,底层的视频解码用C来做满足速度的要求。 在这个版本中,从H264码流中分割出Nal是在java层做的,这样在java层直接调用解码时就知道是否有显示视频,缺点的就是耦合度/封装性差一点。 如果采用在底层做Nal分割的方法,可以封装得好看一些,但是每次送的数据有限制,如果送的数据太多,底层可能会一次解码出好几帧视频,但是通知到界面层只能显示一帧,造成丢帧的现象。 如果每次送的数据较少,就会有很多次底层调用没有进行实质解码,很小气的做法,比如有一压缩数据帧需要600字节,如果一次送100个字节给解码器,那么要送6次才会进行实质解码,因为每个数据帧有大有小,所以只能取极小值才不会导致丢帧。 不过所有的编码解码都是各种因素平衡折中的结果,具体用什么方法具体分析。-H264 decoder source code, porting ffmpeg s H264 decoder part to Android, the depth of cut optimization, in the simulator (320x480) to verify through. Program using jni architecture. Interface portion of the file to read, the video display is made with java, the underlying video decoding in C to do to meet the speed requirements. In this version, the H264 stream from a separate layer of Nal is done in java, so call decoding in java layer directly whether there is to know when to display video, drawback is the coupling/packaging of almost. If used at the bottom do Nal segmentation method can be encapsulated look good, but each time there is limited data to send, if you get too much data, the underlying may be a decoding of several frames of video, but the notice to the interface layer can only display one, resulting in dropped frames phenomenon. If you send less data each time, there will be many times not to call the underlying substance of decoding, a small gas practices, s
Platform: | Size: 230400 | Author: wyc | Hits:

[androidJNI-is-C

Description: android系统的底层学习和使用 进一步加强底层的学习 带有部分的jni程序-jni android
Platform: | Size: 13312 | Author: lingyun | Hits:

[androidandroidjn

Description: Android jni开发,本书详细介绍了Java调用C、C++程序的方法,介绍了如何使用JNI 来完成底层程序往Android 的移植-This book contains how to learn android system and build program call c or c plus code
Platform: | Size: 1426432 | Author: shone | Hits:

[androidNdkSample

Description: 一个ANDROID JNI&NDK开发的完整的例子,包含如下功能: JNI如何调用 C调用JAVA JAVA调用C C调用C++ C++调用JAVA 比较系统介绍JNI/NDK的开发流程-Complete example of an ANDROID JNI & NDK is developed, including the following functions: JNI how to call C to call JAVA Java call C C calling C++ C++ call JAVA A more systematic introduction JNI/NDK is the development process
Platform: | Size: 134144 | Author: iesneaker | Hits:

[MiddleWareandroid-jni

Description: 使用jni操作anroid文件系统中的文件,该文件中包含C的源文件和android源文件-The use the jni operation anroid file system file, which contains the C source files and the android source files
Platform: | Size: 117760 | Author: 谭海龙 | Hits:

[Software EngineeringAndroid-C-a-NDK-a-Cygwin

Description: 学习android jni很好的文档,内容很全很详细-Learning android jni good documentation
Platform: | Size: 8139776 | Author: 李欢 | Hits:

[Otherjni

Description: jni封装串口通讯例子源码,在jni层封装rs232,在android用java调用实现控制 串口发送和接收数据(JNI package serial communication example source code, in the JNI layer package RS232, in android with Java call to achieve control serial port to send and receive data)
Platform: | Size: 10240 | Author: lushaoen | Hits:

[androidMyJniTest

Description: 如何在Android下使用JNI ,Android系统的底层库由c/c++编写(How to use JNI under Android, and the bottom Library of Android system is written by c/c++)
Platform: | Size: 1725440 | Author: Uncle_David | Hits:
« 12 3 »

CodeBus www.codebus.net