AVFCameraZoomControl for AVFoundation plugin (videoZoomFactor in AVCaptureDeviceFormat). iOS only. Change-Id: I585b8df4c2a477971ada7bd81fabbd44f2371d98 Reviewed-by: Yoann Lopes <yoann.lopes@theqtcompany.com>
68 lines
1.7 KiB
Prolog
68 lines
1.7 KiB
Prolog
# Avoid clash with a variable named `slots' in a Quartz header
|
|
CONFIG += no_keywords
|
|
|
|
TARGET = qavfcamera
|
|
QT += multimedia-private network
|
|
|
|
PLUGIN_TYPE = mediaservice
|
|
PLUGIN_CLASS_NAME = AVFServicePlugin
|
|
load(qt_plugin)
|
|
|
|
LIBS += -framework AudioToolbox \
|
|
-framework CoreAudio \
|
|
-framework QuartzCore \
|
|
-framework AVFoundation \
|
|
-framework CoreMedia
|
|
osx:LIBS += -framework AppKit \
|
|
-framework AudioUnit
|
|
ios:LIBS += -framework CoreVideo
|
|
|
|
OTHER_FILES += avfcamera.json
|
|
|
|
DEFINES += QMEDIA_AVF_CAMERA
|
|
|
|
HEADERS += \
|
|
avfcameradebug.h \
|
|
avfcameraserviceplugin.h \
|
|
avfcameracontrol.h \
|
|
avfcamerametadatacontrol.h \
|
|
avfimagecapturecontrol.h \
|
|
avfmediarecordercontrol.h \
|
|
avfcameraservice.h \
|
|
avfcamerasession.h \
|
|
avfstoragelocation.h \
|
|
avfaudioinputselectorcontrol.h \
|
|
avfcamerainfocontrol.h \
|
|
avfmediavideoprobecontrol.h \
|
|
avfcamerainfocontrol.h \
|
|
avfcamerarenderercontrol.h \
|
|
avfcameradevicecontrol.h \
|
|
avfcamerafocuscontrol.h \
|
|
avfcameraexposurecontrol.h \
|
|
avfconfigurationlock.h
|
|
|
|
OBJECTIVE_SOURCES += \
|
|
avfcameraserviceplugin.mm \
|
|
avfcameracontrol.mm \
|
|
avfcamerametadatacontrol.mm \
|
|
avfimagecapturecontrol.mm \
|
|
avfmediarecordercontrol.mm \
|
|
avfcameraservice.mm \
|
|
avfcamerasession.mm \
|
|
avfstoragelocation.mm \
|
|
avfaudioinputselectorcontrol.mm \
|
|
avfcamerainfocontrol.mm \
|
|
avfmediavideoprobecontrol.mm \
|
|
avfcamerainfocontrol.mm \
|
|
avfcameradevicecontrol.mm \
|
|
avfcamerarenderercontrol.mm \
|
|
avfcamerafocuscontrol.mm \
|
|
avfcameraexposurecontrol.mm
|
|
|
|
ios {
|
|
|
|
HEADERS += avfcamerazoomcontrol.h
|
|
OBJECTIVE_SOURCES += avfcamerazoomcontrol.mm
|
|
|
|
}
|