summaryrefslogtreecommitdiffstats
path: root/tests/auto/integration/qdeclarativevideooutput_window/main.qml
blob: 40cecc762dddee6741b7b337fbe8d35f8f3b30e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick
import QtMultimedia

Item {
    width: 200
    height: 200
    VideoOutput {
        objectName: "videoOutput"
        x: 25; y: 50
        width: 150
        height: 100
    }
}