WYY
2025-02-27 aeea0feedc9e25294962be52c5e1dc7e34fdb006
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();
    }
}