summaryrefslogtreecommitdiffstats
path: root/src/plugins/multimedia/qnx/camera/qqnxcamera.cpp
blob: 35008be4558415209e7827e95026ee6fd1bc363e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
/****************************************************************************
**
** Copyright (C) 2016 Research In Motion
** Contact: https://www.qt.io/licensing/
**
** This file is part of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 3 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL3 included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 3 requirements
** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 2.0 or (at your option) the GNU General
** Public license version 3 or any later version approved by the KDE Free
** Qt Foundation. The licenses are as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-2.0.html and
** https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include "qqnxcamera_p.h"
#include "qqnxcameraframebuffer_p.h"
#include "qqnxmediacapturesession_p.h"
#include "qqnxvideosink_p.h"

#include <qcameradevice.h>
#include <qmediadevices.h>

#include <private/qmediastoragelocation_p.h>

static constexpr camera_focusmode_t qnxFocusMode(QCamera::FocusMode mode)
{
    switch (mode) {
    default:
    case QCamera::FocusModeAuto:
    case QCamera::FocusModeAutoFar:
    case QCamera::FocusModeInfinity:
        return CAMERA_FOCUSMODE_CONTINUOUS_AUTO;
    case QCamera::FocusModeAutoNear:
        return CAMERA_FOCUSMODE_CONTINUOUS_MACRO;
    case QCamera::FocusModeHyperfocal:
        return CAMERA_FOCUSMODE_EDOF;
    case QCamera::FocusModeManual:
        return CAMERA_FOCUSMODE_MANUAL;
    }
}

static QString statusToString(camera_devstatus_t status)
{
    switch (status) {
    case CAMERA_STATUS_DISCONNECTED:
        return QStringLiteral("No user is connected to the camera");
    case CAMERA_STATUS_POWERDOWN:
        return QStringLiteral("Power down");
    case CAMERA_STATUS_VIDEOVF:
        return QStringLiteral("The video viewfinder has started");
    case CAMERA_STATUS_CAPTURE_ABORTED:
        return QStringLiteral("The capture of a still image failed and was aborted");
    case CAMERA_STATUS_FILESIZE_WARNING:
        return QStringLiteral("Time-remaining threshold has been exceeded");
    case CAMERA_STATUS_FOCUS_CHANGE:
        return QStringLiteral("The focus has changed on the camera");
    case CAMERA_STATUS_RESOURCENOTAVAIL:
        return QStringLiteral("The camera is about to free resources");
    case CAMERA_STATUS_VIEWFINDER_ERROR:
        return QStringLiteral(" An unexpected error was encountered while the "
                "viewfinder was active");
    case CAMERA_STATUS_MM_ERROR:
        return QStringLiteral("The recording has stopped due to a memory error or multimedia "
                "framework error");
    case CAMERA_STATUS_FILESIZE_ERROR:
        return QStringLiteral("A file has exceeded the maximum size.");
    case CAMERA_STATUS_NOSPACE_ERROR:
        return QStringLiteral("Not enough disk space");
    case CAMERA_STATUS_BUFFER_UNDERFLOW:
        return QStringLiteral("The viewfinder is out of buffers");
    default:
        break;
    }

    return {};
}

QT_BEGIN_NAMESPACE

QQnxCamera::QQnxCamera(QCamera *parent)
    : QPlatformCamera(parent)
{
    setCamera(QMediaDevices::defaultVideoInput());
}

QQnxCamera::~QQnxCamera()
{
    stop();
}

bool QQnxCamera::isActive() const
{
    return m_handle.isOpen() && m_viewfinderActive;
}

void QQnxCamera::setActive(bool active)
{
    if (active)
        start();
    else
        stop();
}

void QQnxCamera::start()
{
    if (isActive())
        return;

    updateCameraFeatures();

    if (camera_set_vf_property(m_handle.get(), CAMERA_IMGPROP_CREATEWINDOW, 0,
                CAMERA_IMGPROP_RENDERTOWINDOW, 0) != CAMERA_EOK) {
        qWarning("QQnxCamera: failed to set camera properties");
        return;
    }

    constexpr camera_vfmode_t mode = CAMERA_VFMODE_DEFAULT;

    if (!supportedVfModes().contains(mode)) {
        qWarning("QQnxCamera: unsupported viewfinder mode");
        return;
    }

    if (camera_set_vf_mode(m_handle.get(), mode) != CAMERA_EOK) {
        qWarning("QQnxCamera: unable to configure viewfinder mode");
        return;
    }

    if (camera_start_viewfinder(m_handle.get(), viewfinderCallback,
                statusCallback, this) != CAMERA_EOK) {
        qWarning("QQnxCamera: unable to start viewfinder");
        return;
    }

    m_viewfinderActive = true;

    if (m_session)
        m_videoSink = m_session->videoSink();

    if (isVideoEncodingSupported() && m_outputUrl.isValid())
        startVideoRecording();
}

void QQnxCamera::stop()
{
    if (!isActive())
        return;

    if (m_recordingVideo)
        stopVideoRecording();

    if (camera_stop_viewfinder(m_handle.get()) != CAMERA_EOK)
        qWarning("QQnxCamera: Failed to stop camera");

    m_viewfinderActive = false;

    m_videoSink = nullptr;
}

void QQnxCamera::setCamera(const QCameraDevice &camera)
{
    if (m_camera == camera)
        return;

    stop();

    m_handle = {};

    m_camera = camera;
    m_cameraUnit = camera_unit_t(camera.id().toUInt());

    if (!m_handle.open(m_cameraUnit, CAMERA_MODE_RO|CAMERA_MODE_PWRITE))
        qWarning("QQnxCamera: Failed to open camera (0x%x)", m_handle.lastError());
}

bool QQnxCamera::setCameraFormat(const QCameraFormat &format)
{
    if (!m_handle.isOpen())
        return false;

    const camera_error_t error = camera_set_vf_property(m_handle.get(),
            CAMERA_IMGPROP_WIDTH, format.resolution().width(),
            CAMERA_IMGPROP_HEIGHT, format.resolution().height(),
            CAMERA_IMGPROP_FRAMERATE, format.maxFrameRate());

    if (error != CAMERA_EOK) {
        qWarning("QQnxCamera: failed to set camera format");
        return false;
    }

    return true;
}

void QQnxCamera::setCaptureSession(QPlatformMediaCaptureSession *session)
{
    if (m_session == session)
        return;
    m_session = static_cast<QQnxMediaCaptureSession *>(session);
}

bool QQnxCamera::isFocusModeSupported(QCamera::FocusMode mode) const
{
    return supportedFocusModes().contains(::qnxFocusMode(mode));
}

void QQnxCamera::setFocusMode(QCamera::FocusMode mode)
{
    if (!isActive())
        return;

    const camera_error_t result = camera_set_focus_mode(m_handle.get(), ::qnxFocusMode(mode));

    if (result != CAMERA_EOK) {
        qWarning("QQnxCamera: Unable to set focus mode (0x%x)", result);
        return;
    }

    focusModeChanged(mode);
}

void QQnxCamera::setCustomFocusPoint(const QPointF &point)
{
    // get the size of the viewfinder
    int width = 0;
    int height = 0;
    auto result = camera_get_vf_property(m_handle.get(),
                                        CAMERA_IMGPROP_WIDTH, width,
                                        CAMERA_IMGPROP_HEIGHT, height);
    if (result != CAMERA_EOK)
        return;

    // define a 40x40 pixel focus region around the custom focus point
    camera_region_t focusRegion;
    focusRegion.left = qMax(0, static_cast<int>(point.x() * width) - 20);
    focusRegion.top = qMax(0, static_cast<int>(point.y() * height) - 20);
    focusRegion.width = 40;
    focusRegion.height = 40;

    result = camera_set_focus_regions(m_handle.get(), 1, &focusRegion);
    if (result != CAMERA_EOK) {
        qWarning("QQnxCamera: Unable to set focus region (0x%x)", result);
        return;
    }
    auto qnxMode = ::qnxFocusMode(focusMode());
    result = camera_set_focus_mode(m_handle.get(), qnxMode);
    if (result != CAMERA_EOK) {
        qWarning("QQnxCamera: Unable to set focus region (0x%x)", result);
        return;
    }
    customFocusPointChanged(point);
}

void QQnxCamera::setFocusDistance(float distance)
{
    if (!isActive() || !isFocusModeSupported(QCamera::FocusModeManual))
        return;

    const int maxDistance = maxFocusDistance();

    if (maxDistance < 0)
        return;

    const int qnxDistance = maxDistance * std::min(distance, 1.0f);

    if (camera_set_manual_focus_step(m_handle.get(), qnxDistance) != CAMERA_EOK)
        qWarning("QQnxCamera: Failed to set focus distance");
}

int QQnxCamera::maxFocusDistance() const
{
    if (!isActive() || !isFocusModeSupported(QCamera::FocusModeManual))
        return -1;

    int maxstep;
    int step;

    if (camera_get_manual_focus_step(m_handle.get(), &maxstep, &step) != CAMERA_EOK) {
        qWarning("QQnxCamera: Unable to query camera focus step");
        return -1;
    }

    return maxstep;
}

void QQnxCamera::zoomTo(float factor, float)
{
    if (!isActive())
        return;

    if (maxZoom <= minZoom)
        return;
    // QNX has an integer based API. Interpolate between the levels according to the factor we get
    const float max = maxZoomFactor();
    const float min = minZoomFactor();
    if (max <= min)
        return;
    factor = qBound(min, factor, max) - min;
    uint zoom = minZoom + (uint)qRound(factor*(maxZoom - minZoom)/(max - min));

    auto error = camera_set_vf_property(m_handle.get(), CAMERA_IMGPROP_ZOOMFACTOR, zoom);
    if (error == CAMERA_EOK)
        zoomFactorChanged(factor);
}

void QQnxCamera::setExposureCompensation(float ev)
{
    if (!isActive())
        return;

    if (camera_set_ev_offset(m_handle.get(), ev) != CAMERA_EOK)
        qWarning("QQnxCamera: Failed to setup exposure compensation");
}

int QQnxCamera::isoSensitivity() const
{
    if (!isActive())
        return 0;

    unsigned int isoValue;

    if (camera_get_manual_iso(m_handle.get(), &isoValue) != CAMERA_EOK) {
        qWarning("QQnxCamera: Failed to query ISO value");
        return 0;
    }

    return isoValue;
}

void QQnxCamera::setManualIsoSensitivity(int value)
{
    if (!isActive())
        return;

    const unsigned int isoValue = std::max(0, value);

    if (camera_set_manual_iso(m_handle.get(), isoValue) != CAMERA_EOK)
        qWarning("QQnxCamera: Failed to set ISO value");
}

void QQnxCamera::setManualExposureTime(float seconds)
{
    if (!isActive())
        return;

    if (camera_set_manual_shutter_speed(m_handle.get(), seconds) != CAMERA_EOK)
        qWarning("QQnxCamera: Failed to set exposure time");
}

float QQnxCamera::exposureTime() const
{
    if (!isActive())
        return 0;

    double shutterSpeed;

    if (camera_get_manual_shutter_speed(m_handle.get(), &shutterSpeed) != CAMERA_EOK) {
        qWarning("QQnxCamera: Failed to get exposure time");
        return 0;
    }

    return static_cast<float>(shutterSpeed);
}

bool QQnxCamera::isWhiteBalanceModeSupported(QCamera::WhiteBalanceMode mode) const
{
    if (!whiteBalanceModesChecked) {
        whiteBalanceModesChecked = true;
        unsigned numWhiteBalanceValues = 0;
        auto error = camera_get_supported_manual_white_balance_values(m_handle.get(), 0, &numWhiteBalanceValues,
                                                                      nullptr, &continuousColorTemperatureSupported);
        if (error == CAMERA_EOK) {
            manualColorTemperatureValues.resize(numWhiteBalanceValues);
            auto error = camera_get_supported_manual_white_balance_values(m_handle.get(), numWhiteBalanceValues, &numWhiteBalanceValues,
                                                                          manualColorTemperatureValues.data(),
                                                                          &continuousColorTemperatureSupported);

            minColorTemperature = 1024*1014; // large enough :)
            for (int temp : qAsConst(manualColorTemperatureValues)) {
                minColorTemperature = qMin(minColorTemperature, temp);
                maxColorTemperature = qMax(maxColorTemperature, temp);
            }
        } else {
            maxColorTemperature = 0;
        }
    }

    if (maxColorTemperature != 0)
        return true;
    return mode == QCamera::WhiteBalanceAuto;
}

void QQnxCamera::setWhiteBalanceMode(QCamera::WhiteBalanceMode mode)
{
    if (mode == QCamera::WhiteBalanceAuto) {
        camera_set_whitebalance_mode(m_handle.get(), CAMERA_WHITEBALANCEMODE_AUTO);
        return;
    }
    camera_set_whitebalance_mode(m_handle.get(), CAMERA_WHITEBALANCEMODE_MANUAL);
    setColorTemperature(colorTemperatureForWhiteBalance(mode));
}

void QQnxCamera::setColorTemperature(int temperature)
{

    if (maxColorTemperature == 0)
        return;

    unsigned bestTemp = 0;
    if (!continuousColorTemperatureSupported) {
        // find the closest match
        int delta = 1024*1024;
        for (unsigned temp : qAsConst(manualColorTemperatureValues)) {
            int d = qAbs(int(temp) - temperature);
            if (d < delta) {
                bestTemp = temp;
                delta = d;
            }
        }
    } else {
        bestTemp = (unsigned)qBound(minColorTemperature, temperature, maxColorTemperature);
    }

    auto error = camera_set_manual_white_balance(m_handle.get(), bestTemp);
}

void QQnxCamera::startVideoRecording()
{
    const QString container = m_encoderSettings.mimeType().preferredSuffix();
    const QString location = QMediaStorageLocation::generateFileName(m_outputUrl.toLocalFile(),
            QStandardPaths::MoviesLocation, container);

    if (camera_start_video(m_handle.get(), qPrintable(location),
                nullptr, nullptr, nullptr) != CAMERA_EOK) {
        qWarning("QQnxCamera: failed to start video encoding");
    } else {
        m_recordingVideo = true;
    }
}

void QQnxCamera::stopVideoRecording()
{
    m_recordingVideo = false;

    if (camera_stop_video(m_handle.get()) != CAMERA_EOK)
        qWarning("QQnxCamera: error when stopping video recording");
}

bool QQnxCamera::isVideoEncodingSupported() const
{
    if (!isActive())
        return false;

    return camera_has_feature(m_handle.get(), CAMERA_FEATURE_VIDEO);
}

void QQnxCamera::setOutputUrl(const QUrl &url)
{
    m_outputUrl = url;
}

void QQnxCamera::setMediaEncoderSettings(const QMediaEncoderSettings &settings)
{
    m_encoderSettings = settings;
}

camera_handle_t QQnxCamera::handle() const
{
    return m_handle.get();
}

void QQnxCamera::updateCameraFeatures()
{
    whiteBalanceModesChecked = false;

    bool smooth;
    const camera_error_t error = camera_get_zoom_limits(m_handle.get(),
            &minZoom, &maxZoom, &smooth);

    if (error == CAMERA_EOK) {
        double level;
        camera_get_zoom_ratio_from_zoom_level(m_handle.get(), minZoom, &level);
        minimumZoomFactorChanged(level);
        camera_get_zoom_ratio_from_zoom_level(m_handle.get(), maxZoom, &level);
        maximumZoomFactorChanged(level);
    } else {
        minZoom = maxZoom = 1;
    }

    QCamera::Features features = {};

    if (camera_has_feature(m_handle.get(), CAMERA_FEATURE_REGIONFOCUS))
        features |= QCamera::Feature::CustomFocusPoint;

    minimumZoomFactorChanged(minZoom);
    maximumZoomFactorChanged(maxZoom);
    supportedFeaturesChanged(features);
}

QList<camera_vfmode_t> QQnxCamera::supportedVfModes() const
{
    return queryValues(camera_get_supported_vf_modes);
}

QList<camera_res_t> QQnxCamera::supportedVfResolutions() const
{
    return queryValues(camera_get_supported_vf_resolutions);
}

QList<camera_focusmode_t> QQnxCamera::supportedFocusModes() const
{
    return queryValues(camera_get_focus_modes);
}

template <typename T, typename U>
QList<T> QQnxCamera::queryValues(QueryFuncPtr<T,U> func) const
{
    static_assert(std::is_integral_v<U>, "Parameter U must be of integral type");

    if (!isActive())
        return {};

    U numSupported = 0;

    if (func(m_handle.get(), 0, &numSupported, nullptr) != CAMERA_EOK) {
        qWarning("QQnxCamera: unable to query camera value count");
        return {};
    }

    QList<T> values(numSupported);

    if (func(m_handle.get(), values.size(), &numSupported, values.data()) != CAMERA_EOK) {
        qWarning("QQnxCamera: unable to query camera values");
        return {};
    }

    return values;
}

void QQnxCamera::handleVfBuffer(camera_buffer_t *buffer)
{
    if (!m_videoSink)
        return;

    // process the frame on this thread before locking the mutex
    auto frame = std::make_unique<QQnxCameraFrameBuffer>(buffer);

    // skip a frame if mutex is busy
    if (m_currentFrameMutex.tryLock()) {
        m_currentFrame = std::move(frame);
        m_currentFrameMutex.unlock();

        QMetaObject::invokeMethod(this, "processFrame", Qt::QueuedConnection);
    }

}

void QQnxCamera::handleVfStatus(camera_devstatus_t status, uint16_t extraData)
{
    QMetaObject::invokeMethod(this, "handleStatusChange", Qt::QueuedConnection,
            Q_ARG(camera_devstatus_t, status),
            Q_ARG(uint16_t, extraData));
}

void QQnxCamera::handleStatusChange(camera_devstatus_t status, uint16_t extraData)
{
    Q_UNUSED(extraData);

    switch (status) {
    case CAMERA_STATUS_DISCONNECTED:
    case CAMERA_STATUS_POWERDOWN:
    case CAMERA_STATUS_VIDEOVF:
    case CAMERA_STATUS_CAPTURE_ABORTED:
    case CAMERA_STATUS_FILESIZE_WARNING:
    case CAMERA_STATUS_FOCUS_CHANGE:
    case CAMERA_STATUS_RESOURCENOTAVAIL:
    case CAMERA_STATUS_VIEWFINDER_ERROR:
    case CAMERA_STATUS_MM_ERROR:
    case CAMERA_STATUS_FILESIZE_ERROR:
    case CAMERA_STATUS_NOSPACE_ERROR:
    case CAMERA_STATUS_BUFFER_UNDERFLOW:
        Q_EMIT(status, ::statusToString(status));
        stop();
        break;
    default:
        break;
    }
}

void QQnxCamera::processFrame()
{
    QMutexLocker l(&m_currentFrameMutex);

    const QVideoFrame actualFrame(m_currentFrame.get(),
            QVideoFrameFormat(m_currentFrame->size(), m_currentFrame->pixelFormat()));

    m_videoSink->setVideoFrame(actualFrame);
}

void QQnxCamera::viewfinderCallback(camera_handle_t handle, camera_buffer_t *buffer, void *arg)
{
    Q_UNUSED(handle);

    auto *camera = static_cast<QQnxCamera*>(arg);
    camera->handleVfBuffer(buffer);
}

void QQnxCamera::statusCallback(camera_handle_t handle, camera_devstatus_t status,
        uint16_t extraData, void *arg)
{
    Q_UNUSED(handle);

    auto *camera = static_cast<QQnxCamera*>(arg);
    camera->handleVfStatus(status, extraData);
}

QT_END_NAMESPACE