Commit 14b0f477 authored by Qt Forward Merge Bot's avatar Qt Forward Merge Bot
Browse files

Merge remote-tracking branch 'origin/5.12' into 5.13

Change-Id: I7a99bdc1300e3e19c85967bf67da3481a259e3c1
Showing with 7 additions and 2 deletions
......@@ -47,7 +47,7 @@
#include <private/gstvideoconnector_p.h>
#endif
#include <private/qgstutils_p.h>
#include <private/qgstutils_p.h>
#include <private/qvideosurfacegstsink_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;
......
......@@ -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())
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment