summaryrefslogtreecommitdiffstats
path: root/tests/auto/unit/mockbackend/mockmediarecorderservice.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2021-02-08 16:54:55 +0100
committerLars Knoll <lars.knoll@qt.io>2021-02-12 07:55:20 +0000
commit35725159cc193e1650c79f72dd08219de1a62fe8 (patch)
tree8b3c2d8deddef44686303bb878e6ce4416ea28a8 /tests/auto/unit/mockbackend/mockmediarecorderservice.h
parentf62e7ba660b7214d609df30fe739e612584c1f32 (diff)
Get rid of QImageEncoderControl
Fold the settings into QImageCaptureControl. Change-Id: I9cf981dfa956b769167791bc830bbe1569004367 Reviewed-by: Doris Verria <doris.verria@qt.io> Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'tests/auto/unit/mockbackend/mockmediarecorderservice.h')
-rw-r--r--tests/auto/unit/mockbackend/mockmediarecorderservice.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/auto/unit/mockbackend/mockmediarecorderservice.h b/tests/auto/unit/mockbackend/mockmediarecorderservice.h
index 803b7bab0..d061aae37 100644
--- a/tests/auto/unit/mockbackend/mockmediarecorderservice.h
+++ b/tests/auto/unit/mockbackend/mockmediarecorderservice.h
@@ -37,7 +37,6 @@
#include "mockcameraimageprocessingcontrol.h"
#include "mockcameraimagecapturecontrol.h"
#include "mockcameraexposurecontrol.h"
-#include "mockimageencodercontrol.h"
#include "mockcameracontrol.h"
#include "mockvideorenderercontrol.h"
#include "mockvideowindowcontrol.h"
@@ -57,7 +56,6 @@ public:
mockFocusControl = new MockCameraFocusControl(this);
mockCaptureControl = new MockCaptureControl(mockCameraControl, this);
mockImageProcessingControl = new MockImageProcessingControl(this);
- mockImageEncoderControl = new MockImageEncoderControl(this);
rendererControl = new MockVideoRendererControl(this);
windowControl = new MockVideoWindowControl(this);
rendererRef = 0;
@@ -88,8 +86,6 @@ public:
return mockCaptureControl;
if (qstrcmp(name, QCameraImageProcessingControl_iid) == 0)
return mockImageProcessingControl;
- if (qstrcmp(name, QImageEncoderControl_iid) == 0)
- return mockImageEncoderControl;
if (qstrcmp(name, QVideoRendererControl_iid) == 0) {
if (rendererRef == 0) {
@@ -122,7 +118,6 @@ public:
MockCameraExposureControl *mockExposureControl;
MockCameraFocusControl *mockFocusControl;
MockImageProcessingControl *mockImageProcessingControl;
- MockImageEncoderControl *mockImageEncoderControl;
MockVideoRendererControl *rendererControl;
MockVideoWindowControl *windowControl;
int rendererRef;