summaryrefslogtreecommitdiffstats
path: root/src/plugins/android/src/mediacapture/qandroidcaptureservice.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/android/src/mediacapture/qandroidcaptureservice.cpp')
-rw-r--r--src/plugins/android/src/mediacapture/qandroidcaptureservice.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/plugins/android/src/mediacapture/qandroidcaptureservice.cpp b/src/plugins/android/src/mediacapture/qandroidcaptureservice.cpp
index ceda6fd3b..8badb46de 100644
--- a/src/plugins/android/src/mediacapture/qandroidcaptureservice.cpp
+++ b/src/plugins/android/src/mediacapture/qandroidcaptureservice.cpp
@@ -49,7 +49,6 @@
#include "qandroidcameravideorenderercontrol.h"
#include "qandroidcameraexposurecontrol.h"
#include "qandroidcamerafocuscontrol.h"
-#include "qandroidviewfindersettingscontrol.h"
#include "qandroidcameraimageprocessingcontrol.h"
#include "qandroidimageencodercontrol.h"
#include "qandroidcameraimagecapturecontrol.h"
@@ -74,7 +73,6 @@ QAndroidCaptureService::QAndroidCaptureService(const QString &service, QObject *
m_videoInputControl = new QAndroidVideoDeviceSelectorControl(m_cameraSession);
m_cameraExposureControl = new QAndroidCameraExposureControl(m_cameraSession);
m_cameraFocusControl = new QAndroidCameraFocusControl(m_cameraSession);
- m_viewfinderSettingsControl = new QAndroidViewfinderSettingsControl(m_cameraSession);
m_cameraImageProcessingControl = new QAndroidCameraImageProcessingControl(m_cameraSession);
m_imageEncoderControl = new QAndroidImageEncoderControl(m_cameraSession);
m_imageCaptureControl = new QAndroidCameraImageCaptureControl(m_cameraSession);
@@ -86,7 +84,6 @@ QAndroidCaptureService::QAndroidCaptureService(const QString &service, QObject *
m_videoInputControl = 0;
m_cameraExposureControl = 0;
m_cameraFocusControl = 0;
- m_viewfinderSettingsControl = 0;
m_cameraImageProcessingControl = 0;
m_imageEncoderControl = 0;
m_imageCaptureControl = 0;
@@ -120,7 +117,6 @@ QAndroidCaptureService::~QAndroidCaptureService()
delete m_videoRendererControl;
delete m_cameraExposureControl;
delete m_cameraFocusControl;
- delete m_viewfinderSettingsControl;
delete m_cameraImageProcessingControl;
delete m_imageEncoderControl;
delete m_imageCaptureControl;
@@ -157,9 +153,6 @@ QObject *QAndroidCaptureService::requestControl(const char *name)
if (qstrcmp(name, QCameraFocusControl_iid) == 0)
return m_cameraFocusControl;
- if (qstrcmp(name, QCameraViewfinderSettingsControl_iid) == 0)
- return m_viewfinderSettingsControl;
-
if (qstrcmp(name, QCameraImageProcessingControl_iid) == 0)
return m_cameraImageProcessingControl;