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

#
#-- Depends on gstreamer, which can be found at: http://gstreamer.freedesktop.org/download/
#

LinuxBuild {
15
    QT += x11extras waylandclient
Gus Grubba's avatar
Gus Grubba committed
16 17
    CONFIG += link_pkgconfig
    packagesExist(gstreamer-1.0) {
18
        PKGCONFIG   += gstreamer-1.0  gstreamer-video-1.0 gstreamer-gl-1.0
Gus Grubba's avatar
Gus Grubba committed
19 20 21 22 23 24 25 26 27 28
        CONFIG      += VideoEnabled
    }
} else:MacBuild {
    #- gstreamer framework installed by the gstreamer devel installer
    GST_ROOT = /Library/Frameworks/GStreamer.framework
    exists($$GST_ROOT) {
        CONFIG      += VideoEnabled
        INCLUDEPATH += $$GST_ROOT/Headers
        LIBS        += -F/Library/Frameworks -framework GStreamer
    }
dogmaphobic's avatar
dogmaphobic committed
29 30 31 32 33 34
} else:iOSBuild {
    #- gstreamer framework installed by the gstreamer iOS SDK installer (default to home directory)
    GST_ROOT = $$(HOME)/Library/Developer/GStreamer/iPhone.sdk/GStreamer.framework
    exists($$GST_ROOT) {
        CONFIG      += VideoEnabled
        INCLUDEPATH += $$GST_ROOT/Headers
35
        LIBS        += -F$$(HOME)/Library/Developer/GStreamer/iPhone.sdk -framework GStreamer -liconv -lresolv
dogmaphobic's avatar
dogmaphobic committed
36
    }
37 38
} else:WindowsBuild {
    #- gstreamer installed by default under c:/gstreamer
DonLakeFlyer's avatar
DonLakeFlyer committed
39
    GST_ROOT = c:/gstreamer/1.0/x86_64
Gus Grubba's avatar
Gus Grubba committed
40 41
    exists($$GST_ROOT) {
        CONFIG      += VideoEnabled
Don Gagne's avatar
Don Gagne committed
42

43
        LIBS        += -L$$GST_ROOT/lib -lgstreamer-1.0 -lgstgl-1.0 -lgstvideo-1.0 -lgstbase-1.0
Don Gagne's avatar
Don Gagne committed
44 45
        LIBS        += -lglib-2.0 -lintl -lgobject-2.0

Gus Grubba's avatar
Gus Grubba committed
46
        INCLUDEPATH += \
47
            $$GST_ROOT/include \
Gus Grubba's avatar
Gus Grubba committed
48 49
            $$GST_ROOT/include/gstreamer-1.0 \
            $$GST_ROOT/include/glib-2.0 \
50
            $$GST_ROOT/lib/gstreamer-1.0/include \
Don Gagne's avatar
Don Gagne committed
51 52
            $$GST_ROOT/lib/glib-2.0/include

Don Gagne's avatar
Don Gagne committed
53
        DESTDIR_WIN = $$replace(DESTDIR, "/", "\\")
Don Gagne's avatar
Don Gagne committed
54 55 56 57 58 59 60
        GST_ROOT_WIN = $$replace(GST_ROOT, "/", "\\")

        # Copy main GStreamer runtime files
        QMAKE_POST_LINK += $$escape_expand(\\n) xcopy \"$$GST_ROOT_WIN\\bin\*.dll\" \"$$DESTDIR_WIN\" /S/Y $$escape_expand(\\n)
        QMAKE_POST_LINK += xcopy \"$$GST_ROOT_WIN\\bin\*.\" \"$$DESTDIR_WIN\" /S/Y $$escape_expand(\\n)

        # Copy GStreamer plugins
Don Gagne's avatar
Don Gagne committed
61 62
        QMAKE_POST_LINK += $$escape_expand(\\n) xcopy \"$$GST_ROOT_WIN\\lib\\gstreamer-1.0\\*.dll\" \"$$DESTDIR_WIN\\gstreamer-plugins\\\" /Y $$escape_expand(\\n)
        QMAKE_POST_LINK += $$escape_expand(\\n) xcopy \"$$GST_ROOT_WIN\\lib\\gstreamer-1.0\\validate\\*.dll\" \"$$DESTDIR_WIN\\gstreamer-plugins\\validate\\\" /Y $$escape_expand(\\n)
63 64
    }
} else:AndroidBuild {
Don Gagne's avatar
Don Gagne committed
65 66
    #- gstreamer assumed to be installed in $$PWD/../../gstreamer-1.0-android-universal-1.14.4/***
    contains(QT_ARCH, arm) {
67
        GST_ROOT = $$PWD/../../gstreamer-1.0-android-universal-1.14.4/armv7
Don Gagne's avatar
Don Gagne committed
68 69 70 71
    } else:contains(QT_ARCH, arm64) {
        GST_ROOT = $$PWD/../../gstreamer-1.0-android-universal-1.14.4/arm64
    } else {
        GST_ROOT = $$PWD/../../gstreamer-1.0-android-universal-1.14.4/x86
72
    }
73 74 75
    exists($$GST_ROOT) {
        QMAKE_CXXFLAGS  += -pthread
        CONFIG          += VideoEnabled
76 77

        # We want to link these plugins statically
78
        LIBS += -L$$GST_ROOT/lib/gstreamer-1.0 \
79
            -lgstvideo-1.0 \
80 81 82
            -lgstcoreelements \
            -lgstudp \
            -lgstrtp \
83
            -lgstrtsp \
84 85
            -lgstx264 \
            -lgstlibav \
86 87 88
            -lgstsdpelem \
            -lgstvideoparsersbad \
            -lgstrtpmanager \
89 90
            -lgstisomp4 \
            -lgstmatroska \
91 92
            -lgstandroidmedia \
            -lgstopengl
93 94 95

        # Rest of GStreamer dependencies
        LIBS += -L$$GST_ROOT/lib \
96
            -lgraphene-1.0 -ljpeg -lpng16 \
97 98
            -lgstfft-1.0 -lm  \
            -lgstnet-1.0 -lgio-2.0 \
99
            -lgstphotography-1.0 -lgstgl-1.0 -lEGL \
100
            -lgstaudio-1.0 -lgstcodecparsers-1.0 -lgstbase-1.0 \
101
            -lgstreamer-1.0 -lgstrtp-1.0 -lgstpbutils-1.0 -lgstrtsp-1.0 -lgsttag-1.0 \
102
            -lgstvideo-1.0 -lavformat -lavcodec -lavutil -lx264 -lavfilter -lswresample \
103 104 105
            -lgstriff-1.0 -lgstcontroller-1.0 -lgstapp-1.0 \
            -lgstsdp-1.0 -lbz2 -lgobject-2.0 \
            -Wl,--export-dynamic -lgmodule-2.0 -pthread -lglib-2.0 -lorc-0.4 -liconv -lffi -lintl \
106 107 108 109 110

        INCLUDEPATH += \
            $$GST_ROOT/include/gstreamer-1.0 \
            $$GST_ROOT/lib/gstreamer-1.0/include \
            $$GST_ROOT/include/glib-2.0 \
Gus Grubba's avatar
Gus Grubba committed
111
            $$GST_ROOT/lib/glib-2.0/include
112
    }
Gus Grubba's avatar
Gus Grubba committed
113 114 115 116
}

VideoEnabled {

117 118
    message("Including support for video streaming")

Gus Grubba's avatar
Gus Grubba committed
119
    DEFINES += \
120
        QGC_GST_STREAMING
Gus Grubba's avatar
Gus Grubba committed
121

122 123
    iOSBuild {
        OBJECTIVE_SOURCES += \
124
            $$PWD/iOS/gst_ios_init.m
125
        INCLUDEPATH += \
126
            $$PWD/iOS
127 128
    }

129
    include($$PWD/../../qmlglsink.pri)
Gus Grubba's avatar
Gus Grubba committed
130
} else {
131
    LinuxBuild|MacBuild|iOSBuild|WindowsBuild|AndroidBuild {
132
        message("Skipping support for video streaming (GStreamer libraries not installed)")
133
        message("Installation instructions here: https://github.com/mavlink/qgroundcontrol/blob/master/src/VideoStreaming/README.md")
134 135 136
    } else {
        message("Skipping support for video streaming (Unsupported platform)")
    }
Gus Grubba's avatar
Gus Grubba committed
137

138 139 140 141 142 143
    SOURCES += \
        $$PWD/GLVideoItemStub.cc

    HEADERS += \
        $$PWD/GLVideoItemStub.h
}