VideoManager.h 5.43 KB
Newer Older
1 2
/****************************************************************************
 *
Gus Grubba's avatar
Gus Grubba committed
3
 * (c) 2009-2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
4 5 6 7 8 9 10 11 12 13 14 15
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/


#ifndef VideoManager_H
#define VideoManager_H

#include <QObject>
#include <QTimer>
16
#include <QTime>
17
#include <QUrl>
18

19
#include "QGCMAVLink.h"
20 21 22
#include "QGCLoggingCategory.h"
#include "VideoReceiver.h"
#include "QGCToolbox.h"
23
#include "SubtitleWriter.h"
24 25 26

Q_DECLARE_LOGGING_CATEGORY(VideoManagerLog)

27
class VideoSettings;
28
class Vehicle;
29
class Joystick;
30

31 32 33 34 35
class VideoManager : public QGCTool
{
    Q_OBJECT

public:
36
    VideoManager    (QGCApplication* app, QGCToolbox* toolbox);
37
    virtual ~VideoManager   ();
38

39 40 41 42 43 44 45
    Q_PROPERTY(bool             hasVideo                READ    hasVideo                                    NOTIFY hasVideoChanged)
    Q_PROPERTY(bool             isGStreamer             READ    isGStreamer                                 NOTIFY isGStreamerChanged)
    Q_PROPERTY(bool             isTaisync               READ    isTaisync       WRITE   setIsTaisync        NOTIFY isTaisyncChanged)
    Q_PROPERTY(QString          videoSourceID           READ    videoSourceID                               NOTIFY videoSourceIDChanged)
    Q_PROPERTY(bool             uvcEnabled              READ    uvcEnabled                                  CONSTANT)
    Q_PROPERTY(bool             fullScreen              READ    fullScreen      WRITE   setfullScreen       NOTIFY fullScreenChanged)
    Q_PROPERTY(VideoReceiver*   videoReceiver           READ    videoReceiver                               CONSTANT)
46
    Q_PROPERTY(VideoReceiver*   thermalVideoReceiver    READ    thermalVideoReceiver                        CONSTANT)
47
    Q_PROPERTY(double           aspectRatio             READ    aspectRatio                                 NOTIFY aspectRatioChanged)
48 49 50
    Q_PROPERTY(double           thermalAspectRatio      READ    thermalAspectRatio                          NOTIFY aspectRatioChanged)
    Q_PROPERTY(double           hfov                    READ    hfov                                        NOTIFY aspectRatioChanged)
    Q_PROPERTY(double           thermalHfov             READ    thermalHfov                                 NOTIFY aspectRatioChanged)
51
    Q_PROPERTY(bool             autoStreamConfigured    READ    autoStreamConfigured                        NOTIFY autoStreamConfiguredChanged)
52
    Q_PROPERTY(bool             hasThermal              READ    hasThermal                                  NOTIFY aspectRatioChanged)
53

54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
    virtual bool        hasVideo            ();
    virtual bool        isGStreamer         ();
    virtual bool        isTaisync           () { return _isTaisync; }
    virtual bool        fullScreen          () { return _fullScreen; }
    virtual QString     videoSourceID       () { return _videoSourceID; }
    virtual double      aspectRatio         ();
    virtual double      thermalAspectRatio  ();
    virtual double      hfov                ();
    virtual double      thermalHfov         ();
    virtual bool        autoStreamConfigured();
    virtual bool        hasThermal          ();
    virtual void        restartVideo        ();

    virtual VideoReceiver*  videoReceiver           () { return _videoReceiver; }
    virtual VideoReceiver*  thermalVideoReceiver    () { return _thermalVideoReceiver; }
69

70 71 72
    QStringList videoExtensions();
    QStringList videoMuxes();

73
#if defined(QGC_DISABLE_UVC)
74
    virtual bool        uvcEnabled          () { return false; }
75
#else
76
    virtual bool        uvcEnabled          ();
77 78
#endif

79
    virtual void        setfullScreen       (bool f);
80
    virtual void        setIsTaisync        (bool t) { _isTaisync = t;  emit isTaisyncChanged(); }
81

82
    // Override from QGCTool
83
    virtual void        setToolbox          (QGCToolbox *toolbox);
84

85 86
    Q_INVOKABLE void startVideo     ();
    Q_INVOKABLE void stopVideo      ();
Patrick José Pereira's avatar
Patrick José Pereira committed
87

88 89
    void cleanupOldVideos();

90
signals:
91 92 93
    void hasVideoChanged            ();
    void isGStreamerChanged         ();
    void videoSourceIDChanged       ();
94
    void fullScreenChanged          ();
95
    void isAutoStreamChanged        ();
96
    void isTaisyncChanged           ();
97 98
    void aspectRatioChanged         ();
    void autoStreamConfiguredChanged();
99

100
protected slots:
101 102 103
    void _videoSourceChanged        ();
    void _udpPortChanged            ();
    void _rtspUrlChanged            ();
104
    void _tcpUrlChanged             ();
Gus Grubba's avatar
Gus Grubba committed
105
    void _updateUVC                 ();
106
    void _setActiveVehicle          (Vehicle* vehicle);
107
    void _aspectRatioChanged        ();
108
    void _connectionLostChanged     (bool connectionLost);
109

110
protected:
111 112
    friend class FinishVideoInitialization;
#if defined(QGC_GST_STREAMING)
113 114
    static gboolean _videoSinkQuery (GstPad* pad, GstObject* parent, GstQuery* query);
    GstElement*     _makeVideoSink  (gpointer widget);
115 116
#endif
    void _initVideo                 ();
117
    void _updateSettings            ();
118

119
protected:
120
    SubtitleWriter  _subtitleWriter;
121 122 123 124
    bool            _isTaisync              = false;
    VideoReceiver*  _videoReceiver          = nullptr;
    VideoReceiver*  _thermalVideoReceiver   = nullptr;
    VideoSettings*  _videoSettings          = nullptr;
125
    QString         _videoSourceID;
126 127
    bool            _fullScreen             = false;
    Vehicle*        _activeVehicle          = nullptr;
128 129 130
};

#endif