VideoStreaming.pri 8.19 KB
Newer Older
Gus Grubba's avatar
Gus Grubba committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
# -------------------------------------------------
# QGroundControl - Micro Air Vehicle Groundstation
# Please see our website at <http://qgroundcontrol.org>
# Maintainer:
# Lorenz Meier <lm@inf.ethz.ch>
# (c) 2009-2015 QGroundControl Developers
#
# This file is part of the open groundstation project
# QGroundControl is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# QGroundControl is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with QGroundControl. If not, see <http://www.gnu.org/licenses/>.
#
# Author: Gus Grubba <mavlink@grubba.com>
# -------------------------------------------------

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

LinuxBuild {
    CONFIG += link_pkgconfig
    packagesExist(gstreamer-1.0) {
Gus Grubba's avatar
Gus Grubba committed
30
        PKGCONFIG   += gstreamer-1.0  gstreamer-video-1.0
Gus Grubba's avatar
Gus Grubba committed
31 32 33 34 35 36 37 38 39 40
        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
41 42 43 44 45 46
} 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
47
        LIBS        += -F$$(HOME)/Library/Developer/GStreamer/iPhone.sdk -framework GStreamer -liconv -lresolv
dogmaphobic's avatar
dogmaphobic committed
48
    }
49 50
} else:WindowsBuild {
    #- gstreamer installed by default under c:/gstreamer
DonLakeFlyer's avatar
DonLakeFlyer committed
51
    GST_ROOT = c:/gstreamer/1.0/x86_64
Gus Grubba's avatar
Gus Grubba committed
52 53
    exists($$GST_ROOT) {
        CONFIG      += VideoEnabled
Don Gagne's avatar
Don Gagne committed
54 55 56 57

        LIBS        += -L$$GST_ROOT/lib -lgstreamer-1.0 -lgstvideo-1.0 -lgstbase-1.0
        LIBS        += -lglib-2.0 -lintl -lgobject-2.0

Gus Grubba's avatar
Gus Grubba committed
58 59 60
        INCLUDEPATH += \
            $$GST_ROOT/include/gstreamer-1.0 \
            $$GST_ROOT/include/glib-2.0 \
61
            $$GST_ROOT/lib/gstreamer-1.0/include \
Don Gagne's avatar
Don Gagne committed
62 63
            $$GST_ROOT/lib/glib-2.0/include

Don Gagne's avatar
Don Gagne committed
64
        DESTDIR_WIN = $$replace(DESTDIR, "/", "\\")
Don Gagne's avatar
Don Gagne committed
65 66 67 68 69 70 71
        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
72 73
        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)
74 75
    }
} else:AndroidBuild {
Don Gagne's avatar
Don Gagne committed
76 77
    #- gstreamer assumed to be installed in $$PWD/../../gstreamer-1.0-android-universal-1.14.4/***
    contains(QT_ARCH, arm) {
78
        GST_ROOT = $$PWD/../../gstreamer-1.0-android-universal-1.14.4/armv7
Don Gagne's avatar
Don Gagne committed
79 80 81 82
    } 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
83
    }
84 85 86
    exists($$GST_ROOT) {
        QMAKE_CXXFLAGS  += -pthread
        CONFIG          += VideoEnabled
87 88

        # We want to link these plugins statically
89
        LIBS += -L$$GST_ROOT/lib/gstreamer-1.0 \
90
            -lgstvideo-1.0 \
91 92 93
            -lgstcoreelements \
            -lgstudp \
            -lgstrtp \
94
            -lgstrtsp \
95 96
            -lgstx264 \
            -lgstlibav \
97 98 99
            -lgstsdpelem \
            -lgstvideoparsersbad \
            -lgstrtpmanager \
100 101
            -lgstisomp4 \
            -lgstmatroska \
102
            -lgstandroidmedia
103 104 105

        # Rest of GStreamer dependencies
        LIBS += -L$$GST_ROOT/lib \
106 107
            -lgstfft-1.0 -lm  \
            -lgstnet-1.0 -lgio-2.0 \
108
            -lgstphotography-1.0 -lgstgl-1.0 -lEGL \
109
            -lgstaudio-1.0 -lgstcodecparsers-1.0 -lgstbase-1.0 \
110
            -lgstreamer-1.0 -lgstrtp-1.0 -lgstpbutils-1.0 -lgstrtsp-1.0 -lgsttag-1.0 \
111
            -lgstvideo-1.0 -lavformat -lavcodec -lavutil -lx264 -lavfilter -lswresample \
112 113 114
            -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 \
115 116 117 118 119

        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
120
            $$GST_ROOT/lib/glib-2.0/include
121
    }
Gus Grubba's avatar
Gus Grubba committed
122 123 124 125
}

VideoEnabled {

126 127
    message("Including support for video streaming")

Gus Grubba's avatar
Gus Grubba committed
128
    DEFINES += \
dogmaphobic's avatar
dogmaphobic committed
129
        QGC_GST_STREAMING \
Gus Grubba's avatar
Gus Grubba committed
130 131
        GST_PLUGIN_BUILD_STATIC \
        QTGLVIDEOSINK_NAME=qt5glvideosink \
132
        QGC_VIDEOSINK_PLUGIN=qt5videosink
Gus Grubba's avatar
Gus Grubba committed
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161

    INCLUDEPATH += \
        $$PWD/gstqtvideosink \
        $$PWD/gstqtvideosink/delegates \
        $$PWD/gstqtvideosink/painters \
        $$PWD/gstqtvideosink/utils \

    #-- QtGstreamer (gutted to our needs)

    HEADERS += \
        $$PWD/gstqtvideosink/delegates/basedelegate.h \
        $$PWD/gstqtvideosink/delegates/qtquick2videosinkdelegate.h \
        $$PWD/gstqtvideosink/delegates/qtvideosinkdelegate.h \
        $$PWD/gstqtvideosink/delegates/qwidgetvideosinkdelegate.h \
        $$PWD/gstqtvideosink/gstqtglvideosink.h \
        $$PWD/gstqtvideosink/gstqtglvideosinkbase.h \
        $$PWD/gstqtvideosink/gstqtquick2videosink.h \
        $$PWD/gstqtvideosink/gstqtvideosink.h \
        $$PWD/gstqtvideosink/gstqtvideosinkbase.h \
        $$PWD/gstqtvideosink/gstqtvideosinkmarshal.h \
        $$PWD/gstqtvideosink/gstqtvideosinkplugin.h \
        $$PWD/gstqtvideosink/gstqwidgetvideosink.h \
        $$PWD/gstqtvideosink/painters/abstractsurfacepainter.h \
        $$PWD/gstqtvideosink/painters/genericsurfacepainter.h \
        $$PWD/gstqtvideosink/painters/openglsurfacepainter.h \
        $$PWD/gstqtvideosink/painters/videomaterial.h \
        $$PWD/gstqtvideosink/painters/videonode.h \
        $$PWD/gstqtvideosink/utils/bufferformat.h \
        $$PWD/gstqtvideosink/utils/utils.h \
dogmaphobic's avatar
dogmaphobic committed
162
        $$PWD/gstqtvideosink/utils/glutils.h \
Gus Grubba's avatar
Gus Grubba committed
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183

    SOURCES += \
        $$PWD/gstqtvideosink/delegates/basedelegate.cpp \
        $$PWD/gstqtvideosink/delegates/qtquick2videosinkdelegate.cpp \
        $$PWD/gstqtvideosink/delegates/qtvideosinkdelegate.cpp \
        $$PWD/gstqtvideosink/delegates/qwidgetvideosinkdelegate.cpp \
        $$PWD/gstqtvideosink/gstqtglvideosink.cpp \
        $$PWD/gstqtvideosink/gstqtglvideosinkbase.cpp \
        $$PWD/gstqtvideosink/gstqtvideosinkmarshal.c \
        $$PWD/gstqtvideosink/gstqtquick2videosink.cpp \
        $$PWD/gstqtvideosink/gstqtvideosink.cpp \
        $$PWD/gstqtvideosink/gstqtvideosinkbase.cpp \
        $$PWD/gstqtvideosink/gstqtvideosinkplugin.cpp \
        $$PWD/gstqtvideosink/gstqwidgetvideosink.cpp \
        $$PWD/gstqtvideosink/painters/genericsurfacepainter.cpp \
        $$PWD/gstqtvideosink/painters/openglsurfacepainter.cpp \
        $$PWD/gstqtvideosink/painters/videomaterial.cpp \
        $$PWD/gstqtvideosink/painters/videonode.cpp \
        $$PWD/gstqtvideosink/utils/bufferformat.cpp \
        $$PWD/gstqtvideosink/utils/utils.cpp \

184 185 186 187 188 189 190
    iOSBuild {
        OBJECTIVE_SOURCES += \
            $$PWD/ios/gst_ios_init.m
        INCLUDEPATH += \
            $$PWD/ios
    }

Gus Grubba's avatar
Gus Grubba committed
191
} else {
192
    LinuxBuild|MacBuild|iOSBuild|WindowsBuild|AndroidBuild {
193
        message("Skipping support for video streaming (GStreamer libraries not installed)")
194
        message("Installation instructions here: https://github.com/mavlink/qgroundcontrol/blob/master/src/VideoStreaming/README.md")
195 196 197
    } else {
        message("Skipping support for video streaming (Unsupported platform)")
    }
Gus Grubba's avatar
Gus Grubba committed
198 199
}