加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
zffvideo.h 945 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhouws-chn 提交于 2020-04-02 22:39 . first commit
#ifndef ZFFVIDEO_H
#define ZFFVIDEO_H
#include <QMutex>
#include <QMutexLocker>
#include <QThread>
#include <QList>
extern "C" {
#include <libavcodec/avcodec.h>
#include <libavformat/avformat.h>
#include <libavformat/version.h>
#include <libavdevice/avdevice.h>
#include <libavutil/time.h>
#include <libavutil/mathematics.h>
#include <libswscale/swscale.h>
#include <libswresample/swresample.h>
}
class ZFFvideo : public QThread
{
public:
static ZFFvideo *getInstance();
QList<AVFrame *> RGBList;
int ToRGB(const AVFrame *yuv, char *out, int outwidth, int outheight);
void start(Priority = InheritPriority);
void terminate();
void stop();
private:
ZFFvideo();
static QAtomicPointer<ZFFvideo> _instance;
static QMutex _mutex;
/* Thread */
void run() override;
/* */
float curTimestampSec = 0.0;
bool _canBeRun = false;
};
#endif // ZFFVIDEO_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化