Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
e0b57ec9
Commit
e0b57ec9
authored
Jun 05, 2017
by
Gus Grubba
Browse files
Exclude method when not building with video streaming support.
parent
fb5e524c
Changes
1
Show whitespace changes
Inline
Side-by-side
src/VideoStreaming/VideoReceiver.cc
View file @
e0b57ec9
...
...
@@ -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:
//
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment