公告板
版本库
filestore
活动
搜索
登录
admin
/
FaceX_AI_智能守卫
码蚁24-1023班级 AI项目
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
韩123
h1544216712
2025-02-21
c54475f3335a28b7a2acff9a2f9d63a461ce215a
[~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();
}
}