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