加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ffmpeg_decoder.h 986 Bytes
一键复制 编辑 原始数据 按行查看 历史
jin 提交于 2024-01-11 11:50 . add ffmpeg decode
#ifndef _FFMPEG_DECODER_H_
#define _FFMPEG_DECODER_H_
#include <iostream>
#include <string>
#ifdef __cplusplus
extern "C"
{
#include <libavformat/avformat.h>
#include <libavcodec/avcodec.h>
#include <libavcodec/packet.h>
#include <libavutil/dict.h>
#include <libavutil/frame.h>
#include <libavutil/imgutils.h>
#include <libswscale/swscale.h>
}
#endif // !__cplusplus
class FFmpegDecoder {
public:
FFmpegDecoder();
~FFmpegDecoder();
int ffmpeg_open(const char *url);
int ffmpeg_decode(uint8_t **rgb_data, int *img_width, int *img_heigt);
int ffmpeg_jpeg(const uint8_t *rgb, int width, int heigt, uint8_t *out);
int ffmpeg_jpeg1(const uint8_t *rgb, int width, int heigt, uint8_t **out, int *size);
int ffmpeg_release();
private:
int m_stream_index;
AVFormatContext *fmt_ctx;
AVCodecContext *codec_ctx;
// AVPacket *packet;
// AVFrame *frame;
// AVFrame *frame_rgb;
// SwsContext *sws_ctx;
std::string *murl;
};
#endif // !_FFMPEG_DECODER_H_
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化