lm
2025-02-21 40b7e441c164ff611fe4f55b60d2157e4f0b948a
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();
    }
}