summaryrefslogtreecommitdiffstats
path: root/examples/multimedia/video/qmlvideo
diff options
context:
space:
mode:
authorAlexander Volkov <a.volkov@rusbitech.ru>2018-11-29 14:48:58 +0300
committerAlexander Volkov <a.volkov@rusbitech.ru>2019-02-01 13:59:46 +0000
commitc877776c354a625373e1dc0f38ac4918da9a056f (patch)
tree2feb1e9be8a346e63f378509fe375cd9bb0e55a3 /examples/multimedia/video/qmlvideo
parentb0c7dffcdb1150dd9d8cbf92b93ce0cae4fa10ad (diff)
GStreamer: support video orientation
Change-Id: I233c45824f517c185cb245d8a7d77cab8551fc51 Reviewed-by: VaL Doroshchuk <valentyn.doroshchuk@qt.io>
Diffstat (limited to 'examples/multimedia/video/qmlvideo')
-rw-r--r--examples/multimedia/video/qmlvideo/qml/qmlvideo/VideoMetadata.qml4
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/multimedia/video/qmlvideo/qml/qmlvideo/VideoMetadata.qml b/examples/multimedia/video/qmlvideo/qml/qmlvideo/VideoMetadata.qml
index c657c634c..b9672f1c5 100644
--- a/examples/multimedia/video/qmlvideo/qml/qmlvideo/VideoMetadata.qml
+++ b/examples/multimedia/video/qmlvideo/qml/qmlvideo/VideoMetadata.qml
@@ -124,6 +124,10 @@ Scene {
color: "#e0e0e0"
text: "Seekable:" + content.contentItem().metaData.seekable
}
+ Text {
+ color: "#e0e0e0"
+ text: "Orientation:" + content.contentItem().metaData.orientation
+ }
}
}