summaryrefslogtreecommitdiffstats
path: root/src/qtmultimediaquicktools/qdeclarativevideooutput.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2021-02-12 18:15:58 +0100
committerLars Knoll <lars.knoll@qt.io>2021-03-02 14:49:17 +0000
commitcfdc30634a914747602796187ab41eb424d02fd9 (patch)
tree141b6068a561552d299c5b3a7c2b76184d28126a /src/qtmultimediaquicktools/qdeclarativevideooutput.cpp
parent9dd7188e50210c9e059dfe5d1e2715375b5e4a61 (diff)
Get rid of QVideoRendererControl
It's a pure implementation detail in the backends now (and can in cases even get removed there). No need for an interface. Change-Id: Ib61cebe80d0369424d4ee681992e4abc80c11a14 Reviewed-by: Doris Verria <doris.verria@qt.io> Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'src/qtmultimediaquicktools/qdeclarativevideooutput.cpp')
-rw-r--r--src/qtmultimediaquicktools/qdeclarativevideooutput.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qtmultimediaquicktools/qdeclarativevideooutput.cpp b/src/qtmultimediaquicktools/qdeclarativevideooutput.cpp
index 68515af95..562831a45 100644
--- a/src/qtmultimediaquicktools/qdeclarativevideooutput.cpp
+++ b/src/qtmultimediaquicktools/qdeclarativevideooutput.cpp
@@ -90,7 +90,7 @@ Q_LOGGING_CATEGORY(qLcVideo, "qt.multimedia.video")
For a description of stretched uniformly scaled presentation, see the \l fillMode property
description.
- The VideoOutput item works with backends that support either QVideoRendererControl or
+ The VideoOutput item works with backends that support either QObject or
QVideoWindowControl. If the backend only supports QVideoWindowControl, the video is rendered
onto an overlay window that is layered on top of the QtQuick window. Due to the nature of the
video overlays, certain features are not available for these kind of backends:
@@ -98,7 +98,7 @@ Q_LOGGING_CATEGORY(qLcVideo, "qt.multimedia.video")
\li Some transformations like rotations
\li Having other QtQuick items on top of the VideoOutput item
\endlist
- Most backends however do support QVideoRendererControl and therefore don't have the limitations
+ Most backends however do support QObject and therefore don't have the limitations
listed above.
\sa MediaPlayer, Camera