1 Star 0 Fork 1

smilerll/ffmpeg_sample-H264_to_cv-Mat

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
sample.cpp 557 Bytes
一键复制 编辑 原始数据 按行查看 历史
hiro 提交于 2017-07-03 18:28 . add some H264 frame and a sample
#include "H264Decoder.h"
#include <fstream>
unsigned char buf[700000];//should be max enough
int main() {
H264Decoder decoder;
for (int j = 1; j < 197; j++) {
std::ifstream fin("/home/curi/hiro/ibotn/server/ws_streaming_server_java/264rawFrame/outputFrame"
+ std::to_string(j), std::ios_base::binary);
fin.seekg(0, std::ios::end);
int len = fin.tellg();
fin.seekg(0, std::ios::beg);
fin.read((char *) buf, len);
decoder.decode(buf, len);
decoder.play();
}
}
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

搜索帮助