1 Star 2 Fork 3

四月是你的谎言/HelloFFmpegPlayRtsp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
videoplay.h 472 Bytes
一键复制 编辑 原始数据 按行查看 历史
#ifndef VIDEOPLAY_H
#define VIDEOPLAY_H
#include <QWidget>
#include <QImage>
class QPaintEvent;
class Decoder;
class VideoPlay : public QWidget
{
Q_OBJECT
public:
explicit VideoPlay(QWidget *parent = nullptr);
~VideoPlay();
bool openUrl(QString url);
protected:
void paintEvent(QPaintEvent *) Q_DECL_OVERRIDE;
signals:
public slots:
void recvFrame(QImage image);
private:
Decoder * m_Decoder;
QImage m_image;
};
#endif // VIDEOPLAY_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/HeLiangMsg/hello-ffmpeg-play-rtsp.git
git@gitee.com:HeLiangMsg/hello-ffmpeg-play-rtsp.git
HeLiangMsg
hello-ffmpeg-play-rtsp
HelloFFmpegPlayRtsp
master

搜索帮助