Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
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
Options
Browse Files
Download
Plain Diff
Merge pull request #6990 from mavlink/rtspUdpTimeout
RTSP UDP timeout
parents
2d186f2a
ebcc802d
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
93 additions
and
89 deletions
+93
-89
VideoManager.cc
src/FlightDisplay/VideoManager.cc
+2
-2
VideoReceiver.cc
src/VideoStreaming/VideoReceiver.cc
+87
-86
VideoReceiver.h
src/VideoStreaming/VideoReceiver.h
+4
-1
No files found.
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
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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