summaryrefslogtreecommitdiffstats
path: root/src/plugins/avfoundation/camera/avfcameraservice.h
diff options
context:
space:
mode:
authorTimur Pocheptsov <Timur.Pocheptsov@digia.com>2015-01-14 12:18:53 +0100
committerTimur Pocheptsov <Timur.Pocheptsov@digia.com>2015-02-05 17:25:10 +0000
commit39f5de4106b87c5bda159290a512fcf56bc1dc4f (patch)
treecc472b9df03dbc30ee94a3df2304b6bdd454d7ee /src/plugins/avfoundation/camera/avfcameraservice.h
parent60541844c10f86288a847728b71b211f5fa958b4 (diff)
AVFCameraExposureControl - exposure control for iOS
Exposure control, version for AVFoundation plugin (this code is using quite a new API, iOS >=8 only). Change-Id: I6871a758e8dfb98ab46b66d91a44142163e0bb44 Reviewed-by: Yoann Lopes <yoann.lopes@theqtcompany.com>
Diffstat (limited to 'src/plugins/avfoundation/camera/avfcameraservice.h')
-rw-r--r--src/plugins/avfoundation/camera/avfcameraservice.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/avfoundation/camera/avfcameraservice.h b/src/plugins/avfoundation/camera/avfcameraservice.h
index d948b0e8d..e49470484 100644
--- a/src/plugins/avfoundation/camera/avfcameraservice.h
+++ b/src/plugins/avfoundation/camera/avfcameraservice.h
@@ -53,6 +53,7 @@ class AVFCameraSession;
class AVFCameraDeviceControl;
class AVFAudioInputSelectorControl;
class AVFCameraFocusControl;
+class AVFCameraExposureControl;
class AVFCameraService : public QMediaService
{
@@ -72,6 +73,7 @@ public:
AVFMediaRecorderControl *recorderControl() const { return m_recorderControl; }
AVFImageCaptureControl *imageCaptureControl() const { return m_imageCaptureControl; }
AVFCameraFocusControl *cameraFocusControl() const { return m_cameraFocusControl; }
+ AVFCameraExposureControl *cameraExposureControl() const {return m_cameraExposureControl; }
private:
AVFCameraSession *m_session;
@@ -84,6 +86,7 @@ private:
AVFMediaRecorderControl *m_recorderControl;
AVFImageCaptureControl *m_imageCaptureControl;
AVFCameraFocusControl *m_cameraFocusControl;
+ AVFCameraExposureControl *m_cameraExposureControl;
};
QT_END_NAMESPACE