1import QtQuick 2.4 2import QtQuick.Controls 1.1 3import QtQuick.Controls.Styles 1.3 4import QtQuick.Dialogs 1.2 5import QtQuick.Window 2.1 6 7import org.freedesktop.gstreamer.GLVideoItem 1.0 8 9ApplicationWindow { 10 id: window 11 visible: true 12 width: 640 13 height: 480 14 x: 30 15 y: 30 16 color: "black" 17 18 Item { 19 anchors.fill: parent 20 21 GstGLVideoItem { 22 id: video 23 objectName: "videoItem" 24 anchors.centerIn: parent 25 width: parent.width 26 height: parent.height 27 } 28 29 Text { 30 anchors.bottom: parent.bottom 31 anchors.horizontalCenter: parent.horizontalCenter 32 text: "qmlglsink text" 33 font.pointSize: 20 34 color: "yellow" 35 style: Text.Outline 36 styleColor: "blue" 37 } 38 } 39} 40