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

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