You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
456 B
23 lines
456 B
import QtQuick 2.12 |
|
import QtQuick.Window 2.12 |
|
import QtQuick.Layouts 1.3 |
|
import org.freedesktop.gstreamer.GLVideoItem 1.0 |
|
|
|
Window { |
|
visible: true |
|
width: 640 |
|
height: 480 |
|
title: qsTr("VideoReceiverApp") |
|
|
|
RowLayout { |
|
anchors.fill: parent |
|
spacing: 0 |
|
|
|
GstGLVideoItem { |
|
id: video |
|
objectName: "videoItem" |
|
Layout.fillWidth: true |
|
Layout.fillHeight: true |
|
} |
|
} |
|
}
|
|
|