summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2019-12-14 03:01:32 +0100
committerQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2019-12-14 03:01:32 +0100
commit50e8e0f89da51a64bed5d25b507752e49c46c324 (patch)
treeeacc4076fdda54a0d079774113dd7842f6fe1af4
parent126d16b0f81f5fae2de5469d9f233d9b79d08d61 (diff)
parentc4ee7b6525234284dc593f9304c72ef9d474a168 (diff)
Merge remote-tracking branch 'origin/5.14' into 5.15
-rw-r--r--dist/changes-5.14.054
-rw-r--r--src/plugins/videonode/egl/qsgvideonode_egl.h3
-rw-r--r--src/plugins/videonode/imx6/qsgvivantevideonodefactory.cpp4
3 files changed, 60 insertions, 1 deletions
diff --git a/dist/changes-5.14.0 b/dist/changes-5.14.0
new file mode 100644
index 000000000..4f99255e2
--- /dev/null
+++ b/dist/changes-5.14.0
@@ -0,0 +1,54 @@
+Qt 5.14 introduces many new features and improvements as well as bugfixes
+over the 5.13.x series. For more details, refer to the online documentation
+included in this distribution. The documentation is also available online:
+
+https://doc.qt.io/qt-5/index.html
+
+The Qt version 5.14 series is binary compatible with the 5.13.x series.
+Applications compiled for 5.13 will continue to run with 5.14.
+
+Some of the changes listed in this file include issue tracking numbers
+corresponding to tasks in the Qt Bug Tracker:
+
+https://bugreports.qt.io/
+
+Each of these identifiers can be entered in the bug tracker to obtain more
+information about a particular change.
+
+****************************************************************************
+* Qt 5.14.0 Changes *
+****************************************************************************
+
+ - [QTBUG-73878] Removed the Mir client code as it is no longer used.
+ - Added QVideoFrame::Format_YUV422P.
+ - Deprecated canonicalUrl and canonicalRequest in QMediaContent.
+ - [QTBUG-74422] Moved dtors of QCameraExposure, QCameraFocus,
+ QCameraImageProcessing from private to protected.
+ - [QTBUG-75781] QAudioDeviceInfo::realm() is moved from private to public.
+ - [QTBUG-77630] QMediaServicePrivate is now inherited from QObjectPrivate.
+ - [QTBUG-75943] Qt Audio Engine QML types are now deprecated.
+ QMediaServiceProviderPlugin, QMediaServiceProviderHint, QMediaServiceProvider,
+ QMediaServiceProviderPlugin, QMediaServiceSupportedFormatsInterface,
+ QMediaServiceSupportedDevicesInterface,QMediaServiceDefaultDeviceInterface,
+ QMediaServiceCameraInfoInterface, QMediaServiceFeaturesInterface,
+ QRadioTuner, QRadioData
+ classes are now deprecated.
+
+****************************************************************************
+* Platform Specific Changes *
+****************************************************************************
+
+ - GStreamer:
+ * [QTBUG-65398] Stopping a camera will now be postponed until the pipeline is ready.
+ * [QTBUG-66162] Introduced support of OpenGL plugin.
+ * The media player will no longer send an EOS signal for sequential devices when read() returns 0.
+ * [QTBUG-78855] Fixed wrong texture format being used on iMX.
+ * [QTBUG-72125] Added GStreamer support for Android.
+
+ - AVFoundation:
+ * [QTBUG-67985] Fixed the front camera to use 270 instead of 90 orientation.
+
+ - Android:
+ * [QTBUG-70368] Added SL_ANDROID_RECORDING_PRESET_VOICE_COMMUNICATION support.
+ * [QTBUG-69333] Fixed crash when fetching video frame data from the GUI thread.
+ * [QTBUG-79909] Fixed crash when audio recording permission is asked on active camera.
diff --git a/src/plugins/videonode/egl/qsgvideonode_egl.h b/src/plugins/videonode/egl/qsgvideonode_egl.h
index 0ec63eac1..f83231e53 100644
--- a/src/plugins/videonode/egl/qsgvideonode_egl.h
+++ b/src/plugins/videonode/egl/qsgvideonode_egl.h
@@ -51,6 +51,9 @@
#ifdef Bool
# undef Bool
#endif
+#ifdef None
+# undef None
+#endif
QT_BEGIN_NAMESPACE
diff --git a/src/plugins/videonode/imx6/qsgvivantevideonodefactory.cpp b/src/plugins/videonode/imx6/qsgvivantevideonodefactory.cpp
index e1c8d803a..55ed57c10 100644
--- a/src/plugins/videonode/imx6/qsgvivantevideonodefactory.cpp
+++ b/src/plugins/videonode/imx6/qsgvivantevideonodefactory.cpp
@@ -39,11 +39,13 @@
#include "qsgvivantevideonodefactory.h"
#include "qsgvivantevideonode.h"
+#include <QtGui/QGuiApplication>
QList<QVideoFrame::PixelFormat> QSGVivanteVideoNodeFactory::supportedPixelFormats(
QAbstractVideoBuffer::HandleType handleType) const
{
- if (handleType == QAbstractVideoBuffer::NoHandle)
+ const bool isWebGl = QGuiApplication::platformName() == QLatin1String("webgl");
+ if (!isWebGl && handleType == QAbstractVideoBuffer::NoHandle)
return QSGVivanteVideoNode::getVideoFormat2GLFormatMap().keys();
else
return QList<QVideoFrame::PixelFormat>();