@@ -37,10 +37,10 @@ static inline int display_setup(const struct device *const display_dev, const ui
37
37
38
38
LOG_INF ("- Capabilities:" );
39
39
LOG_INF (" x_resolution = %u, y_resolution = %u, supported_pixel_formats = %u"
40
- " current_pixel_format = %u, current_orientation = %u" ,
41
- capabilities .x_resolution , capabilities .y_resolution ,
42
- capabilities .supported_pixel_formats , capabilities .current_pixel_format ,
43
- capabilities .current_orientation );
40
+ " current_pixel_format = %u, current_orientation = %u" ,
41
+ capabilities .x_resolution , capabilities .y_resolution ,
42
+ capabilities .supported_pixel_formats , capabilities .current_pixel_format ,
43
+ capabilities .current_orientation );
44
44
45
45
/* Set display pixel format to match the one in use by the camera */
46
46
switch (pixfmt ) {
@@ -132,9 +132,9 @@ int main(void)
132
132
const struct video_format_cap * fcap = & caps .format_caps [i ];
133
133
/* fourcc to string */
134
134
LOG_INF (" %s width [%u; %u; %u] height [%u; %u; %u]" ,
135
- VIDEO_FOURCC_TO_STR (fcap -> pixelformat ),
136
- fcap -> width_min , fcap -> width_max , fcap -> width_step ,
137
- fcap -> height_min , fcap -> height_max , fcap -> height_step );
135
+ VIDEO_FOURCC_TO_STR (fcap -> pixelformat ),
136
+ fcap -> width_min , fcap -> width_max , fcap -> width_step ,
137
+ fcap -> height_min , fcap -> height_max , fcap -> height_step );
138
138
i ++ ;
139
139
}
140
140
@@ -168,20 +168,20 @@ int main(void)
168
168
169
169
if (!video_get_frmival (video_dev , & frmival )) {
170
170
LOG_INF ("- Default frame rate : %f fps" ,
171
- 1.0 * frmival .denominator / frmival .numerator );
171
+ 1.0 * frmival .denominator / frmival .numerator );
172
172
}
173
173
174
174
LOG_INF ("- Supported frame intervals for the default format:" );
175
175
memset (& fie , 0 , sizeof (fie ));
176
176
fie .format = & fmt ;
177
177
while (video_enum_frmival (video_dev , & fie ) == 0 ) {
178
178
if (fie .type == VIDEO_FRMIVAL_TYPE_DISCRETE ) {
179
- LOG_INF (" %u/%u " , fie .discrete .numerator , fie .discrete .denominator );
179
+ LOG_INF (" %u/%u" , fie .discrete .numerator , fie .discrete .denominator );
180
180
} else {
181
181
LOG_INF (" [min = %u/%u; max = %u/%u; step = %u/%u]" ,
182
- fie .stepwise .min .numerator , fie .stepwise .min .denominator ,
183
- fie .stepwise .max .numerator , fie .stepwise .max .denominator ,
184
- fie .stepwise .step .numerator , fie .stepwise .step .denominator );
182
+ fie .stepwise .min .numerator , fie .stepwise .min .denominator ,
183
+ fie .stepwise .max .numerator , fie .stepwise .max .denominator ,
184
+ fie .stepwise .step .numerator , fie .stepwise .step .denominator );
185
185
}
186
186
fie .index ++ ;
187
187
}
@@ -263,8 +263,8 @@ int main(void)
263
263
return 0 ;
264
264
}
265
265
266
- LOG_DBG ("Got frame %u! size: %u; timestamp %u ms" , frame ++ , vbuf -> bytesused ,
267
- vbuf -> timestamp );
266
+ LOG_DBG ("Got frame %u! size: %u; timestamp %u ms" ,
267
+ frame ++ , vbuf -> bytesused , vbuf -> timestamp );
268
268
269
269
#ifdef CONFIG_TEST
270
270
if (is_colorbar_ok (vbuf -> buffer , fmt )) {
0 commit comments