blob: 067dc5ed30f4edd90e26f6ec32e409de7caad6ad (
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
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Copyright (C) 2019, Google Inc.
*
* libcamera V4L2 Subdevice format handling test
*/
#include <iomanip>
#include <iostream>
#include <vector>
#include <libcamera/geometry.h>
#include "v4l2_subdevice.h"
#include "v4l2_subdevice_test.h"
using namespace std;
using namespace libcamera;
/* List image formats on the "Scaler" subdevice of vimc media device. */
class ListFormatsTest : public V4L2SubdeviceTest
{
protected:
int run() override;
private:
void printFormats(unsigned int pad, unsigned code,
const std::vector<SizeRange> &sizes);
};
void ListFormatsTest::printFormats(unsigned int pad,
unsigned int code,
const std::vector<SizeRange> &sizes)
{
cout << "Enumerate formats on pad " << pad << endl;
for (const SizeRange &size : sizes) {
cout << " mbus code: 0x" << setfill('0') << setw(4)
<< hex << code << endl;
cout << " min width: " << dec << size.min.width << endl;
cout << " min height: " << dec << size.min.height << endl;
cout << " max width: " << dec << size.max.width << endl;
cout << " max height: " << dec << size.max.height << endl;
}
}
int ListFormatsTest::run()
{
/* List all formats available on existing "Scaler" pads. */
ImageFormats formats;
formats = scaler_->formats(0);
if (formats.isEmpty()) {
cerr << "Failed to list formats on pad 0 of subdevice "
<< scaler_->entity()->name() << endl;
return TestFail;
}
for (unsigned int code : formats.formats())
printFormats(0, code, formats.sizes(code));
formats = scaler_->formats(1);
if (formats.isEmpty()) {
cerr << "Failed to list formats on pad 1 of subdevice "
<< scaler_->entity()->name() << endl;
return TestFail;
}
for (unsigned int code : formats.formats())
printFormats(1, code, formats.sizes(code));
/* List format on a non-existing pad, format vector shall be empty. */
formats = scaler_->formats(2);
if (!formats.isEmpty()) {
cerr << "Listing formats on non-existing pad 2 of subdevice "
<< scaler_->entity()->name()
<< " should return an empty format list" << endl;
return TestFail;
}
return TestPass;
}
TEST_REGISTER(ListFormatsTest);
|