summaryrefslogtreecommitdiffstats
path: root/src/plugins/multimedia/qnx/camera/qqnxcamera.cpp
blob: b05407b7b173f3e216377d095fe226404089e8bc (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
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
// Copyright (C) 2016 Research In Motion
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#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>

QDebug &operator<<(QDebug &d, const QQnxCamera::VideoFormat &f)
{
    d << "VideoFormat - width=" << f.width
      << "height=" << f.height
      << "rotation=" << f.rotation
      << "frameRate=" << f.frameRate
      << "frameType=" << f.frameType;

    return d;
}

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(camera_unit_t unit, QObject *parent)
    : QObject(parent)
    , m_cameraUnit(unit)
{
    if (!m_handle.open(m_cameraUnit, CAMERA_MODE_RW))
        qWarning("QQnxCamera: Failed to open camera (0x%x)", m_handle.lastError());

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

    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;
    }

    updateZoomLimits();
    updateSupportedWhiteBalanceValues();

    m_valid = true;
}

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

camera_unit_t QQnxCamera::unit() const
{
    return m_cameraUnit;
}

QString QQnxCamera::name() const
{
    char name[CAMERA_LOCATION_NAMELEN];

    if (camera_get_location_property(m_cameraUnit,
                CAMERA_LOCATION_NAME, &name, CAMERA_LOCATION_END) != CAMERA_EOK) {
        qWarning("QQnxCamera: unable to obtain camera name");
        return {};
    }

    return QString::fromUtf8(name);
}

bool QQnxCamera::isValid() const
{
    return m_valid;
}

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

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

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

    m_viewfinderActive = true;
}

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;
}

bool QQnxCamera::setCameraFormat(uint32_t width, uint32_t height, double frameRate)
{
    if (!m_handle.isOpen())
        return false;

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

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

    return true;
}

bool QQnxCamera::isFocusModeSupported(camera_focusmode_t mode) const
{
    return supportedFocusModes().contains(mode);
}

bool QQnxCamera::setFocusMode(camera_focusmode_t mode)
{
    if (!isActive())
        return false;

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

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

    focusModeChanged(mode);

    return true;
}

camera_focusmode_t QQnxCamera::focusMode() const
{
    if (!isActive())
        return CAMERA_FOCUSMODE_OFF;

    camera_focusmode_t mode;

    const camera_error_t result = camera_get_focus_mode(m_handle.get(), &mode);

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

    return mode;
}

QQnxCamera::VideoFormat QQnxCamera::vfFormat() const
{
    VideoFormat f = {};

    if (camera_get_vf_property(m_handle.get(),
            CAMERA_IMGPROP_WIDTH, &f.width,
            CAMERA_IMGPROP_HEIGHT, &f.height,
            CAMERA_IMGPROP_ROTATION, &f.rotation,
            CAMERA_IMGPROP_FRAMERATE, &f.frameRate,
            CAMERA_IMGPROP_FORMAT, &f.frameType) != CAMERA_EOK) {
        qWarning("QQnxCamera: Failed to query video finder frameType");
    }

    return f;
}

void QQnxCamera::setVfFormat(const VideoFormat &f)
{
    const bool active = isActive();

    if (active)
        stop();

    if (camera_set_vf_property(m_handle.get(),
            CAMERA_IMGPROP_WIDTH, f.width,
            CAMERA_IMGPROP_HEIGHT, f.height,
            CAMERA_IMGPROP_ROTATION, f.rotation,
            CAMERA_IMGPROP_FRAMERATE, f.frameRate,
            CAMERA_IMGPROP_FORMAT, f.frameType) != CAMERA_EOK) {
        qWarning("QQnxCamera: Failed to set video finder frameType");
    }

    if (active)
        start();
}

QQnxCamera::VideoFormat QQnxCamera::recordingFormat() const
{
    VideoFormat f = {};

    if (camera_get_video_property(m_handle.get(),
            CAMERA_IMGPROP_WIDTH, &f.width,
            CAMERA_IMGPROP_HEIGHT, &f.height,
            CAMERA_IMGPROP_ROTATION, &f.rotation,
            CAMERA_IMGPROP_FRAMERATE, &f.frameRate,
            CAMERA_IMGPROP_FORMAT, &f.frameType) != CAMERA_EOK) {
        qWarning("QQnxCamera: Failed to query recording frameType");
    }

    return f;
}

void QQnxCamera::setRecordingFormat(const VideoFormat &f)
{
    if (camera_set_video_property(m_handle.get(),
            CAMERA_IMGPROP_WIDTH, f.width,
            CAMERA_IMGPROP_HEIGHT, f.height,
            CAMERA_IMGPROP_ROTATION, f.rotation,
            CAMERA_IMGPROP_FRAMERATE, f.frameRate,
            CAMERA_IMGPROP_FORMAT, f.frameType) != CAMERA_EOK) {
        qWarning("QQnxCamera: Failed to set recording frameType");
    }
}

void QQnxCamera::setCustomFocusPoint(const QPointF &point)
{
    const QSize vfSize = viewFinderSize();

    if (vfSize.isEmpty())
        return;

    const auto toUint32 = [](double value) {
        return static_cast<uint32_t>(std::max(0.0, value));
    };

    // define a 40x40 pixel focus region around the custom focus point
    constexpr int pixelSize = 40;

    const auto left = toUint32(point.x() * vfSize.width() - pixelSize / 2);
    const auto top = toUint32(point.y() * vfSize.height() - pixelSize / 2);

    camera_region_t focusRegion {
        .left = left,
        .top = top,
        .width = pixelSize,
        .height = pixelSize,
        .extra = 0
    };

    if (camera_set_focus_regions(m_handle.get(), 1, &focusRegion) != CAMERA_EOK) {
        qWarning("QQnxCamera: Unable to set focus region");
        return;
    }

    if (setFocusMode(focusMode()))
        customFocusPointChanged(point);
}

void QQnxCamera::setManualFocusStep(int step)
{
    if (!isActive()) {
        qWarning("QQnxCamera: Failed to set focus distance - view finder not active");
        return;
    }

    if (!isFocusModeSupported(CAMERA_FOCUSMODE_MANUAL)) {
        qWarning("QQnxCamera: Failed to set focus distance - manual focus mode not supported");
        return;
    }

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

int QQnxCamera::manualFocusStep() const
{
    return focusStep().step;
}

int QQnxCamera::maxFocusStep() const
{
    return focusStep().maxStep;
}

QQnxCamera::FocusStep QQnxCamera::focusStep() const
{
    constexpr FocusStep invalidStep { -1, -1 };

    if (!isActive()) {
        qWarning("QQnxCamera: Failed to query max focus distance - view finder not active");
        return invalidStep;
    }

    if (!isFocusModeSupported(CAMERA_FOCUSMODE_MANUAL)) {
        qWarning("QQnxCamera: Failed to query max focus distance - "
                "manual focus mode not supported");
        return invalidStep;
    }

    FocusStep focusStep;

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

    return focusStep;
}


QSize QQnxCamera::viewFinderSize() const
{
    // get the size of the viewfinder
    int width = 0;
    int height = 0;

    if (camera_get_vf_property(m_handle.get(),
            CAMERA_IMGPROP_WIDTH, width,
            CAMERA_IMGPROP_HEIGHT, height) != CAMERA_EOK) {
        qWarning("QQnxCamera: failed to query view finder size");
        return {};
    }

    return { width, height };
}

uint32_t QQnxCamera::minimumZoomLevel() const
{
    return m_minZoom;
}

uint32_t QQnxCamera::maximumZoomLevel() const
{
    return m_maxZoom;
}

bool QQnxCamera::isSmoothZoom() const
{
    return m_smoothZoom;
}

double QQnxCamera::zoomRatio(uint32_t zoomLevel) const
{
    double ratio;

    if (camera_get_zoom_ratio_from_zoom_level(m_handle.get(), zoomLevel, &ratio) != CAMERA_EOK) {
        qWarning("QQnxCamera: failed to query zoom ratio from zoom level");
        return 0.0;
    }

    return ratio;
}

bool QQnxCamera::setZoomFactor(uint32_t factor)
{
    if (camera_set_vf_property(m_handle.get(), CAMERA_IMGPROP_ZOOMFACTOR, factor) != CAMERA_EOK) {
        qWarning("QQnxCamera: failed to set zoom factor");
        return false;
    }

    return true;
}

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

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

uint32_t QQnxCamera::manualIsoSensitivity() const
{
    if (!isActive())
        return 0;

    uint32_t 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(uint32_t value)
{
    if (!isActive())
        return;

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

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

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

double QQnxCamera::manualExposureTime() const
{
    if (!isActive())
        return 0.0;

    double shutterSpeed;

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

    return shutterSpeed;
}

bool QQnxCamera::hasFeature(camera_feature_t feature) const
{
    return camera_has_feature(m_handle.get(), feature);
}

void QQnxCamera::setWhiteBalanceMode(camera_whitebalancemode_t mode)
{
    if (!isActive())
        return;

    if (camera_set_whitebalance_mode(m_handle.get(), mode) != CAMERA_EOK)
        qWarning("QQnxCamera: failed to set whitebalance mode");
}

camera_whitebalancemode_t QQnxCamera::whiteBalanceMode() const
{
    if (!isActive())
        return CAMERA_WHITEBALANCEMODE_OFF;

    camera_whitebalancemode_t mode;

    if (camera_get_whitebalance_mode(m_handle.get(), &mode) != CAMERA_EOK) {
        qWarning("QQnxCamera: failed to get white balance mode");
        return CAMERA_WHITEBALANCEMODE_OFF;
    }

    return mode;
}

void QQnxCamera::setManualWhiteBalance(uint32_t value)
{
    if (!isActive())
        return;

    if (camera_set_manual_white_balance(m_handle.get(), value) != CAMERA_EOK)
        qWarning("QQnxCamera: failed to set manual white balance");
}

uint32_t QQnxCamera::manualWhiteBalance() const
{
    if (!isActive())
        return 0;

    uint32_t value;

    if (camera_get_manual_white_balance(m_handle.get(), &value) != CAMERA_EOK) {
        qWarning("QQnxCamera: failed to get manual white balance");
        return 0;
    }

    return value;
}

bool QQnxCamera::startVideoRecording(const QString &filename)
{
    // when preview is video, we must ensure that the recording properties
    // match the view finder properties
    if (hasFeature(CAMERA_FEATURE_PREVIEWISVIDEO)) {
        VideoFormat newFormat = vfFormat();

        const QList<camera_frametype_t> recordingTypes = supportedRecordingFrameTypes();

        // find a suitable matching frame type in case the current view finder
        // frametype is not supported
        if (newFormat.frameType != recordingFormat().frameType
                && !recordingTypes.contains(newFormat.frameType)) {

            bool found = false;

            for (const camera_frametype_t type : supportedVfFrameTypes()) {
                if (recordingTypes.contains(type)) {
                    newFormat.frameType = type;
                    found = true;
                    break;
                }
            }

            if (found) {
                m_originalVfFormat = vfFormat();

                // reconfigure and restart the view finder
                setVfFormat(newFormat);
            } else {
                qWarning("QQnxCamera: failed to find suitable frame type for recording - aborting");
                return false;
            }
        }

        setRecordingFormat(newFormat);
    }

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

    return m_recordingVideo;
}

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

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

    // restore original vf format
    if (m_originalVfFormat) {
        setVfFormat(*m_originalVfFormat);
        m_originalVfFormat.reset();
    }
}

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

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

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

void QQnxCamera::updateZoomLimits()
{
    bool smooth;

    if (camera_get_zoom_limits(m_handle.get(), &m_minZoom, &m_maxZoom, &smooth) != CAMERA_EOK) {
        qWarning("QQnxCamera: failed to update zoom limits - using default values");
        m_minZoom = m_maxZoom = 0;
    }
}

void QQnxCamera::updateSupportedWhiteBalanceValues()
{
    uint32_t numSupported = 0;

    const camera_error_t result = camera_get_supported_manual_white_balance_values(
            m_handle.get(), 0, &numSupported, nullptr, &m_continuousWhiteBalanceValues);

    if (result != CAMERA_EOK) {
        if (result == CAMERA_EOPNOTSUPP)
            qWarning("QQnxCamera: white balance not supported");
        else
            qWarning("QQnxCamera: unable to query manual white balance value count");

        m_supportedWhiteBalanceValues.clear();

        return;
    }

    m_supportedWhiteBalanceValues.resize(numSupported);

    if (camera_get_supported_manual_white_balance_values(m_handle.get(),
                m_supportedWhiteBalanceValues.size(),
                &numSupported,
                m_supportedWhiteBalanceValues.data(),
                &m_continuousWhiteBalanceValues) != CAMERA_EOK) {
        qWarning("QQnxCamera: unable to query manual white balance values");

        m_supportedWhiteBalanceValues.clear();
    }
}

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_frametype_t> QQnxCamera::supportedVfFrameTypes() const
{
    return queryValues(camera_get_supported_vf_frame_types);
}

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

QList<double> QQnxCamera::specifiedVfFrameRates(camera_frametype_t frameType,
        camera_res_t resolution) const
{
    uint32_t numSupported = 0;

    if (camera_get_specified_vf_framerates(m_handle.get(), frameType, resolution,
                0, &numSupported, nullptr, nullptr) != CAMERA_EOK) {
        qWarning("QQnxCamera: unable to query specified framerates count");
        return {};
    }

    QList<double> values(numSupported);

    if (camera_get_specified_vf_framerates(m_handle.get(), frameType, resolution,
                values.size(), &numSupported, values.data(), nullptr) != CAMERA_EOK) {
        qWarning("QQnxCamera: unable to query specified framerates values");
        return {};
    }

    return values;
}

QList<camera_frametype_t> QQnxCamera::supportedRecordingFrameTypes() const
{
    return queryValues(camera_get_video_frame_types);
}

QList<uint32_t> QQnxCamera::supportedWhiteBalanceValues() const
{
    return m_supportedWhiteBalanceValues;
}

bool QQnxCamera::hasContinuousWhiteBalanceValues() const
{
    return m_continuousWhiteBalanceValues;
}

QList<camera_unit_t> QQnxCamera::supportedUnits()
{
    unsigned int numSupported = 0;

    if (camera_get_supported_cameras(0, &numSupported, nullptr) != CAMERA_EOK) {
        qWarning("QQnxCamera: failed to query supported camera unit count");
        return {};
    }

    QList<camera_unit_t> cameraUnits(numSupported);

    if (camera_get_supported_cameras(cameraUnits.size(), &numSupported,
                cameraUnits.data()) != CAMERA_EOK) {
        qWarning("QQnxCamera: failed to enumerate supported camera units");
        return {};
    }

    return cameraUnits;
}

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");

    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)
{
    // 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();

        Q_EMIT frameAvailable();
    }
}

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_BUFFER_UNDERFLOW:
    case CAMERA_STATUS_CAPTURECOMPLETE:
    case CAMERA_STATUS_CAPTURE_ABORTED:
    case CAMERA_STATUS_CONNECTED:
    case CAMERA_STATUS_DISCONNECTED:
    case CAMERA_STATUS_FILESIZE_ERROR:
    case CAMERA_STATUS_FILESIZE_LIMIT_WARNING:
    case CAMERA_STATUS_FILESIZE_WARNING:
    case CAMERA_STATUS_FLASH_LEVEL_CHANGE:
    case CAMERA_STATUS_FOCUS_CHANGE:
    case CAMERA_STATUS_FRAME_DROPPED:
    case CAMERA_STATUS_LOWLIGHT:
    case CAMERA_STATUS_MM_ERROR:
    case CAMERA_STATUS_NOSPACE_ERROR:
    case CAMERA_STATUS_PHOTOVF:
    case CAMERA_STATUS_POWERDOWN:
    case CAMERA_STATUS_POWERUP:
    case CAMERA_STATUS_RESOURCENOTAVAIL:
    case CAMERA_STATUS_UNKNOWN:
    case CAMERA_STATUS_VIDEOLIGHT_CHANGE:
    case CAMERA_STATUS_VIDEOLIGHT_LEVEL_CHANGE:
    case CAMERA_STATUS_VIDEOVF:
    case CAMERA_STATUS_VIDEO_PAUSE:
    case CAMERA_STATUS_VIDEO_RESUME:
    case CAMERA_STATUS_VIEWFINDER_ACTIVE:
    case CAMERA_STATUS_VIEWFINDER_ERROR:
    case CAMERA_STATUS_VIEWFINDER_FREEZE:
    case CAMERA_STATUS_VIEWFINDER_SUSPEND:
    case CAMERA_STATUS_VIEWFINDER_UNFREEZE:
    case CAMERA_STATUS_VIEWFINDER_UNSUSPEND:
        qDebug() << "QQnxCamera:" << ::statusToString(status);
        break;
    }
}

std::unique_ptr<QQnxCameraFrameBuffer> QQnxCamera::takeCurrentFrame()
{
    QMutexLocker l(&m_currentFrameMutex);

    return std::move(m_currentFrame);
}

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