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
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
|
#define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <libv4l2.h>
#include <linux/videodev2.h>
#include <fcntl.h>
#include <inttypes.h>
#include <errno.h>
#include <string.h>
#include <SDL.h>
#include <SDL_ttf.h>
#include <time.h>
#include <stdbool.h>
#include <libudev.h>
#include <sodium.h>
#include <GL/glcorearb.h>
#include <sys/mman.h>
#include <poll.h>
#include <fontconfig/fontconfig.h>
#include "ds.h"
#include "lib/stb_image_write.h"
typedef struct Camera Camera;
typedef enum {
MENU_NONE,
MENU_MAIN,
MENU_RESOLUTION,
MENU_INPUT,
MENU_PIXFMT,
MENU_COUNT
} Menu;
enum {
MENU_OPT_QUIT = 1,
MENU_OPT_RESOLUTION,
MENU_OPT_INPUT,
MENU_OPT_PIXFMT,
};
// use char for MenuOption type so that we can use strlen
typedef char MenuOption;
static const MenuOption main_menu[] = {
MENU_OPT_INPUT,
MENU_OPT_RESOLUTION,
MENU_OPT_PIXFMT,
MENU_OPT_QUIT,
0
};
typedef struct {
Menu curr_menu;
int menu_sel[MENU_COUNT];
Camera *camera;
Camera **cameras;
} State;
#define HASH_SIZE 16
#if crypto_generichash_BYTES_MIN > HASH_SIZE
#error "crypto_generichash what happened"
#endif
typedef struct {
uint8_t hash[HASH_SIZE];
} Hash;
typedef struct {
int32_t width;
int32_t height;
uint32_t pixfmt;
} PictureFormat;
int uint32_cmp_qsort(const void *av, const void *bv) {
uint32_t a = *(const uint32_t *)av, b = *(const uint32_t *)bv;
if (a < b) return -1;
if (a > b) return 1;
return 0;
}
int picture_format_cmp_resolution(const PictureFormat *a, const PictureFormat *b) {
if (a->width < b->width) return -1;
if (a->width > b->width) return 1;
if (a->height < b->height) return -1;
if (a->height > b->height) return 1;
return 0;
}
int picture_format_cmp_qsort(const void *av, const void *bv) {
const PictureFormat *a = av, *b = bv;
if (a->pixfmt < b->pixfmt) return -1;
if (a->pixfmt > b->pixfmt) return 1;
int cmp = picture_format_cmp_resolution(a, b);
if (cmp) return cmp;
return 0;
}
const char *pixfmt_to_string(uint32_t pixfmt) {
switch (pixfmt) {
case V4L2_PIX_FMT_RGB332: return "RGB332";
case V4L2_PIX_FMT_RGB444: return "RGB444";
case V4L2_PIX_FMT_XRGB444: return "4bpc XRGB";
case V4L2_PIX_FMT_RGBX444: return "4bpc RGBX";
case V4L2_PIX_FMT_XBGR444: return "4bpc XBGR";
case V4L2_PIX_FMT_BGRX444: return "4bpc BGRX";
case V4L2_PIX_FMT_RGB555: return "RGB555";
case V4L2_PIX_FMT_XRGB555: return "XRGB555";
case V4L2_PIX_FMT_RGBX555: return "RGBX555";
case V4L2_PIX_FMT_XBGR555: return "XBGR555";
case V4L2_PIX_FMT_BGRX555: return "BGRX555";
case V4L2_PIX_FMT_RGB565: return "RGB565";
case V4L2_PIX_FMT_RGB555X: return "RGB555BE";
case V4L2_PIX_FMT_XRGB555X: return "XRGB555BE";
case V4L2_PIX_FMT_RGB565X: return "RGB565BE";
case V4L2_PIX_FMT_BGR24: return "8bpc BGR";
case V4L2_PIX_FMT_RGB24: return "8bpc RGB";
case V4L2_PIX_FMT_XBGR32: return "8bpc XBGR";
case V4L2_PIX_FMT_BGRX32: return "8bpc BGRX";
case V4L2_PIX_FMT_RGBX32: return "8bpc RGBX";
case V4L2_PIX_FMT_XRGB32: return "8bpc XRGB";
case V4L2_PIX_FMT_GREY: return "8-bit grayscale";
case V4L2_PIX_FMT_Y4: return "4-bit grayscale";
case V4L2_PIX_FMT_YUYV: return "YUYV 4:2:2";
case V4L2_PIX_FMT_YYUV: return "YYUV 4:2:2";
case V4L2_PIX_FMT_YVYU: return "YVYU 4:2:2";
case V4L2_PIX_FMT_UYVY: return "UYVY 4:2:2";
case V4L2_PIX_FMT_VYUY: return "VYUY 4:2:2";
case V4L2_PIX_FMT_YUV444: return "4bpc YUV";
case V4L2_PIX_FMT_YUV555: return "5bpc YUV";
case V4L2_PIX_FMT_YUV565: return "YUV565";
case V4L2_PIX_FMT_YUV24: return "8bpc YUV";
case V4L2_PIX_FMT_XYUV32: return "8bpc XYUV";
case V4L2_PIX_FMT_VUYX32: return "8bpc VUYX";
case V4L2_PIX_FMT_YUVX32: return "8bpc YUVX";
case V4L2_PIX_FMT_MJPEG: return "MJPEG";
case V4L2_PIX_FMT_JPEG: return "JPEG";
case V4L2_PIX_FMT_MPEG: return "MPEG";
case V4L2_PIX_FMT_H264: return "H264";
case V4L2_PIX_FMT_H264_NO_SC: return "AVC1";
case V4L2_PIX_FMT_H264_MVC: return "H264 MVC";
case V4L2_PIX_FMT_H263: return "H263";
case V4L2_PIX_FMT_MPEG1: return "MPEG1";
case V4L2_PIX_FMT_MPEG2: return "MPEG2";
case V4L2_PIX_FMT_MPEG4: return "MPEG4";
case V4L2_PIX_FMT_XVID: return "XVID";
default: {
static char s[5];
memcpy(s, &pixfmt, 4);
return s;
}
}
}
bool pix_fmt_supported(uint32_t pixfmt) {
switch (pixfmt) {
case V4L2_PIX_FMT_RGB24:
case V4L2_PIX_FMT_BGR24:
case V4L2_PIX_FMT_GREY:
return true;
}
return false;
}
typedef enum {
// (default value)
CAMERA_ACCESS_NOT_SETUP,
// access camera via mmap streaming
CAMERA_ACCESS_MMAP,
// access camera via read calls
CAMERA_ACCESS_READ,
// access camera via user-pointer streaming
CAMERA_ACCESS_USERP,
} CameraAccessMethod;
#define CAMERA_MAX_BUFFERS 4
struct Camera {
char *dev_path;
char *name;
uint32_t input_idx;
struct v4l2_format curr_format;
crypto_generichash_state hash_state;
int usb_busnum;
int usb_devnum;
int usb_devpath;
int fd;
Hash hash;
uint8_t *read_frame;
// number of bytes actually read into current frame.
// this can be variable for compressed formats, and doesn't match v4l2_format sizeimage for grayscale for example
size_t frame_bytes_set;
int curr_frame_idx;
int buffer_count;
struct v4l2_buffer frame_buffer;
CameraAccessMethod access_method;
PictureFormat best_format;
PictureFormat *formats;
size_t mmap_size[CAMERA_MAX_BUFFERS];
uint8_t *mmap_frames[CAMERA_MAX_BUFFERS];
uint8_t *userp_frames[CAMERA_MAX_BUFFERS];
};
/// macro trickery to avoid having to write every GL function multiple times
#define gl_for_each_proc(do)\
do(DRAWARRAYS, DrawArrays)\
do(GENTEXTURES, GenTextures)\
do(DELETETEXTURES, DeleteTextures)\
do(GENERATEMIPMAP, GenerateMipmap)\
do(TEXIMAGE2D, TexImage2D)\
do(BINDTEXTURE, BindTexture)\
do(TEXPARAMETERI, TexParameteri)\
do(GETERROR, GetError)\
do(GETINTEGERV, GetIntegerv)\
do(ENABLE, Enable)\
do(DISABLE, Disable)\
do(BLENDFUNC, BlendFunc)\
do(VIEWPORT, Viewport)\
do(CLEARCOLOR, ClearColor)\
do(CLEAR, Clear)\
do(FINISH, Finish)\
do(CREATESHADER, CreateShader)\
do(DELETESHADER, DeleteShader)\
do(CREATEPROGRAM, CreateProgram)\
do(SHADERSOURCE, ShaderSource)\
do(GETSHADERIV, GetShaderiv)\
do(GETSHADERINFOLOG, GetShaderInfoLog)\
do(COMPILESHADER, CompileShader)\
do(CREATEPROGRAM, CreateProgram)\
do(DELETEPROGRAM, DeleteProgram)\
do(ATTACHSHADER, AttachShader)\
do(LINKPROGRAM, LinkProgram)\
do(GETPROGRAMIV, GetProgramiv)\
do(GETPROGRAMINFOLOG, GetProgramInfoLog)\
do(USEPROGRAM, UseProgram)\
do(GETATTRIBLOCATION, GetAttribLocation)\
do(GETUNIFORMLOCATION, GetUniformLocation)\
do(GENBUFFERS, GenBuffers)\
do(DELETEBUFFERS, DeleteBuffers)\
do(BINDBUFFER, BindBuffer)\
do(BUFFERDATA, BufferData)\
do(VERTEXATTRIBPOINTER, VertexAttribPointer)\
do(ENABLEVERTEXATTRIBARRAY, EnableVertexAttribArray)\
do(DISABLEVERTEXATTRIBARRAY, DisableVertexAttribArray)\
do(GENVERTEXARRAYS, GenVertexArrays)\
do(DELETEVERTEXARRAYS, DeleteVertexArrays)\
do(BINDVERTEXARRAY, BindVertexArray)\
do(ACTIVETEXTURE, ActiveTexture)\
do(UNIFORM1F, Uniform1f)\
do(UNIFORM2F, Uniform2f)\
do(UNIFORM3F, Uniform3f)\
do(UNIFORM4F, Uniform4f)\
do(UNIFORM1I, Uniform1i)\
do(UNIFORM2I, Uniform2i)\
do(UNIFORM3I, Uniform3i)\
do(UNIFORM4I, Uniform4i)\
do(UNIFORMMATRIX4FV, UniformMatrix4fv)\
do(DEBUGMESSAGECALLBACK, DebugMessageCallback)\
do(DEBUGMESSAGECONTROL, DebugMessageControl)\
do(PIXELSTOREI, PixelStorei)
#define gl_define_proc(upper, lower) PFNGL##upper##PROC gl_##lower;
gl_for_each_proc(gl_define_proc)
#undef gl_define_proc
static bool camera_setup_with_read(Camera *camera) {
camera->access_method = CAMERA_ACCESS_READ;
uint32_t image_size = camera->curr_format.fmt.pix.sizeimage;
camera->read_frame = realloc(camera->read_frame, image_size);
if (!camera->read_frame) {
perror("realloc");
return false;
}
memset(camera->read_frame, 0, image_size);
return camera->read_frame != NULL;
}
static bool camera_setup_with_mmap(Camera *camera) {
camera->access_method = CAMERA_ACCESS_MMAP;
struct v4l2_requestbuffers req = {0};
req.count = CAMERA_MAX_BUFFERS;
req.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
req.memory = V4L2_MEMORY_MMAP;
if (v4l2_ioctl(camera->fd, VIDIOC_REQBUFS, &req) != 0) {
perror("v4l2_ioctl VIDIOC_REQBUFS");
return false;
}
camera->buffer_count = req.count;
for (int i = 0; i < camera->buffer_count; i++) {
struct v4l2_buffer buf = {0};
buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
buf.memory = V4L2_MEMORY_MMAP;
buf.index = i;
if (v4l2_ioctl(camera->fd, VIDIOC_QUERYBUF, &buf) != 0) {
perror("v4l2_ioctl VIDIOC_QUERYBUF");
return false;
}
camera->mmap_size[i] = buf.length;
camera->mmap_frames[i] = v4l2_mmap(NULL, buf.length, PROT_READ | PROT_WRITE,
MAP_SHARED, camera->fd, buf.m.offset);
if (camera->mmap_frames[i] == MAP_FAILED) {
camera->mmap_frames[i] = NULL;
perror("mmap");
return false;
}
}
for (int i = 0; i < camera->buffer_count; i++) {
struct v4l2_buffer buf = {0};
buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
buf.memory = V4L2_MEMORY_MMAP;
buf.index = i;
if (v4l2_ioctl(camera->fd, VIDIOC_QBUF, &buf) != 0) {
perror("v4l2_ioctl VIDIOC_QBUF");
return false;
}
}
if (v4l2_ioctl(camera->fd,
VIDIOC_STREAMON,
(enum v4l2_buf_type[1]) { V4L2_BUF_TYPE_VIDEO_CAPTURE }) != 0) {
perror("v4l2_ioctl VIDIOC_STREAMON");
return false;
}
return true;
}
PictureFormat *camera_get_resolutions_with_pixfmt(Camera *camera, uint32_t pixfmt) {
PictureFormat *available = NULL;
arr_foreach_ptr(camera->formats, PictureFormat, fmt) {
if (fmt->pixfmt == pixfmt) {
arr_add(available, *fmt);
}
}
return available;
}
uint32_t *camera_get_pixfmts(Camera *camera) {
uint32_t *available = NULL;
arr_add(available, V4L2_PIX_FMT_RGB24);
arr_foreach_ptr(camera->formats, const PictureFormat, fmt) {
if (!pix_fmt_supported(fmt->pixfmt))
continue;
arr_foreach_ptr(available, uint32_t, prev) {
if (*prev == fmt->pixfmt) goto skip;
}
arr_add(available, fmt->pixfmt);
skip:;
}
arr_qsort(available, uint32_cmp_qsort);
return available;
}
PictureFormat camera_closest_resolution(Camera *camera, uint32_t pixfmt, int32_t desired_width, int32_t desired_height) {
PictureFormat best_format = {.pixfmt = pixfmt};
int32_t best_score = INT32_MIN;
arr_foreach_ptr(camera->formats, const PictureFormat, fmt) {
if (fmt->pixfmt != pixfmt) {
continue;
}
int32_t score = -abs(fmt->width - desired_width) + abs(fmt->height - desired_height);
if (score >= best_score) {
best_score = score;
best_format = *fmt;
}
}
return best_format;
}
static bool camera_setup_with_userp(Camera *camera) {
camera->access_method = CAMERA_ACCESS_USERP;
return false;
/*
TODO: test me with a camera that supports userptr i/o
struct v4l2_requestbuffers req = {0};
req.count = CAMERA_MAX_BUFFERS;
req.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
req.memory = V4L2_MEMORY_USERPTR;
if (v4l2_ioctl(camera->fd, VIDIOC_REQBUFS, &req) != 0) {
perror("v4l2_ioctl VIDIOC_REQBUFS");
return false;
}
for (int i = 0; i < CAMERA_MAX_BUFFERS; i++) {
camera->userp_frames[i] = calloc(1, camera->curr_format.fmt.pix.sizeimage);
struct v4l2_buffer buf = {0};
buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
buf.memory = V4L2_MEMORY_USERPTR;
buf.index = i;
buf.m.userptr = (unsigned long)camera->userp_frames[i];
buf.length = camera->curr_format.fmt.pix.sizeimage;
if (v4l2_ioctl(camera->fd, VIDIOC_QBUF, &buf) != 0) {
perror("v4l2_ioctl VIDIOC_QBUF");
}
}
if (v4l2_ioctl(camera->fd,
VIDIOC_STREAMON,
(enum v4l2_buf_type[1]) { V4L2_BUF_TYPE_VIDEO_CAPTURE }) != 0) {
perror("v4l2_ioctl VIDIOC_STREAMON");
return false;
}
return true;*/
}
static bool camera_stop_io(Camera *camera) {
// Just doing VIDIOC_STREAMOFF doesn't seem to be enough to prevent EBUSY.
// (Even if we dequeue all buffers afterwards)
// Re-opening doesn't seem to be necessary for read-based access for me,
// but idk if that's true on all cameras.
v4l2_close(camera->fd);
camera->fd = v4l2_open(camera->dev_path, O_RDWR);
if (camera->fd < 0) {
perror("v4l2_open");
return false;
}
return true;
}
int32_t camera_frame_width(Camera *camera) {
return camera->curr_format.fmt.pix.width;
}
int32_t camera_frame_height(Camera *camera) {
return camera->curr_format.fmt.pix.height;
}
PictureFormat camera_picture_format(Camera *camera) {
return (PictureFormat) {
.width = camera_frame_width(camera),
.height = camera_frame_height(camera),
.pixfmt = camera->curr_format.fmt.pix.pixelformat
};
}
static uint8_t *camera_curr_frame(Camera *camera) {
if (camera->read_frame)
return camera->read_frame;
if (camera->curr_frame_idx < 0)
return NULL;
if (camera->mmap_frames[camera->curr_frame_idx])
return camera->mmap_frames[camera->curr_frame_idx];
assert(camera->userp_frames[camera->curr_frame_idx]);
return camera->userp_frames[camera->curr_frame_idx];
}
void camera_write_jpg(Camera *camera, const char *name, int quality) {
uint8_t *frame = camera_curr_frame(camera);
if (frame) {
stbi_write_jpg(name, camera_frame_width(camera), camera_frame_height(camera), 3, frame, quality);
}
}
bool camera_next_frame(Camera *camera) {
struct pollfd pollfd = {.fd = camera->fd, .events = POLLIN};
// check whether there is any data available from camera
// NOTE: O_NONBLOCK on v4l2_camera doesn't seem to work, at least on my camera
if (poll(&pollfd, 1, 1) <= 0) {
return false;
}
switch (camera->access_method) {
uint32_t memory;
case CAMERA_ACCESS_NOT_SETUP:
return false;
case CAMERA_ACCESS_READ:
camera->frame_bytes_set = v4l2_read(camera->fd, camera->read_frame, camera->curr_format.fmt.pix.sizeimage);
return true;
case CAMERA_ACCESS_MMAP:
memory = V4L2_MEMORY_MMAP;
goto buf;
case CAMERA_ACCESS_USERP:
memory = V4L2_MEMORY_USERPTR;
goto buf;
buf: {
if (camera->frame_buffer.type) {
// queue back in previous buffer
v4l2_ioctl(camera->fd, VIDIOC_QBUF, &camera->frame_buffer);
camera->frame_buffer.type = 0;
}
struct v4l2_buffer buf = {0};
buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
buf.memory = memory;
if (v4l2_ioctl(camera->fd, VIDIOC_DQBUF, &buf) != 0) {
static bool printed_error;
if (!printed_error) {
perror("v4l2_ioctl VIDIOC_DQBUF");
printed_error = true;
}
return false;
}
camera->frame_bytes_set = buf.bytesused;
camera->curr_frame_idx = buf.index;
camera->frame_buffer = buf;
return true;
}
default:
#if DEBUG
assert(false);
#endif
return false;
}
}
void camera_update_gl_texture_2d(Camera *camera) {
uint32_t frame_width = camera_frame_width(camera), frame_height = camera_frame_height(camera);
for (int align = 8; align >= 1; align >>= 1) {
if (frame_width % align == 0) {
gl_PixelStorei(GL_UNPACK_ALIGNMENT, align);
break;
}
}
uint8_t *curr_frame = camera_curr_frame(camera);
if (curr_frame) {
switch (camera->curr_format.fmt.pix.pixelformat) {
case V4L2_PIX_FMT_RGB24:
if (camera->frame_bytes_set >= frame_width * frame_height * 3)
gl_TexImage2D(GL_TEXTURE_2D, 0, GL_RGB, frame_width, frame_height, 0, GL_RGB, GL_UNSIGNED_BYTE, curr_frame);
break;
case V4L2_PIX_FMT_BGR24:
if (camera->frame_bytes_set >= frame_width * frame_height * 3)
gl_TexImage2D(GL_TEXTURE_2D, 0, GL_RGB, frame_width, frame_height, 0, GL_BGR, GL_UNSIGNED_BYTE, curr_frame);
break;
case V4L2_PIX_FMT_GREY:
if (camera->frame_bytes_set >= frame_width * frame_height)
gl_TexImage2D(GL_TEXTURE_2D, 0, GL_RED, frame_width, frame_height, 0, GL_RED, GL_UNSIGNED_BYTE, curr_frame);
break;
}
}
}
const char *camera_name(Camera *camera) {
return camera->name;
}
uint32_t camera_pixel_format(Camera *camera) {
return camera->curr_format.fmt.pix.pixelformat;
}
CameraAccessMethod camera_access_method(Camera *camera) {
return camera->access_method;
}
void camera_close(Camera *camera) {
free(camera->read_frame);
camera->read_frame = NULL;
for (int i = 0; i < CAMERA_MAX_BUFFERS; i++) {
if (camera->mmap_frames[i]) {
v4l2_munmap(camera->mmap_frames[i], camera->mmap_size[i]);
camera->mmap_frames[i] = NULL;
}
free(camera->userp_frames[i]);
camera->userp_frames[i] = NULL;
}
if (camera->fd >= 0)
v4l2_close(camera->fd);
}
void camera_free(Camera *camera) {
camera_close(camera);
free(camera);
}
bool camera_set_format(Camera *camera, PictureFormat picfmt, CameraAccessMethod access, bool force) {
if (!force
&& camera->access_method == access
&& picture_format_cmp_qsort((PictureFormat[1]) { camera_picture_format(camera) }, &picfmt) == 0) {
// no changes needed
return true;
}
camera->access_method = access;
for (int i = 0; i < camera->buffer_count; i++) {
if (camera->mmap_frames[i]) {
v4l2_munmap(camera->mmap_frames[i], camera->mmap_size[i]);
camera->mmap_frames[i] = NULL;
}
}
free(camera->read_frame);
camera->read_frame = NULL;
struct v4l2_format format = {0};
camera_stop_io(camera); // prevent EBUSY when changing format
format.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
format.fmt.pix.field = V4L2_FIELD_ANY;
// v4l2 should be able to output rgb24 for all reasonable cameras
uint32_t pixfmt = V4L2_PIX_FMT_RGB24;
switch (picfmt.pixfmt) {
// we can actually handle these pixel formats
case V4L2_PIX_FMT_BGR24:
case V4L2_PIX_FMT_GREY:
pixfmt = picfmt.pixfmt;
break;
}
format.fmt.pix.pixelformat = pixfmt;
format.fmt.pix.width = picfmt.width;
format.fmt.pix.height = picfmt.height;
if (v4l2_ioctl(camera->fd, VIDIOC_S_FMT, &format) != 0) {
perror("v4l2_ioctl VIDIOC_S_FMT");
return false;
}
camera->curr_format = format;
//printf("image size = %uB\n",format.fmt.pix.sizeimage);
switch (camera->access_method) {
case CAMERA_ACCESS_READ:
return camera_setup_with_read(camera);
case CAMERA_ACCESS_MMAP:
return camera_setup_with_mmap(camera);
case CAMERA_ACCESS_USERP:
return camera_setup_with_userp(camera);
default:
#if DEBUG
assert(false);
#endif
return false;
}
}
bool camera_open(Camera *camera) {
if (!camera->access_method)
camera->access_method = CAMERA_ACCESS_MMAP;
// camera should not already be open
assert(!camera->read_frame);
assert(!camera->mmap_frames[0]);
assert(!camera->userp_frames[0]);
camera->fd = v4l2_open(camera->dev_path, O_RDWR);
if (camera->fd < 0) {
perror("v4l2_open");
return false;
}
if (v4l2_ioctl(camera->fd, VIDIOC_S_INPUT, &camera->input_idx) != 0) {
perror("v4l2_ioctl");
return false;
}
camera_set_format(camera, camera->best_format, camera->access_method, true);
return true;
}
#if DEBUG
static void APIENTRY gl_message_callback(GLenum source, GLenum type, unsigned int id, GLenum severity,
GLsizei length, const char *message, const void *userParam) {
(void)source; (void)type; (void)id; (void)length; (void)userParam;
if (severity == GL_DEBUG_SEVERITY_NOTIFICATION) return;
printf("Message from OpenGL: %s.\n", message);
}
#endif
static void debug_save_24bpp_bmp(const char *filename, const uint8_t *pixels, uint16_t width, uint16_t height) {
FILE *fp = fopen(filename, "wb");
if (!fp) {
perror("fopen");
return;
}
typedef struct {
char BM[2];
char size[4];
char resv[4];
char offset[4];
char hdrsize[4];
uint16_t width;
uint16_t height;
uint16_t planes;
uint16_t bit_count;
} BMPHeader;
BMPHeader hdr = {
.BM = "BM",
.width = width,
.height = height,
.planes = 1,
.bit_count = 24,
};
uint32_t offset = sizeof(BMPHeader);
uint32_t file_size = sizeof(BMPHeader) + (uint32_t)width * height * 3;
memcpy(&hdr.size, &file_size, 4);
memcpy(&hdr.offset, &offset, 4);
memcpy(&hdr.hdrsize, (uint32_t[1]) { 12 }, 4);
fwrite(&hdr, sizeof(BMPHeader), 1, fp);
for (uint32_t i = 0; i < height; i++) {
fwrite(pixels + (height-1-i) * width * 3, 3, (size_t)width, fp);
}
fclose(fp);
}
char *va_sprintf(const char *fmt, va_list args) {
va_list args_copy;
va_copy(args_copy, args);
char fakebuf[2] = {0};
int ret = vsnprintf(fakebuf, 1, fmt, args_copy);
va_end(args_copy);
if (ret < 0) return NULL; // bad format or something
size_t n = (size_t)ret;
char *str = calloc(1, n + 1);
vsnprintf(str, n + 1, fmt, args);
return str;
}
char *a_sprintf(PRINTF_FORMAT_STRING const char *fmt, ...) ATTRIBUTE_PRINTF(1, 2);
char *a_sprintf(const char *fmt, ...) {
// idk if you can always just pass NULL to vsnprintf
va_list args;
va_start(args, fmt);
char *str = va_sprintf(fmt, args);
va_end(args);
return str;
}
// compile a GLSL shader
GLuint gl_compile_shader(char error_buf[256], const char *code, GLenum shader_type) {
GLuint shader = gl_CreateShader(shader_type);
char header[128];
snprintf(header, sizeof header, "#version 130\n\
#line 1\n");
const char *sources[2] = {
header,
code
};
gl_ShaderSource(shader, 2, sources, NULL);
gl_CompileShader(shader);
GLint status = 0;
gl_GetShaderiv(shader, GL_COMPILE_STATUS, &status);
if (status == GL_FALSE) {
char log[1024] = {0};
gl_GetShaderInfoLog(shader, sizeof log - 1, NULL, log);
if (error_buf) {
snprintf(error_buf, 256, "Error compiling shader: %s", log);
} else {
printf("Error compiling shader: %s\n", log);
}
return 0;
}
return shader;
}
// link together GL shaders
GLuint gl_link_program(char error_buf[256], GLuint *shaders, size_t count) {
GLuint program = gl_CreateProgram();
if (program) {
for (size_t i = 0; i < count; ++i) {
if (!shaders[i]) {
gl_DeleteProgram(program);
return 0;
}
gl_AttachShader(program, shaders[i]);
}
gl_LinkProgram(program);
GLint status = 0;
gl_GetProgramiv(program, GL_LINK_STATUS, &status);
if (status == GL_FALSE) {
char log[1024] = {0};
gl_GetProgramInfoLog(program, sizeof log - 1, NULL, log);
if (error_buf) {
snprintf(error_buf, 256, "Error linking shaders: %s", log);
} else {
printf("Error linking shaders: %s\n", log);
}
gl_DeleteProgram(program);
return 0;
}
}
return program;
}
GLuint gl_compile_and_link_shaders(char error_buf[256], const char *vshader_code, const char *fshader_code) {
GLuint shaders[2];
shaders[0] = gl_compile_shader(error_buf, vshader_code, GL_VERTEX_SHADER);
shaders[1] = gl_compile_shader(error_buf, fshader_code, GL_FRAGMENT_SHADER);
GLuint program = gl_link_program(error_buf, shaders, 2);
if (shaders[0]) gl_DeleteShader(shaders[0]);
if (shaders[1]) gl_DeleteShader(shaders[1]);
if (program) {
printf("Successfully linked program %u.\n", program);
}
return program;
}
void cameras_from_device(const char *dev_path, const char *serial, int fd, Camera ***cameras) {
struct v4l2_capability cap = {0};
v4l2_ioctl(fd, VIDIOC_QUERYCAP, &cap);
if (!(cap.capabilities & V4L2_CAP_VIDEO_CAPTURE)) return;
struct v4l2_input input = {0};
for (uint32_t input_idx = 0; ; input_idx++) {
input.index = input_idx;
if (v4l2_ioctl(fd, VIDIOC_ENUMINPUT, &input) == -1) break;
if (input.type != V4L2_INPUT_TYPE_CAMERA) continue;
Camera *camera = calloc(1, sizeof *camera);
if (!camera) {
perror("calloc");
return;
}
camera->fd = -1;
camera->curr_frame_idx = -1;
crypto_generichash_init(&camera->hash_state, NULL, 0, HASH_SIZE);
crypto_generichash_update(&camera->hash_state, cap.card, strlen((const char *)cap.card) + 1);
crypto_generichash_update(&camera->hash_state, input.name, strlen((const char *)input.name) + 1);
struct v4l2_fmtdesc fmtdesc = {0};
printf("-----\n");
for (uint32_t fmt_idx = 0; ; fmt_idx++) {
fmtdesc.index = fmt_idx;
fmtdesc.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
if (v4l2_ioctl(fd, VIDIOC_ENUM_FMT, &fmtdesc) == -1) break;
uint32_t fourcc[2] = {fmtdesc.pixelformat, 0};
printf(" - %s (%s)\n",fmtdesc.description, (const char *)fourcc);
struct v4l2_frmsizeenum frmsize = {0};
if (serial && *serial)
crypto_generichash_update(&camera->hash_state, (const uint8_t *)serial, strlen(serial) + 1);
const char *bus_info = (const char *)cap.bus_info;
int usb_busnum = 0;
int usb_devnum = 0;
int usb_devpath = 0;
if (strlen(bus_info) >= 18 && strlen(bus_info) <= 20 &&
// what are those mystery 0s in the bus_info referring to.. . who knows...
sscanf(bus_info, "usb-0000:%d:00.%d-%d", &usb_busnum, &usb_devnum, &usb_devpath) == 3) {
camera->usb_busnum = usb_busnum;
camera->usb_devnum = usb_devnum;
camera->usb_devpath = usb_devpath;
} else {
camera->usb_busnum = -1;
camera->usb_devnum = -1;
camera->usb_devpath = -1;
}
for (uint32_t frmsz_idx = 0; ; frmsz_idx++) {
frmsize.index = frmsz_idx;
frmsize.pixel_format = fmtdesc.pixelformat;
if (v4l2_ioctl(fd, VIDIOC_ENUM_FRAMESIZES, &frmsize) == -1) break;
// are there even any stepwise cameras out there?? who knows.
uint32_t frame_width = frmsize.type == V4L2_FRMSIZE_TYPE_DISCRETE ? frmsize.discrete.width : frmsize.stepwise.max_width;
uint32_t frame_height = frmsize.type == V4L2_FRMSIZE_TYPE_DISCRETE ? frmsize.discrete.height : frmsize.stepwise.max_height;
arr_add(camera->formats, ((PictureFormat) {
.width = frame_width,
.height = frame_height,
.pixfmt = fmtdesc.pixelformat,
}));
}
}
if (arr_len(camera->formats) == 0) {
free(camera);
continue;
}
arr_qsort(camera->formats, picture_format_cmp_qsort);
// deduplicate
{
int i, o;
for (o = 0, i = 0; i < (int)arr_len(camera->formats); i++) {
if (i == 0 || picture_format_cmp_qsort(&camera->formats[i-1], &camera->formats[i]) != 0) {
camera->formats[o++] = camera->formats[i];
}
}
arr_set_len(camera->formats, o);
}
camera->input_idx = input_idx;
camera->dev_path = strdup(dev_path);
// select best format
PictureFormat best_format = {0};
uint32_t desired_format = V4L2_PIX_FMT_RGB24;
crypto_generichash_update(&camera->hash_state, (const uint8_t *)(const uint32_t [1]){arr_len(camera->formats)}, 4);
arr_foreach_ptr(camera->formats, PictureFormat, fmt) {
// Now you might think do we really need this?
// Is it really not enough to use the device name, input name, and serial number to uniquely identify a camera??
// No. you fool. Of course there is a Logitech camera with an infrared sensor (for face recognition)
// that shows up as two video devices with identical names, capabilities, input names, etc. etc.
// and the only way to distinguish them is the picture formats they support.
// Oddly Windows doesn't show the infrared camera as an input device.
// I wonder if there is some way of detecting which one is the "normal" camera.
// Or perhaps Windows has its own special proprietary driver and we have no way of knowing.
crypto_generichash_update(&camera->hash_state, (const uint8_t *)&fmt->pixfmt, sizeof fmt->pixfmt);
crypto_generichash_update(&camera->hash_state, (const uint8_t *)&fmt->width, sizeof fmt->width);
crypto_generichash_update(&camera->hash_state, (const uint8_t *)&fmt->height, sizeof fmt->height);
if (best_format.pixfmt == desired_format && fmt->pixfmt != desired_format) {
continue;
}
if ((fmt->pixfmt == desired_format && best_format.pixfmt != desired_format)
|| fmt->width > best_format.width) {
best_format = *fmt;
}
}
camera->best_format = best_format;
camera->name = a_sprintf(
"%s %s (up to %" PRIu32 "x%" PRIu32 ")", (const char *)cap.card, (const char *)input.name,
best_format.width, best_format.height
);
arr_add(*cameras, camera);
}
}
static int menu_option_count(State *state) {
switch (state->curr_menu) {
case MENU_NONE: return 0;
case MENU_MAIN: return strlen(main_menu);
case MENU_INPUT: return arr_len(state->cameras);
case MENU_RESOLUTION: {
PictureFormat *resolutions = camera_get_resolutions_with_pixfmt(state->camera, camera_pixel_format(state->camera));
int n = (int)arr_len(resolutions);
arr_free(resolutions);
return n;
}
break;
case MENU_PIXFMT: {
uint32_t *pixfmts = camera_get_pixfmts(state->camera);
int n = (int)arr_len(pixfmts);
arr_free(pixfmts);
return n;
}
break;
case MENU_COUNT: break;
}
assert(false);
return 0;
}
static void render_text_to_surface_anchored(TTF_Font *font, SDL_Surface *dest, int x, int y, SDL_Color color, const char *str,
int xanchor, int yanchor) {
SDL_Surface *text = TTF_RenderUTF8_Blended(font, str, color);
x -= (xanchor + 1) * text->w / 2;
y -= (yanchor + 1) * text->h / 2;
SDL_BlitSurface(text, NULL, dest, (SDL_Rect[1]){{x, y, 0, 0}});
SDL_FreeSurface(text);
}
static void render_text_to_surface(TTF_Font *font, SDL_Surface *dest, int x, int y, SDL_Color color, const char *str) {
render_text_to_surface_anchored(font, dest, x, y, color, str, -1, -1);
}
int main(void) {
static State state_data;
State *state = &state_data;
SDL_SetHint(SDL_HINT_NO_SIGNAL_HANDLERS, "1"); // if this program is sent a SIGTERM/SIGINT, don't turn it into a quit event
if (SDL_Init(SDL_INIT_EVERYTHING) < 0) {
fprintf(stderr, "couldn't initialize SDL\n");
return EXIT_FAILURE;
}
if (sodium_init() < 0) {
fprintf(stderr, "couldn't initialize libsodium\n");
return EXIT_FAILURE;
}
if (!FcInit()) {
fprintf(stderr, "couldn't initialize fontconfig\n");
return EXIT_FAILURE;
}
#define FcFini "don't call FcFini: it's broken on certain versions of fontconfig - https://github.com/brndnmtthws/conky/pull/1755"
if (TTF_Init() < 0) {
fprintf(stderr, "couldn't initialize SDL2_ttf: %s\n", TTF_GetError());
return EXIT_FAILURE;
}
char *font_path = NULL;
{
// find a suitable font
FcPattern *pattern = FcPatternCreate();
FcLangSet *langs = FcLangSetCreate();
FcLangSetAdd(langs, (const FcChar8 *)"en-US");
FcPatternAddLangSet(pattern, FC_LANG, langs);
FcPatternAddInteger(pattern, FC_WEIGHT, FC_WEIGHT_REGULAR);
FcPatternAddInteger(pattern, FC_SLANT, FC_SLANT_ROMAN);
FcPatternAddInteger(pattern, FC_WIDTH, FC_WIDTH_NORMAL);
FcPatternAddString(pattern, FC_FONTFORMAT, (const FcChar8 *)"TrueType");
FcConfigSubstitute(0, pattern, FcMatchPattern);
FcDefaultSubstitute(pattern);
FcResult result = 0;
FcPattern *font = FcFontMatch(NULL, pattern, &result);
if (result == FcResultMatch) {
FcChar8 *file;
if (FcPatternGetString(font, FC_FILE, 0, &file) == FcResultMatch) {
font_path = strdup((const char *)file);
}
} else {
fprintf(stderr, "couldn't find any regular English TTF fonts. try installing one?\n");
return EXIT_FAILURE;
}
FcPatternDestroy(pattern);
FcPatternDestroy(font);
FcLangSetDestroy(langs);
}
TTF_Font *font = TTF_OpenFont(font_path, 72);
if (!font) {
fprintf(stderr, "couldn't open font %s: %s\n", font_path, TTF_GetError());
return EXIT_FAILURE;
}
SDL_Window *window = SDL_CreateWindow("camlet", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, 1280, 720, SDL_WINDOW_OPENGL|SDL_WINDOW_SHOWN|SDL_WINDOW_RESIZABLE);
if (!window) {
fprintf(stderr, "couldn't create window: %s\n", SDL_GetError());
return EXIT_FAILURE;
}
int gl_version_major = 3, gl_version_minor = 0;
#if DEBUG
gl_version_major = 4;
gl_version_minor = 3;
#endif
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, gl_version_major);
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, gl_version_minor);
SDL_GLContext glctx = SDL_GL_CreateContext(window);
if (!glctx) {
fprintf(stderr, "couldn't create GL context: %s\n", SDL_GetError());
return EXIT_FAILURE;
}
SDL_GL_SetSwapInterval(1); // vsync
#if __GNUC__
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wpedantic"
#endif
#define gl_get_proc(upper, lower) gl_##lower = (PFNGL##upper##PROC)SDL_GL_GetProcAddress("gl" #lower);
gl_for_each_proc(gl_get_proc);
#if __GNUC__
#pragma GCC diagnostic pop
#endif
#if DEBUG
{
GLint flags = 0;
gl_GetIntegerv(GL_CONTEXT_FLAGS, &flags);
gl_Enable(GL_DEBUG_OUTPUT);
gl_Enable(GL_DEBUG_OUTPUT_SYNCHRONOUS);
if (flags & GL_CONTEXT_FLAG_DEBUG_BIT) {
// set up debug message callback
gl_DebugMessageCallback(gl_message_callback, NULL);
gl_DebugMessageControl(GL_DONT_CARE, GL_DONT_CARE, GL_DONT_CARE, 0, NULL, GL_TRUE);
}
}
#endif
gl_BlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
struct timespec ts = {0};
clock_gettime(CLOCK_MONOTONIC, &ts);
double last_time = (double)ts.tv_sec + (double)ts.tv_nsec * 1e-9;
GLuint textures[3] = {0};
gl_GenTextures(SDL_arraysize(textures), textures);
for (size_t i = 0; i < SDL_arraysize(textures); i++) {
gl_BindTexture(GL_TEXTURE_2D, textures[i]);
gl_TexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
gl_TexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
gl_TexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
gl_TexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
}
// texture for camera output
GLuint texture = textures[0];
GLuint menu_texture = textures[1];
GLuint no_camera_texture = textures[2];
static const int32_t no_camera_width = 1280, no_camera_height = 720;
{
// create no camera texture
int32_t w = no_camera_width, h = no_camera_height;
SDL_Surface *surf = SDL_CreateRGBSurfaceWithFormat(0, w, h, 8, SDL_PIXELFORMAT_RGB24);
SDL_LockSurface(surf);
for (int32_t y = 0; y < h; y++) {
uint8_t *row = &((uint8_t *)surf->pixels)[y * surf->pitch];
uint8_t color = (uint8_t)(y * 255 / h);
for (int32_t x = 0; x < w; x++, row += 3)
*row = color;
}
SDL_UnlockSurface(surf);
render_text_to_surface_anchored(font, surf, w / 2, h / 2, (SDL_Color){255, 255, 255, 255},
"No Camera", 0, 0);
SDL_LockSurface(surf);
gl_BindTexture(GL_TEXTURE_2D, no_camera_texture);
gl_TexImage2D(GL_TEXTURE_2D, 0, GL_RGB, w, h, 0, GL_RGB, GL_UNSIGNED_BYTE, surf->pixels);
SDL_UnlockSurface(surf);
}
const char *vshader_code = "attribute vec2 v_pos;\n\
attribute vec2 v_tex_coord;\n\
uniform vec2 u_scale;\n\
out vec2 tex_coord;\n\
void main() {\n\
tex_coord = vec2(v_tex_coord.x, 1.0 - v_tex_coord.y);\n\
gl_Position = vec4(u_scale * v_pos, 0.0, 1.0);\n\
}\n\
";
const char *fshader_code = "in vec4 color;\n\
in vec2 tex_coord;\n\
uniform sampler2D u_sampler;\n\
uniform int u_pixel_format;\n\
uniform float u_opacity;\n\
void main() {\n\
vec3 color;\n\
switch (u_pixel_format) {\n\
case 0x59455247: // GREY\n\
color = texture2D(u_sampler, tex_coord).xxx;\n\
break;\n\
default:\n\
color = texture2D(u_sampler, tex_coord).xyz;\n\
break;\n\
}\n\
gl_FragColor = vec4(color, u_opacity);\n\
}\n\
";
char err[256] = {0};
GLuint program = gl_compile_and_link_shaders(err, vshader_code, fshader_code);
if (*err) {
fprintf(stderr, "%s\n",err);
}
if (program == 0) return EXIT_FAILURE;
GLuint vbo = 0, vao = 0;
gl_GenBuffers(1, &vbo);
gl_GenVertexArrays(1, &vao);
typedef struct {
float pos[2];
float tex_coord[2];
} Vertex;
typedef struct {
Vertex v0;
Vertex v1;
Vertex v2;
} Triangle;
Triangle triangles[2] = {
{ {{-1, -1}, {0, 0}}, {{1, 1}, {1, 1}}, {{-1, 1}, {0, 1}} },
{ {{-1, -1}, {0, 0}}, {{1, -1}, {1, 0}}, {{1, 1}, {1, 1}} },
};
int ntriangles = sizeof triangles / sizeof triangles[0];
GLuint u_sampler = gl_GetUniformLocation(program, "u_sampler");
GLuint u_pixel_format = gl_GetUniformLocation(program, "u_pixel_format");
GLuint u_scale = gl_GetUniformLocation(program, "u_scale");
GLuint u_opacity = gl_GetUniformLocation(program, "u_opacity");
GLint v_pos = gl_GetAttribLocation(program, "v_pos");
GLint v_tex_coord = gl_GetAttribLocation(program, "v_tex_coord");
gl_BindBuffer(GL_ARRAY_BUFFER, vbo);
gl_BindVertexArray(vao);
gl_BufferData(GL_ARRAY_BUFFER, (GLsizeiptr)(ntriangles * sizeof(Triangle)), triangles, GL_STATIC_DRAW);
gl_VertexAttribPointer(v_pos, 2, GL_FLOAT, 0, sizeof(Vertex), (void *)offsetof(Vertex, pos));
gl_EnableVertexAttribArray(v_pos);
gl_VertexAttribPointer(v_tex_coord, 2, GL_FLOAT, 0, sizeof(Vertex), (void *)offsetof(Vertex, tex_coord));
gl_EnableVertexAttribArray(v_tex_coord);
struct udev *udev = udev_new();
struct udev_monitor *udev_monitor = udev_monitor_new_from_netlink(udev, "udev");
udev_monitor_filter_add_match_subsystem_devtype(udev_monitor, "video4linux", NULL);
if (!udev_monitor) {
perror("udev_monitor_new_from_netlink");
}
if (udev_monitor) {
// set udev monitor to nonblocking
int fd = udev_monitor_get_fd(udev_monitor);
int flags = fcntl(fd, F_GETFL);
flags |= O_NONBLOCK;
if (fcntl(fd, F_SETFL, flags) != 0) {
perror("fcntl");
}
// enable monitor
udev_monitor_enable_receiving(udev_monitor);
}
{
struct udev_enumerate *enumerate = udev_enumerate_new(udev);
udev_enumerate_add_match_subsystem(enumerate, "video4linux");
udev_enumerate_add_match_subsystem(enumerate, "usb");
udev_enumerate_scan_devices(enumerate);
struct udev_list_entry *device = NULL, *devices = udev_enumerate_get_list_entry(enumerate);
udev_list_entry_foreach(device, devices) {
struct udev_device *dev = udev_device_new_from_syspath(udev, udev_list_entry_get_name(device));
if (!dev) continue;
const char *devnode = udev_device_get_devnode(dev);
if (!devnode) continue;
const char *subsystem = udev_device_get_sysattr_value(dev, "subsystem");
const char *serial = udev_device_get_sysattr_value(dev, "serial");
if (strcmp(subsystem, "video4linux") == 0) {
int status = access(devnode, R_OK);
if (status != 0 && errno == EACCES) {
// can't read from this device
goto cont;
}
if (status) break;
int fd = v4l2_open(devnode, O_RDWR);
if (fd < 0) {
perror("v4l2_open");
goto cont;
}
cameras_from_device(devnode, serial, fd, &state->cameras);
v4l2_close(fd);
}
cont:
udev_device_unref(dev);
}
udev_list_entry_foreach(device, devices) {
struct udev_device *dev = udev_device_new_from_syspath(udev, udev_list_entry_get_name(device));
const char *busnum_str = udev_device_get_sysattr_value(dev, "busnum");
if (!busnum_str) continue;
const char *devnum_str = udev_device_get_sysattr_value(dev, "devnum");
if (!devnum_str) continue;
const char *devpath_str = udev_device_get_sysattr_value(dev, "devpath");
if (!devpath_str) continue;
const char *serial = udev_device_get_sysattr_value(dev, "serial");
if (!serial || !*serial) continue;
int busnum = atoi(busnum_str);
int devnum = atoi(devnum_str);
int devpath = atoi(devpath_str);
arr_foreach_ptr(state->cameras, Camera *, pcamera) {
Camera *camera = *pcamera;
// allows us to distinguish between different instances of the exact same model of camera
if (camera->usb_busnum == busnum && camera->usb_devnum == devnum && camera->usb_devpath == devpath) {
crypto_generichash_update(&camera->hash_state, (const uint8_t *)serial, strlen(serial) + 1);
}
}
udev_device_unref(dev);
}
udev_enumerate_unref(enumerate);
arr_foreach_ptr(state->cameras, Camera *, pcamera) {
Camera *camera = *pcamera;
memset(camera->hash.hash, 0, sizeof camera->hash.hash);
crypto_generichash_final(&camera->hash_state, camera->hash.hash, sizeof camera->hash.hash);
}
printf("---CAMERAS---\n");
for (size_t i = 0; i < arr_len(state->cameras); i++) {
Camera *camera = state->cameras[i];
printf("[%zu] %s ", i, camera->name);
for (size_t h = 0; h < sizeof camera->hash.hash; h++) {
printf("%02x", camera->hash.hash[h]);
}
printf("\n");
}
}
if (arr_len(state->cameras) == 0) {
state->camera = NULL;
} else {
state->camera = state->cameras[0];
if (!camera_open(state->camera))
return EXIT_FAILURE;
}
while(true) {
struct udev_device *dev = NULL;
while (udev_monitor && (dev = udev_monitor_receive_device(udev_monitor))) {
printf("%s %s\n",udev_device_get_sysname(dev),udev_device_get_action(dev));
struct udev_list_entry *attr = NULL, *attrs = udev_device_get_sysattr_list_entry(dev);
udev_list_entry_foreach(attr, attrs) {
printf("%s = %s\n", udev_list_entry_get_name(attr),
udev_device_get_sysattr_value(dev, udev_list_entry_get_name(attr)));
}
udev_device_unref(dev);
}
SDL_Event event={0};
bool menu_needs_rerendering = false;
while (SDL_PollEvent(&event)) {
if (event.type == SDL_QUIT) goto quit;
if (event.type == SDL_KEYDOWN) switch (event.key.keysym.sym) {
case SDLK_SPACE: {
time_t t = time(NULL);
struct tm *tm = localtime(&t);
char name[256];
strftime(name, sizeof name, "%Y-%m-%d-%H-%M-%S.jpg", tm);
camera_write_jpg(state->camera, name, 90);
} break;
case SDLK_ESCAPE:
if (state->curr_menu == MENU_NONE) {
state->curr_menu = MENU_MAIN;
} else if (state->curr_menu == MENU_MAIN) {
state->curr_menu = MENU_NONE;
} else {
state->curr_menu = MENU_MAIN;
}
menu_needs_rerendering = true;
break;
case SDLK_UP: if (menu_option_count(state)) {
state->menu_sel[state->curr_menu]--;
if (state->menu_sel[state->curr_menu] < 0)
state->menu_sel[state->curr_menu] += menu_option_count(state);
menu_needs_rerendering = true;
}
break;
case SDLK_DOWN: if (menu_option_count(state)) {
state->menu_sel[state->curr_menu]++;
if (state->menu_sel[state->curr_menu] >= menu_option_count(state))
state->menu_sel[state->curr_menu] = 0;
menu_needs_rerendering = true;
}
break;
case SDLK_RIGHT:
case SDLK_RETURN:
if (state->curr_menu == MENU_MAIN) {
switch (main_menu[state->menu_sel[MENU_MAIN]]) {
case MENU_OPT_QUIT:
goto quit;
case MENU_OPT_RESOLUTION: if (state->camera) {
state->curr_menu = MENU_RESOLUTION;
menu_needs_rerendering = true;
// set menu_sel
PictureFormat *resolutions = camera_get_resolutions_with_pixfmt(state->camera, camera_pixel_format(state->camera));
arr_foreach_ptr(resolutions, PictureFormat, resolution) {
if (resolution->width == camera_frame_width(state->camera)
&& resolution->height == camera_frame_height(state->camera)) {
state->menu_sel[MENU_RESOLUTION] = (int)(resolution - resolutions);
}
}
arr_free(resolutions);
} break;
case MENU_OPT_INPUT:
if (state->cameras) {
state->curr_menu = MENU_INPUT;
menu_needs_rerendering = true;
state->menu_sel[MENU_INPUT] = 0;
arr_foreach_ptr(state->cameras, Camera *, pcam) {
if (*pcam == state->camera) {
state->menu_sel[MENU_INPUT] = (int)(pcam - state->cameras);
}
}
}
break;
case MENU_OPT_PIXFMT: if (state->camera) {
state->curr_menu = MENU_PIXFMT;
menu_needs_rerendering = true;
// set menu_sel
uint32_t *pixfmts = camera_get_pixfmts(state->camera);
arr_foreach_ptr(pixfmts, uint32_t, pixfmt) {
if (*pixfmt == camera_pixel_format(state->camera)) {
state->menu_sel[MENU_PIXFMT] = (int)(pixfmt - pixfmts);
}
}
arr_free(pixfmts);
} break;
}
} else if (state->curr_menu == MENU_RESOLUTION) {
PictureFormat *resolutions = camera_get_resolutions_with_pixfmt(state->camera, camera_pixel_format(state->camera));
camera_set_format(state->camera,
resolutions[state->menu_sel[state->curr_menu]],
camera_access_method(state->camera),
false);
arr_free(resolutions);
} else if (state->curr_menu == MENU_INPUT) {
Camera *new_camera = state->cameras[state->menu_sel[MENU_INPUT]];
if (state->camera == new_camera) {
// already using this camera
} else {
camera_close(state->camera);
state->camera = new_camera;
camera_open(state->camera);
}
} else if (state->curr_menu == MENU_PIXFMT) {
uint32_t *pixfmts = camera_get_pixfmts(state->camera);
uint32_t pixfmt = pixfmts[state->menu_sel[state->curr_menu]];
PictureFormat new_picfmt = camera_closest_resolution(state->camera, pixfmt, camera_frame_width(state->camera), camera_frame_height(state->camera));
arr_free(pixfmts);
camera_set_format(state->camera,
new_picfmt,
camera_access_method(state->camera),
false);
}
break;
}
}
static int prev_window_width, prev_window_height;
int window_width = 0, window_height = 0;
SDL_GetWindowSize(window, &window_width, &window_height);
// not all window size changes seem to generate WINDOWEVENT_RESIZED.
menu_needs_rerendering |= window_width != prev_window_width;
menu_needs_rerendering |= window_height != prev_window_height;
prev_window_width = window_width;
prev_window_height = window_height;
int menu_width = window_width / 2, menu_height = window_height / 2;
if (window_height * 16 > window_width * 9) {
menu_width = menu_height * 16 / 9;
}
if (menu_width > window_width - 10) {
menu_width = window_width - 10;
menu_height = menu_width * 9 / 16;
}
if (menu_width <= 10 || menu_height <= 10) {
// prevent division by zero, etc.
// (but the menu will not be legible)
menu_width = 16;
menu_height = 9;
}
menu_width = (menu_width + 7) / 8 * 8; // play nice with pixel store alignment
menu_needs_rerendering &= state->curr_menu != 0;
if (menu_needs_rerendering) {
// render menu
SDL_Surface *menu = SDL_CreateRGBSurfaceWithFormat(0, menu_width, menu_height, 8, SDL_PIXELFORMAT_RGB24);
SDL_FillRect(menu, NULL, 0x332244);
int font_size = menu_height / 20;
TTF_SetFontSize(font, font_size);
SDL_Color text_color = {255, 255, 255, 255};
SDL_Color highlight_color = {255, 255, 0, 255};
size_t n_options = menu_option_count(state);
uint32_t *pixfmts = state->camera ? camera_get_pixfmts(state->camera) : NULL;
PictureFormat *resolutions = state->camera ? camera_get_resolutions_with_pixfmt(state->camera, camera_pixel_format(state->camera)) : NULL;
for (int opt_idx = 0; opt_idx < (int)n_options; opt_idx++) {
char *option = NULL;
switch (state->curr_menu) {
case MENU_MAIN:
switch (main_menu[opt_idx]) {
case MENU_OPT_QUIT:
option = strdup("Quit");
break;
case MENU_OPT_RESOLUTION:
if (state->camera) {
option = a_sprintf("Resolution: %" PRId32 "x%" PRId32,
camera_frame_width(state->camera), camera_frame_height(state->camera));
} else {
option = a_sprintf("Resolution: None");
}
break;
case MENU_OPT_INPUT:
option = a_sprintf("Input: %s", state->camera ? camera_name(state->camera) : "None");
break;
case MENU_OPT_PIXFMT:
option = a_sprintf("Picture format: %s",
state->camera ? pixfmt_to_string(camera_pixel_format(state->camera))
: "None");
break;
default:
assert(false);
option = strdup("???");
}
break;
case MENU_RESOLUTION:
option = a_sprintf("%" PRId32 "x%" PRId32, resolutions[opt_idx].width, resolutions[opt_idx].height);
break;
case MENU_INPUT:
option = strdup(camera_name(state->cameras[opt_idx]));
break;
case MENU_PIXFMT:
option = a_sprintf("%s", pixfmt_to_string(pixfmts[opt_idx]));
break;
case MENU_NONE:
case MENU_COUNT:
assert(false);
break;
}
int options_per_column = 10;
int n_columns = (n_options + options_per_column - 1) / options_per_column;
int column_spacing = (menu_width - 10) / n_columns;
render_text_to_surface(font, menu, 5 + (opt_idx / options_per_column) * column_spacing,
5 + (opt_idx % options_per_column) * (5 + font_size),
state->menu_sel[state->curr_menu] == opt_idx
? highlight_color
: text_color, option);
free(option);
}
arr_free(pixfmts);
arr_free(resolutions);
gl_BindTexture(GL_TEXTURE_2D, menu_texture);
SDL_LockSurface(menu);
gl_TexImage2D(GL_TEXTURE_2D, 0, GL_RGB, menu_width, menu_height, 0, GL_RGB, GL_UNSIGNED_BYTE, menu->pixels);
SDL_UnlockSurface(menu);
SDL_FreeSurface(menu);
}
gl_Viewport(0, 0, window_width, window_height);
gl_ClearColor(0, 0, 0, 1);
gl_Clear(GL_COLOR_BUFFER_BIT);
clock_gettime(CLOCK_MONOTONIC, &ts);
double t = (double)ts.tv_sec + (double)ts.tv_nsec * 1e-9;
// printf("%.1fms frame time\n",(t-last_time)*1000);
last_time = t; (void)last_time;
gl_UseProgram(program);
gl_ActiveTexture(GL_TEXTURE0);
gl_Uniform1i(u_sampler, 0);
gl_Uniform1f(u_opacity, 1);
{
// letterboxing
const uint32_t frame_width = state->camera ? camera_frame_width(state->camera) : no_camera_width;
const uint32_t frame_height = state->camera ? camera_frame_height(state->camera) : no_camera_height;
if ((uint64_t)window_width * frame_height > (uint64_t)frame_width * window_height) {
// window is wider than picture
float letterbox_size = window_width - (float)window_height / frame_height * frame_width;
letterbox_size /= window_width;
gl_Uniform2f(u_scale, 1-letterbox_size, 1);
} else if ((uint64_t)window_width * frame_height < (uint64_t)frame_width * window_height) {
// window is narrower than picture
float letterbox_size = window_height - (float)window_width / frame_width * frame_height;
letterbox_size /= window_height;
gl_Uniform2f(u_scale, 1, 1-letterbox_size);
} else {
// don't mess with fp inaccuracy
gl_Uniform2f(u_scale, 1, 1);
}
}
if (state->camera) {
gl_BindTexture(GL_TEXTURE_2D, texture);
if (camera_next_frame(state->camera)) {
camera_update_gl_texture_2d(state->camera);
}
gl_Uniform1i(u_pixel_format, camera_pixel_format(state->camera));
} else {
gl_BindTexture(GL_TEXTURE_2D, no_camera_texture);
gl_Uniform1i(u_pixel_format, V4L2_PIX_FMT_RGB24);
}
gl_Disable(GL_BLEND);
gl_BindBuffer(GL_ARRAY_BUFFER, vbo);
gl_BindVertexArray(vao);
gl_DrawArrays(GL_TRIANGLES, 0, (GLsizei)(3 * ntriangles));
if (state->curr_menu) {
gl_Enable(GL_BLEND);
gl_ActiveTexture(GL_TEXTURE0);
gl_BindTexture(GL_TEXTURE_2D, menu_texture);
gl_Uniform2f(u_scale, (float)menu_width / window_width, (float)menu_height / window_height);
gl_Uniform1i(u_sampler, 0);
gl_Uniform1f(u_opacity, 0.9f);
gl_Uniform1i(u_pixel_format, V4L2_PIX_FMT_RGB24);
gl_DrawArrays(GL_TRIANGLES, 0, (GLsizei)(3 * ntriangles));
}
SDL_GL_SwapWindow(window);
}
quit:
udev_monitor_unref(udev_monitor);
udev_unref(udev);
//debug_save_24bpp_bmp("out.bmp", buf, camera->best_format.fmt.pix.width, camera->best_format.fmt.pix.height);
arr_foreach_ptr(state->cameras, Camera *, pcamera) {
camera_free(*pcamera);
}
arr_free(state->cameras);
SDL_Quit();
return 0;
}
|