The autoOrientation property is a flag to switch on/off automatic rotation of the video output, depending on the current screen orientation, to always show the output upright. This is useful when the VideoOutput is used as viewfinder for a Camera. Change-Id: I72753888592dc59c9adaa3343bfec8b168343229 Reviewed-by: Thomas McGuire <thomas.mcguire@kdab.com> Reviewed-by: Andy Nichols <andy.nichols@digia.com>
32 lines
742 B
Plaintext
32 lines
742 B
Plaintext
|
|
INCLUDEPATH += video
|
|
|
|
PUBLIC_HEADERS += \
|
|
video/qabstractvideobuffer.h \
|
|
video/qabstractvideosurface.h \
|
|
video/qvideoframe.h \
|
|
video/qvideosurfaceformat.h \
|
|
video/qvideoprobe.h
|
|
|
|
PRIVATE_HEADERS += \
|
|
video/qabstractvideobuffer_p.h \
|
|
video/qimagevideobuffer_p.h \
|
|
video/qmemoryvideobuffer_p.h \
|
|
video/qvideooutputorientationhandler_p.h \
|
|
video/qvideosurfaceoutput_p.h
|
|
|
|
SOURCES += \
|
|
video/qabstractvideobuffer.cpp \
|
|
video/qabstractvideosurface.cpp \
|
|
video/qimagevideobuffer.cpp \
|
|
video/qmemoryvideobuffer.cpp \
|
|
video/qvideoframe.cpp \
|
|
video/qvideooutputorientationhandler.cpp \
|
|
video/qvideosurfaceformat.cpp \
|
|
video/qvideosurfaceoutput.cpp \
|
|
video/qvideoprobe.cpp
|
|
|
|
|
|
|
|
|