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
6d052668
Unverified
Commit
6d052668
authored
Nov 07, 2018
by
Gus Grubba
Committed by
GitHub
Nov 07, 2018
Browse files
Merge pull request #6990 from mavlink/rtspUdpTimeout
RTSP UDP timeout
parents
2d186f2a
ebcc802d
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
src/FlightDisplay/VideoManager.cc
View file @
6d052668
...
...
@@ -32,8 +32,8 @@ QGC_LOGGING_CATEGORY(VideoManagerLog, "VideoManagerLog")
//-----------------------------------------------------------------------------
VideoManager
::
VideoManager
(
QGCApplication
*
app
,
QGCToolbox
*
toolbox
)
:
QGCTool
(
app
,
toolbox
)
,
_videoReceiver
(
NULL
)
,
_videoSettings
(
NULL
)
,
_videoReceiver
(
nullptr
)
,
_videoSettings
(
nullptr
)
,
_fullScreen
(
false
)
{
}
...
...
src/VideoStreaming/VideoReceiver.cc
View file @
6d052668
This diff is collapsed.
Click to expand it.
src/VideoStreaming/VideoReceiver.h
View file @
6d052668
...
...
@@ -44,7 +44,7 @@ public:
Q_PROPERTY
(
QString
videoFile
READ
videoFile
NOTIFY
videoFileChanged
)
Q_PROPERTY
(
bool
showFullScreen
READ
showFullScreen
WRITE
setShowFullScreen
NOTIFY
showFullScreenChanged
)
explicit
VideoReceiver
(
QObject
*
parent
=
0
);
explicit
VideoReceiver
(
QObject
*
parent
=
nullptr
);
~
VideoReceiver
();
#if defined(QGC_GST_STREAMING)
...
...
@@ -138,6 +138,9 @@ protected:
bool
_serverPresent
;
int
_rtspTestInterval_ms
;
//-- RTSP UDP reconnect timeout
uint64_t
_udpReconnect_us
;
#endif
QString
_uri
;
...
...
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