wjt123456
2025-02-24 80c6501415105f61b0a55ce9481cb18fe0b75ef2
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();
    }
}