1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| #ifndef RTSPTHREAD_H
| #define RTSPTHREAD_H
|
|
| #include <QThread>
| #include "qffmpeg.h"
|
| class RtspThread : public QThread
| {
| Q_OBJECT
| public:
| explicit RtspThread(QFFmpeg *ffmpeg,QObject *parent = 0);
|
| protected:
| void run()override;
|
| private:
| QFFmpeg * ffmpeg;
|
| };
|
| #endif // RTSPTHREAD_H
|
|