Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
external
Qt
QtMultimedia
Commits
14b0f477
Commit
14b0f477
authored
6 years ago
by
Qt Forward Merge Bot
Browse files
Options
Download
Plain Diff
Merge remote-tracking branch 'origin/5.12' into 5.13
Change-Id: I7a99bdc1300e3e19c85967bf67da3481a259e3c1
parents
997824d2
fea4d302
dev
5.13
5.13.0
5.13.1
5.13.2
5.14
5.14.0
5.14.1
5.14.2
5.15
5.15.0
5.15.1
5.15.2
6.2
6.2.0
6.2.1
6.2.2
wip/cmake
wip/qt6
v5.15.0-alpha1
v5.14.1
v5.14.0
v5.14.0-rc2
v5.14.0-rc1
v5.14.0-beta3
v5.14.0-beta2
v5.14.0-beta1
v5.14.0-alpha1
v5.13.2
v5.13.1
v5.13.0
v5.13.0-rc3
v5.13.0-rc2
v5.13.0-rc1
v5.13.0-beta4
v5.13.0-beta3
v5.13.0-beta2
v5.13.0-beta1
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/gsttools/qgstreamerplayersession.cpp
+7
-1
src/gsttools/qgstreamerplayersession.cpp
src/gsttools/qgstreamervideorenderer.cpp
+0
-1
src/gsttools/qgstreamervideorenderer.cpp
with
7 additions
and
2 deletions
src/gsttools/qgstreamerplayersession.cpp
+
7
−
1
View file @
14b0f477
...
...
@@ -47,7 +47,7 @@
#include
<private/gstvideoconnector_p.h>
#endif
#include
<private/qgstutils_p.h>
#include
<private/q
gstutils
_p.h>
#include
<private/q
videosurfacegstsink
_p.h>
#include
<gst/gstvalue.h>
#include
<gst/base/gstbasesrc.h>
...
...
@@ -60,6 +60,7 @@
#include
<QtCore/qdebug.h>
#include
<QtCore/qdir.h>
#include
<QtCore/qstandardpaths.h>
#include
<qvideorenderercontrol.h>
//#define DEBUG_PLAYBIN
//#define DEBUG_VO_BIN_DUMP
...
...
@@ -338,6 +339,11 @@ void QGstreamerPlayerSession::loadFromUri(const QNetworkRequest &request)
#endif
if
(
m_request
.
url
().
scheme
()
==
QLatin1String
(
"gst-pipeline"
))
{
// Set current surface to video sink before creating a pipeline.
auto
renderer
=
qobject_cast
<
QVideoRendererControl
*>
(
m_videoOutput
);
if
(
renderer
)
QVideoSurfaceGstSink
::
setSurface
(
renderer
->
surface
());
QString
url
=
m_request
.
url
().
toString
(
QUrl
::
RemoveScheme
);
QString
pipeline
=
QUrl
::
fromPercentEncoding
(
url
.
toLatin1
().
constData
());
GError
*
err
=
nullptr
;
...
...
This diff is collapsed.
Click to expand it.
src/gsttools/qgstreamervideorenderer.cpp
+
0
−
1
View file @
14b0f477
...
...
@@ -113,7 +113,6 @@ void QGstreamerVideoRenderer::setSurface(QAbstractVideoSurface *surface)
if
(
m_surface
)
{
connect
(
m_surface
.
data
(),
SIGNAL
(
supportedFormatsChanged
()),
this
,
SLOT
(
handleFormatChange
()));
QVideoSurfaceGstSink
::
setSurface
(
m_surface
);
}
if
(
wasReady
!=
isReady
())
...
...
This diff is collapsed.
Click to expand it.
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!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets