公告板
版本库
filestore
活动
搜索
登录
admin
/
FaceX_AI_智能守卫
码蚁24-1023班级 AI项目
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
2025-22-23
wjt123456
2025-02-24
80c6501415105f61b0a55ce9481cb18fe0b75ef2
[~admin/FaceX_AI_智能守卫.git]
/
Client
/
董澎韬
/
code
/
rtspthread.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "rtspthread.h"
RtspThread::RtspThread(QFFmpeg *ffmpeg,QObject *parent) :
QThread(parent), ffmpeg(ffmpeg)
{
}
void RtspThread::run()
{
if (ffmpeg) {
ffmpeg->Play();
}
}