VideoManager.h 5.33 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
#if defined(QGC_DISABLE_UVC)
71
    virtual bool        uvcEnabled          () { return false; }
72
#else
73
    virtual bool        uvcEnabled          ();
74 75
#endif

76
    virtual void        setfullScreen       (bool f);
77
    virtual void        setIsTaisync        (bool t) { _isTaisync = t;  emit isTaisyncChanged(); }
78

79
    // Override from QGCTool
80
    virtual void        setToolbox          (QGCToolbox *toolbox);
81

82 83
    Q_INVOKABLE void startVideo     ();
    Q_INVOKABLE void stopVideo      ();
Patrick José Pereira's avatar
Patrick José Pereira committed
84

85
signals:
86 87 88
    void hasVideoChanged            ();
    void isGStreamerChanged         ();
    void videoSourceIDChanged       ();
89
    void fullScreenChanged          ();
90
    void isAutoStreamChanged        ();
91
    void isTaisyncChanged           ();
92 93
    void aspectRatioChanged         ();
    void autoStreamConfiguredChanged();
94

95
protected slots:
96 97 98
    void _videoSourceChanged        ();
    void _udpPortChanged            ();
    void _rtspUrlChanged            ();
99
    void _tcpUrlChanged             ();
Gus Grubba's avatar
Gus Grubba committed
100
    void _updateUVC                 ();
101
    void _setActiveVehicle          (Vehicle* vehicle);
102
    void _aspectRatioChanged        ();
103
    void _connectionLostChanged     (bool connectionLost);
104

105
protected:
106 107
    friend class FinishVideoInitialization;
#if defined(QGC_GST_STREAMING)
108 109
    static gboolean _videoSinkQuery (GstPad* pad, GstObject* parent, GstQuery* query);
    GstElement*     _makeVideoSink  (gpointer widget);
110 111
#endif
    void _initVideo                 ();
112
    void _updateSettings            ();
113

114
protected:
115
    SubtitleWriter  _subtitleWriter;
116 117 118 119
    bool            _isTaisync              = false;
    VideoReceiver*  _videoReceiver          = nullptr;
    VideoReceiver*  _thermalVideoReceiver   = nullptr;
    VideoSettings*  _videoSettings          = nullptr;
120
    QString         _videoSourceID;
121 122
    bool            _fullScreen             = false;
    Vehicle*        _activeVehicle          = nullptr;
123 124 125
};

#endif