1 Star 0 Fork 1

smilerll/ffmpeg_sample-H264_to_cv-Mat

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
H264Decoder.java 450 Bytes
一键复制 编辑 原始数据 按行查看 历史
hiro 提交于 2017-06-30 09:42 . add java
/**
* Created by curi on 17-6-29.
*/
public class H264Decoder {
static{
System.loadLibrary("H264Decoder");
}
private long Decoder;
public H264Decoder(){
Decoder = nativeH264init();
}
public byte[] decode(byte[] frm,int len){
return nativeH264decode(Decoder,frm,len);
}
private native long nativeH264init();
private native byte[] nativeH264decode(long thiz,byte[] frm,int len);
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/smilerll/ffmpeg_sample-H264_to_cv-Mat.git
git@gitee.com:smilerll/ffmpeg_sample-H264_to_cv-Mat.git
smilerll
ffmpeg_sample-H264_to_cv-Mat
ffmpeg_sample-H264_to_cv-Mat
master

搜索帮助