Welcome![Sign In][Sign Up]
Location:
Search - java h264

Search list

[JSP/Javah264

Description: decode the h264 video
Platform: | Size: 717824 | Author: Jackson Lin | Hits:

[Internet-Networkdev_kernel_b4_07-22-2009

Description: dev h264 it is so awesome because u can use it immediately-dev h264 it is so awesome because u can use it immediately
Platform: | Size: 6672384 | Author: yoon | Hits:

[Multimedia programJavaH264Encoder-src_200903

Description: Java桌面应用程序!H264编码解码器!-Java desktop application! H264 codec!
Platform: | Size: 9031680 | Author: tanxiaobao | Hits:

[OtherFilePlayerv4

Description: Programa Hikvion para reproducir videos H264
Platform: | Size: 866304 | Author: cerve | 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:

[androidH264Android

Description: Android 解码h264文件,移植FFMPEG实现编解码。-Android decode h264 files to achieve transplantation FFMPEG codec.
Platform: | Size: 229376 | Author: | Hits:

[JSP/Javah264-encoder-1.0.0

Description: h264 encoder. It can be used to encode YUV420 frames.
Platform: | Size: 84992 | Author: Vadym | 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:

[Streaming Mpeg4H264-OPhone

Description: 流媒体程序开发之:H264解码器移植到OPhone:并写一个测试程序(OPhoneSDK+Java)测试解码库是否正常运行,此方法也可用在android手机上。-Program development of streaming media: H264 decoder ported to OPhone: and write a test program (OPhoneSDK+ Java) test whether the normal operation of the decoder library, this method can also be used in the android phone.
Platform: | Size: 268288 | Author: u1001234 | Hits:

[androidH264_decoding_src_Android0_java

Description: 安卓系统的H264解码程序源代码,java语言。-H264 decoding src for andriod in java。
Platform: | Size: 550912 | Author: chen xu | Hits:

[androidVideo_Camera

Description: 基于android的视频解码H264的实现-The video decoding based on android H264 realization
Platform: | Size: 53248 | Author: B_FIve | Hits:

[androidH264Android_CPP

Description: H264解码器源码,移植ffmpeg中的H264解码部分到Android,深度删减优化,在模拟器(320x480)中验证通过。 程序的采用jni架构。界面部分,文件读取,视频显示都是用java做的,底层的视频解码用C来做满足速度的要求。 在这个版本中,从H264码流中分割出Nal是在java层做的,这样在java层直接调用解码时就知道是否有显示视频,缺点的就是耦合度/封装性差一点。 如果采用在底层做Nal分割的方法,可以封装得好看一些,但是每次送的数据有限制,如果送的数据太多,底层可能会一次解码出好几帧视频,但是通知到界面层只能显示一帧,造成丢帧的现象。 如果每次送的数据较少,就会有很多次底层调用没有进行实质解码,很小气的做法,比如有一压缩数据帧需要600字节,如果一次送100个字节给解码器,那么要送6次才会进行实质解码,因为每个数据帧有大有小,所以只能取极小值才不会导致丢帧。 不过所有的编码解码都是各种因素平衡折中的结果,具体用什么方法具体分析。 如果程序崩溃退出,优先考虑: 1)是否是baseline 2)byte [] NalBuf = new byte[40980] 缓冲区是否溢出。 如果有B帧,那肯定不是baseline。 -H264 Decoder C++ version decode source
Platform: | Size: 134144 | Author: 李军 | Hits:

[androidbutterfly.h264

Description: H264解码器源码,移植ffmpeg中的H264解码部分到Android,深度删减优化,在模拟器(320x480)中验证通过。 程序的采用jni架构。界面部分,文件读取,视频显示都是用java做的,底层的视频解码用C来做满足速度的要求。 在这个版本中,从H264码流中分割出Nal是在java层做的,这样在java层直接调用解码时就知道是否有显示视频,缺点的就是耦合度/封装性差一点。 如果采用在底层做Nal分割的方法,可以封装得好看一些,但是每次送的数据有限制,如果送的数据太多,底层可能会一次解码出好几帧视频,但是通知到界面层只能显示一帧,造成丢帧的现象。 如果每次送的数据较少,就会有很多次底层调用没有进行实质解码,很小气的做法,比如有一压缩数据帧需要600字节,如果一次送100个字节给解码器,那么要送6次才会进行实质解码,因为每个数据帧有大有小,所以只能取极小值才不会导致丢帧。 不过所有的编码解码都是各种因素平衡折中的结果,具体用什么方法具体分析。 如果程序崩溃退出,优先考虑: 1)是否是baseline 2)byte [] NalBuf = new byte[40980] 缓冲区是否溢出。 如果有B帧,那肯定不是baseline。 这个是测试码流-If the program crashes to exit, giving priority to: 1) whether the baseline 2) byte [] NalBuf = new byte [40 980] buffer overflow. If B frames, it certainly is not the baseline. This is a test stream
Platform: | Size: 419840 | Author: 李军 | Hits:

[Streaming Mpeg4libh264-android

Description: android上的h264解码器,可以通过JNI,应用层对h264数据进行解码-h264 decoder for android according to the jni interface to java
Platform: | Size: 680960 | Author: RobSky | Hits:

[JSP/JavaH264Android

Description: 通过jni实现的java调用语言版H264解码库实现的android简易视频播放器-Achieved through jni call java language version of android H264 decoding library implements simple video player
Platform: | Size: 241664 | Author: 梁代久 | Hits:

[JSP/JavaRTSP-H264

Description: JAVA实现RTSP拆包组成H264帧(转)-RTSP bag H264 frame
Platform: | Size: 3072 | Author: huochang | Hits:

[JSP/Javah264

Description: 基于Java的h264编程是现代多媒体协议的主要协议,是播放器的基础。望大家相互学习。-Java-based programming is the main protocol h264 modern multimedia protocol is the player base. Hope we learn from each other.
Platform: | Size: 2048 | Author: myth | Hits:

[JSP/Javajrtmp

Description: 基于java的rtmp视频传输实现,可以实现H264视频的传输。(The implementation of RTMP video transmission based on Java can realize the transmission of H264 video.)
Platform: | Size: 13869056 | Author: snow2fisher | Hits:

[Streaming Mpeg4php-java-AES-128-ECB-master

Description: 防守打法申达股份方法和规范化水果蛋糕热通过公司东方(this s is is lkdinnlj il gflsjflad fsfar)
Platform: | Size: 118784 | Author: FDAFA99J | Hits:

[Streaming Mpeg4ps提取h264源码

Description: java版本,流媒体提前H264源码,同海康威视对接,解析成功
Platform: | Size: 5254 | Author: 307152004@qq.com | Hits:
« 12 »

CodeBus www.codebus.net