From e0b57ec9eab2552d8c82ef955e2aefcd616e3db9 Mon Sep 17 00:00:00 2001 From: Gus Grubba Date: Mon, 5 Jun 2017 19:28:45 -0400 Subject: [PATCH] Exclude method when not building with video streaming support. --- src/VideoStreaming/VideoReceiver.cc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/VideoStreaming/VideoReceiver.cc b/src/VideoStreaming/VideoReceiver.cc index 1d56ecc0b..05e01844e 100644 --- a/src/VideoStreaming/VideoReceiver.cc +++ b/src/VideoStreaming/VideoReceiver.cc @@ -27,6 +27,8 @@ QGC_LOGGING_CATEGORY(VideoReceiverLog, "VideoReceiverLog") +#if defined(QGC_GST_STREAMING) + static const char* kVideoExtensions[] = { "mkv", @@ -43,6 +45,9 @@ static const char* kVideoMuxes[] = #define NUM_MUXES (sizeof(kVideoMuxes) / sizeof(char*)) +#endif + + VideoReceiver::VideoReceiver(QObject* parent) : QObject(parent) #if defined(QGC_GST_STREAMING) @@ -461,6 +466,7 @@ gboolean VideoReceiver::_onBusMessage(GstBus* bus, GstMessage* msg, gpointer dat } #endif +#if defined(QGC_GST_STREAMING) void VideoReceiver::_cleanupOldVideos() { QString savePath = qgcApp()->toolbox()->settingsManager()->videoSettings()->videoSavePath()->rawValue().toString(); @@ -493,6 +499,7 @@ void VideoReceiver::_cleanupOldVideos() } } } +#endif // When we finish our pipeline will look like this: // -- 2.22.0