h1544216712
2025-02-26 9fe62382fa95d1e2d06b2e42eed49250d4a82a9a
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();
    }
}