Commit 5c8f9a29 authored by VaL Doroshchuk's avatar VaL Doroshchuk
Browse files

AVFoundation: Fix crash when no video capture device


No need to configure anything if there is no video capture device.

Task-number: QTBUG-65740
Change-Id: I8de7dced14b00ab3eba560f395d7e1a4a5de1682
Reviewed-by: default avatarAndy Shaw <andy.shaw@qt.io>
Showing with 5 additions and 1 deletion
......@@ -226,7 +226,8 @@ void AVFImageCaptureControl::cancelCapture()
void AVFImageCaptureControl::updateCaptureConnection()
{
if (m_cameraControl->captureMode().testFlag(QCamera::CaptureStillImage)) {
if (m_session->videoCaptureDevice()
&& m_cameraControl->captureMode().testFlag(QCamera::CaptureStillImage)) {
qDebugCamera() << Q_FUNC_INFO;
AVCaptureSession *captureSession = m_session->captureSession();
......
......@@ -364,6 +364,9 @@ void AVFMediaRecorderControl::handleRecordingFailed(const QString &message)
void AVFMediaRecorderControl::setupSessionForCapture()
{
if (!m_session->videoCaptureDevice())
return;
//adding movie output causes high CPU usage even when while recording is not active,
//connect it only while video capture mode is enabled.
// Similarly, connect the Audio input only in that mode, since it's only necessary
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment