h1544216712
2025-02-21 c54475f3335a28b7a2acff9a2f9d63a461ce215a
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();
    }
}