QT_BEGIN_NAMESPACE QAndroidCaptureSession::QAndroidCaptureSession(QAndroidCameraSession *cameraSession) : QObject() , m_mediaRecorder(0) , m_cameraSession(cameraSession) , m_audioSource(AndroidMediaRecorder::DefaultAudioSource) , m_duration(0) , m_state(QMediaRecorder::StoppedState) , m_status(QMediaRecorder::UnloadedStatus) , m_resolutionDirty(false) , m_containerFormatDirty(true) , m_videoSettingsDirty(true) , m_audioSettingsDirty(true) , m_outputFormat(AndroidMediaRecorder::DefaultOutputFormat) , m_audioEncoder(AndroidMediaRecorder::DefaultAudioEncoder) , m_videoEncoder(AndroidMediaRecorder::DefaultVideoEncoder) { m_mediaStorageLocation.addStorageLocation( QMediaStorageLocation::Movies, AndroidMultimediaUtils::getDefaultMediaDirectory(AndroidMultimediaUtils::DCIM)); m_mediaStorageLocation.addStorageLocation( QMediaStorageLocation::Sounds, AndroidMultimediaUtils::getDefaultMediaDirectory(AndroidMultimediaUtils::Sounds)); connect(this, SIGNAL(stateChanged(QMediaRecorder::State)), this, SLOT(updateStatus())); if (cameraSession) { connect(cameraSession, SIGNAL(opened()), this, SLOT(onCameraOpened())); connect(cameraSession, SIGNAL(statusChanged(QCamera::Status)), this, SLOT(updateStatus())); connect(cameraSession, SIGNAL(captureModeChanged(QCamera::CaptureModes)), this, SLOT(updateStatus())); connect(cameraSession, SIGNAL(readyForCaptureChanged(bool)), this, SLOT(updateStatus())); } else {
QT_BEGIN_NAMESPACE QAndroidCameraImageProcessingControl::QAndroidCameraImageProcessingControl(QAndroidCameraSession *session) : QCameraImageProcessingControl() , m_session(session) { connect(m_session, SIGNAL(opened()), this, SLOT(onCameraOpened())); }
QT_BEGIN_NAMESPACE QAndroidCameraFlashControl::QAndroidCameraFlashControl(QAndroidCameraSession *session) : QCameraFlashControl() , m_session(session) , m_flashMode(QCameraExposure::FlashOff) { connect(m_session, SIGNAL(opened()), this, SLOT(onCameraOpened())); }
QAndroidCameraFocusControl::QAndroidCameraFocusControl(QAndroidCameraSession *session) : QCameraFocusControl() , m_session(session) , m_focusMode(QCameraFocus::AutoFocus) , m_focusPointMode(QCameraFocus::FocusPointAuto) , m_actualFocusPoint(0.5, 0.5) , m_continuousPictureFocusSupported(false) , m_continuousVideoFocusSupported(false) { connect(m_session, SIGNAL(opened()), this, SLOT(onCameraOpened())); connect(m_session, SIGNAL(captureModeChanged(QCamera::CaptureModes)), this, SLOT(onCameraCaptureModeChanged())); }