forked from xxxbsd/motion
-
Notifications
You must be signed in to change notification settings - Fork 1
/
video_bktr.c
969 lines (770 loc) · 27.4 KB
/
video_bktr.c
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
/* video_bktr.c
*
* BSD Video stream functions for motion.
* Copyright 2004 by Angel Carpintero (motiondevelop@gmail.com)
* This software is distributed under the GNU public license version 2
* See also the file 'COPYING'.
*
*/
/* For rotation */
#include "rotate.h" /* Already includes motion.h */
#include "video_common.h"
#include "video_bktr.h"
#ifdef HAVE_BKTR
#include <sys/mman.h>
#if defined(__NetBSD__) || defined(__OpenBSD__)
#include <dev/ic/bt8xx.h>
#else
#include <dev/bktr/ioctl_meteor.h>
#include <dev/bktr/ioctl_bt848.h>
#endif
#define array_elem(x) (sizeof(x) / sizeof((x)[0]))
#define BKTR_PAL 0
#define BKTR_NTSC 1
#define BKTR_SECAM 2
#define BKTR_PAL_NC 3
#define BKTR_PAL_HEIGHT 576
#define BKTR_SECAM_HEIGHT 576
#define BKTR_NTSC_HEIGHT 480
#define BKTR_IN_COMPOSITE 0
#define BKTR_IN_TV 1
#define BKTR_IN_COMPOSITE2 2
#define BKTR_IN_SVIDEO 3
#define BKTR_NORM_DEFAULT BT848_IFORM_F_AUTO
#define BKTR_NORM_PAL BT848_IFORM_F_PALBDGHI
#define BKTR_NORM_NTSC BT848_IFORM_F_NTSCM
#define BKTR_NORM_SECAM BT848_IFORM_F_SECAM
volatile sig_atomic_t bktr_frame_waiting;
static pthread_mutex_t bktr_mutex;
static struct video_dev *viddevs = NULL;
static void catchsignal(int sig)
{
bktr_frame_waiting++;
}
static int bktr_set_hue(int viddev, int new_hue)
{
signed char ioctlval = new_hue;
if (ioctl(viddev, METEORSHUE, &ioctlval) < 0) {
MOTION_LOG(ERR, TYPE_VIDEO, SHOW_ERRNO, "METEORSHUE Error setting hue [%d]",
new_hue);
return -1;
}
MOTION_LOG(NTC, TYPE_VIDEO, NO_ERRNO, "to [%d]", ioctlval);
return ioctlval;
}
static int bktr_get_hue(int viddev , int *hue)
{
signed char ioctlval;
if (ioctl(viddev, METEORGHUE, &ioctlval) < 0) {
MOTION_LOG(ERR, TYPE_VIDEO, SHOW_ERRNO, "METEORGHUE Error getting hue");
return -1;
}
MOTION_LOG(NTC, TYPE_VIDEO, NO_ERRNO, "to [%d]", ioctlval);
*hue = ioctlval;
return ioctlval;
}
static int bktr_set_saturation(int viddev, int new_saturation)
{
unsigned char ioctlval= new_saturation;
if (ioctl(viddev, METEORSCSAT, &ioctlval) < 0) {
MOTION_LOG(ERR, TYPE_VIDEO, SHOW_ERRNO, "METEORSCSAT Error setting saturation [%d]",
new_saturation);
return -1;
}
MOTION_LOG(NTC, TYPE_VIDEO, NO_ERRNO, "to [%d]", ioctlval);
return ioctlval;
}
static int bktr_get_saturation(int viddev , int *saturation)
{
unsigned char ioctlval;
if (ioctl(viddev, METEORGCSAT, &ioctlval) < 0) {
MOTION_LOG(ERR, TYPE_VIDEO, SHOW_ERRNO, "METEORGCSAT Error getting saturation");
return -1;
}
MOTION_LOG(NTC, TYPE_VIDEO, NO_ERRNO, "to [%d]", ioctlval);
*saturation = ioctlval;
return ioctlval;
}
static int bktr_set_contrast(int viddev, int new_contrast)
{
unsigned char ioctlval = new_contrast;
if (ioctl(viddev, METEORSCONT, &ioctlval) < 0) {
MOTION_LOG(ERR, TYPE_VIDEO, SHOW_ERRNO, "METEORSCONT Error setting contrast [%d]",
new_contrast);
return 0;
}
MOTION_LOG(NTC, TYPE_VIDEO, NO_ERRNO, "to [%d]", ioctlval);
return ioctlval;
}
static int bktr_get_contrast(int viddev, int *contrast)
{
unsigned char ioctlval;
if (ioctl(viddev, METEORGCONT, &ioctlval) < 0) {
MOTION_LOG(ERR, TYPE_VIDEO, SHOW_ERRNO, "METEORGCONT Error getting contrast");
return -1;
}
MOTION_LOG(NTC, TYPE_VIDEO, NO_ERRNO, "to [%d]", ioctlval);
*contrast = ioctlval;
return ioctlval;
}
static int bktr_set_brightness(int viddev, int new_bright)
{
unsigned char ioctlval = new_bright;
if (ioctl(viddev, METEORSBRIG, &ioctlval) < 0) {
MOTION_LOG(ERR, TYPE_VIDEO, SHOW_ERRNO, "METEORSBRIG brightness [%d]",
new_bright);
return -1;
}
MOTION_LOG(NTC, TYPE_VIDEO, NO_ERRNO, "to [%d]", ioctlval);
return ioctlval;
}
static int bktr_get_brightness(int viddev, int *brightness)
{
unsigned char ioctlval;
if (ioctl(viddev, METEORGBRIG, &ioctlval) < 0) {
MOTION_LOG(ERR, TYPE_VIDEO, SHOW_ERRNO, "METEORGBRIG getting brightness");
return -1;
}
MOTION_LOG(NTC, TYPE_VIDEO, NO_ERRNO, "to [%d]", ioctlval);
*brightness = ioctlval;
return ioctlval;
}
static int bktr_set_freq(struct video_dev *viddev, unsigned long freq)
{
int tuner_fd = viddev->fd_tuner;
int old_audio;
MOTION_LOG(WRN, TYPE_VIDEO, NO_ERRNO, "Not implemented");
return 0;
/* HACK maybe not need it , but seems that is needed to mute before changing frequency */
if (ioctl(tuner_fd, BT848_GAUDIO, &old_audio) < 0) {
MOTION_LOG(ERR, TYPE_VIDEO, SHOW_ERRNO, "BT848_GAUDIO");
return -1;
}
if (ioctl(tuner_fd, TVTUNER_SETFREQ, &freq) < 0) {
MOTION_LOG(ERR, TYPE_VIDEO, SHOW_ERRNO, "Tuning (TVTUNER_SETFREQ) failed, ",
"freq [%lu]", freq);
return -1;
}
old_audio &= AUDIO_MUTE;
if (old_audio) {
old_audio = AUDIO_MUTE;
if (ioctl(tuner_fd , BT848_SAUDIO, &old_audio) < 0) {
MOTION_LOG(ERR, TYPE_VIDEO, SHOW_ERRNO, "BT848_SAUDIO %i",
old_audio);
return -1;
}
}
return 0;
}
static int bktr_set_input_device(struct video_dev *viddev, unsigned input)
{
int actport;
int portdata[] = { METEOR_INPUT_DEV0, METEOR_INPUT_DEV1,
METEOR_INPUT_DEV2, METEOR_INPUT_DEV3,
METEOR_INPUT_DEV_SVIDEO };
if (input >= array_elem(portdata)) {
MOTION_LOG(ERR, TYPE_VIDEO, NO_ERRNO, "Device Input %d out of range (0-4)",
input);
return -1;
}
actport = portdata[ input ];
if (ioctl(viddev->fd_device, METEORSINPUT, &actport) < 0) {
if (input != BKTR_IN_COMPOSITE) {
MOTION_LOG(ERR, TYPE_VIDEO, SHOW_ERRNO, "METEORSINPUT %d invalid -"
"Trying composite %d", input, BKTR_IN_COMPOSITE);
input = BKTR_IN_COMPOSITE;
actport = portdata[ input ];
if (ioctl(viddev->fd_device, METEORSINPUT, &actport) < 0) {
MOTION_LOG(ERR, TYPE_VIDEO, SHOW_ERRNO, "METEORSINPUT %d init", input);
return -1;
}
} else {
MOTION_LOG(ERR, TYPE_VIDEO, SHOW_ERRNO, "METEORSINPUT %d init",
input);
return -1;
}
}
MOTION_LOG(NTC, TYPE_VIDEO, NO_ERRNO, "to [%d]", input);
return input;
}
static int bktr_set_input_format(struct video_dev *viddev, unsigned newformat)
{
int input_format[] = { BKTR_NORM_PAL, BKTR_NORM_NTSC, BKTR_NORM_SECAM, BKTR_NORM_DEFAULT};
int format;
if (newformat >= array_elem(input_format)) {
MOTION_LOG(WRN, TYPE_VIDEO, NO_ERRNO, "Input format %d out of range (0-2)",
newformat);
return -1;
}
format = input_format[newformat];
if (ioctl(viddev->fd_device, BT848SFMT, &format) < 0) {
MOTION_LOG(WRN, TYPE_VIDEO, SHOW_ERRNO, "BT848SFMT, Couldn't set the input format, "
"try again with default");
format = BKTR_NORM_DEFAULT;
newformat = 3;
if (ioctl(viddev->fd_device, BT848SFMT, &format) < 0) {
MOTION_LOG(ERR, TYPE_VIDEO, SHOW_ERRNO, "BT848SFMT, Couldn't set the input format "
"either default");
return -1;
}
}
MOTION_LOG(NTC, TYPE_VIDEO, NO_ERRNO, "to %d", newformat);
return newformat;
}
static int bktr_set_geometry(struct video_dev *viddev, int width, int height)
{
struct meteor_geomet geom;
int h_max;
geom.columns = width;
geom.rows = height;
geom.oformat = METEOR_GEO_YUV_422 | METEOR_GEO_YUV_12;
switch (viddev->norm) {
case BKTR_PAL:
h_max = BKTR_PAL_HEIGHT;
break;
case BKTR_NTSC:
h_max = BKTR_NTSC_HEIGHT;
break;
case BKTR_SECAM:
h_max = BKTR_SECAM_HEIGHT;
break;
default:
h_max = BKTR_PAL_HEIGHT;
}
if (height <= h_max / 2)
geom.oformat |= METEOR_GEO_EVEN_ONLY;
geom.frames = 1;
if (ioctl(viddev->fd_device, METEORSETGEO, &geom) < 0) {
MOTION_LOG(ERR, TYPE_VIDEO, SHOW_ERRNO, "Couldn't set the geometry");
return -1;
}
MOTION_LOG(NTC, TYPE_VIDEO, NO_ERRNO, "to [%d/%d] Norm %d",
width, height, viddev->norm);
return 0;
}
static void bktr_picture_controls(struct context *cnt, struct video_dev *viddev)
{
int dev = viddev->fd_device;
if ((cnt->conf.contrast) && (cnt->conf.contrast != viddev->contrast)) {
bktr_set_contrast(dev, cnt->conf.contrast);
viddev->contrast = cnt->conf.contrast;
}
if ((cnt->conf.hue) && (cnt->conf.hue != viddev->hue)) {
bktr_set_hue(dev, cnt->conf.hue);
viddev->hue = cnt->conf.hue;
}
if ((cnt->conf.brightness) &&
(cnt->conf.brightness != viddev->brightness)) {
bktr_set_brightness(dev, cnt->conf.brightness);
viddev->brightness = cnt->conf.brightness;
}
if ((cnt->conf.saturation) &&
(cnt->conf.saturation != viddev->saturation)) {
bktr_set_saturation(dev, cnt->conf.saturation);
viddev->saturation = cnt->conf.saturation;
}
}
static unsigned char *bktr_device_init(struct video_dev *viddev, int width, int height,
unsigned input, unsigned norm, unsigned long freq)
{
int dev_bktr = viddev->fd_device;
struct sigaction act, old;
//int dev_tunner = viddev->fd_tuner;
/* to ensure that all device will be support the capture mode
_TODO_ : Autodected the best capture mode .
*/
int dummy = 1;
// int pixelformat = BSD_VIDFMT_I420;
void *map;
/* If we have choose the tuner is needed to setup the frequency. */
if ((viddev->tuner_device != NULL) && (input == BKTR_IN_TV)) {
if (!freq) {
MOTION_LOG(WRN, TYPE_VIDEO, NO_ERRNO, "Not valid Frequency [%lu] for "
"Source input [%i]", freq, input);
return NULL;
} else if (bktr_set_freq(viddev, freq) == -1) {
MOTION_LOG(NTC, TYPE_VIDEO, NO_ERRNO, "Frequency [%lu] Source input [%i]",
freq, input);
return NULL;
}
}
/* FIXME if we set as input tuner , we need to set option for tuner not for bktr */
if ((dummy = bktr_set_input_device(viddev, input)) == -1) {
MOTION_LOG(NTC, TYPE_VIDEO, NO_ERRNO, "set input [%d]", input);
return NULL;
}
viddev->input = dummy;
if ((dummy = bktr_set_input_format(viddev, norm)) == -1) {
MOTION_LOG(NTC, TYPE_VIDEO, NO_ERRNO, "set input format [%d]",
norm);
return NULL;
}
viddev->norm = dummy;
if (bktr_set_geometry(viddev, width, height) == -1) {
MOTION_LOG(NTC, TYPE_VIDEO, NO_ERRNO, "set geometry [%d]x[%d]",
width, height);
return NULL;
}
if (freq) {
MOTION_LOG(WRN, TYPE_VIDEO, NO_ERRNO, "Frequency set (no implemented yet");
}
/*
* Set capture mode and capture buffers
* That is the buffer size for capture images ,
* so is dependent of color space of input format / FIXME
*/
viddev->v4l_bufsize = (((width * height * 3 / 2)) * sizeof(unsigned char));
viddev->v4l_fmt = VIDEO_PALETTE_YUV420P;
map = mmap((caddr_t)0, viddev->v4l_bufsize, PROT_READ|PROT_WRITE, MAP_SHARED,
dev_bktr, (off_t)0);
if (map == MAP_FAILED) {
MOTION_LOG(ERR, TYPE_VIDEO, SHOW_ERRNO, "mmap failed");
return NULL;
}
/* FIXME double buffer */
if (0) {
viddev->v4l_maxbuffer = 2;
viddev->v4l_buffers[0] = map;
viddev->v4l_buffers[1] = (unsigned char *)map + 0; /* 0 is not valid just a test */
//viddev->v4l_buffers[1] = map+vid_buf.offsets[1];
} else {
viddev->v4l_buffers[0] = map;
viddev->v4l_maxbuffer = 1;
}
viddev->v4l_curbuffer = 0;
/* Clear the buffer */
if (ioctl(dev_bktr, BT848SCBUF, &dummy) < 0) {
MOTION_LOG(ERR, TYPE_VIDEO, SHOW_ERRNO, "BT848SCBUF");
return NULL;
}
/* Signal handler to know when data is ready to be read() */
memset(&act, 0, sizeof(act));
sigemptyset(&act.sa_mask);
act.sa_handler = catchsignal;
sigaction(SIGUSR2, &act, &old);
dummy = SIGUSR2;
//viddev->capture_method = METEOR_CAP_CONTINOUS;
//viddev->capture_method = METEOR_CAP_SINGLE;
if ((viddev->capture_method == METEOR_CAP_CONTINOUS) &&
(ioctl(dev_bktr, METEORSSIGNAL, &dummy) < 0)) {
MOTION_LOG(NTC, TYPE_VIDEO, NO_ERRNO, "METEORSSIGNAL");
viddev->capture_method = METEOR_CAP_SINGLE;
if (ioctl(dev_bktr, METEORCAPTUR, &viddev->capture_method) < 0) {
MOTION_LOG(ERR, TYPE_VIDEO, SHOW_ERRNO, "METEORCAPTUR using single method "
"Error capturing");
MOTION_LOG(NTC, TYPE_VIDEO, NO_ERRNO, "METEORCAPTUR using single method "
"Error capturing");
}
} else {
if (ioctl(dev_bktr, METEORCAPTUR, &viddev->capture_method) < 0) {
viddev->capture_method = METEOR_CAP_SINGLE;
if (ioctl(dev_bktr, METEORCAPTUR, &viddev->capture_method) < 0) {
MOTION_LOG(ERR, TYPE_VIDEO, SHOW_ERRNO, "METEORCAPTUR using single method "
"Error capturing");
}
}
}
if (viddev->capture_method == METEOR_CAP_CONTINOUS)
MOTION_LOG(NTC, TYPE_VIDEO, NO_ERRNO, "METEORCAPTUR METEOR_CAP_CONTINOUS");
else
MOTION_LOG(NTC, TYPE_VIDEO, NO_ERRNO, "METEORCAPTUR METEOR_CAP_SINGLE");
// settle , sleep(1) replaced
SLEEP(1, 0);
/* FIXME */
switch (viddev->v4l_fmt) {
case VIDEO_PALETTE_YUV420P:
viddev->v4l_bufsize = (width * height * 3) / 2;
break;
case VIDEO_PALETTE_YUV422:
viddev->v4l_bufsize = (width * height * 2);
break;
case VIDEO_PALETTE_RGB24:
viddev->v4l_bufsize = (width * height * 3);
break;
case VIDEO_PALETTE_GREY:
viddev->v4l_bufsize = width * height;
break;
}
MOTION_LOG(NTC, TYPE_VIDEO, NO_ERRNO, "HUE [%d]",
bktr_get_hue(dev_bktr, &dummy));
MOTION_LOG(NTC, TYPE_VIDEO, NO_ERRNO, "SATURATION [%d]",
bktr_get_saturation(dev_bktr, &dummy));
MOTION_LOG(NTC, TYPE_VIDEO, NO_ERRNO, "BRIGHTNESS [%d]",
bktr_get_brightness(dev_bktr, &dummy));
MOTION_LOG(NTC, TYPE_VIDEO, NO_ERRNO, "CONTRAST [%d]",
bktr_get_contrast(dev_bktr, &dummy));
return map;
}
/**
* bktr_capture fetches a video frame from a v4l device
* Parameters:
* viddev Pointer to struct containing video device handle
* map Pointer to the buffer in which the function puts the new image
* width Width of image in pixels
* height Height of image in pixels
*
* Returns
* 0 Success
* -1 Fatal error
* 1 Non fatal error (not implemented)
*/
static int bktr_capture(struct video_dev *viddev, unsigned char *map, int width, int height)
{
int dev_bktr = viddev->fd_device;
unsigned char *cap_map = NULL;
int single = METEOR_CAP_SINGLE;
sigset_t set, old;
/* ONLY MMAP method is used to Capture */
/*
* Allocates a new mmap buffer
* Block signals during IOCTL
*/
sigemptyset (&set);
sigaddset (&set, SIGCHLD);
sigaddset (&set, SIGALRM);
sigaddset (&set, SIGUSR1);
sigaddset (&set, SIGTERM);
sigaddset (&set, SIGHUP);
pthread_sigmask(SIG_BLOCK, &set, &old);
cap_map = viddev->v4l_buffers[viddev->v4l_curbuffer];
viddev->v4l_curbuffer++;
if (viddev->v4l_curbuffer >= viddev->v4l_maxbuffer)
viddev->v4l_curbuffer = 0;
/* Capture */
if (viddev->capture_method == METEOR_CAP_CONTINOUS) {
if (bktr_frame_waiting)
bktr_frame_waiting = 0;
} else if (ioctl(dev_bktr, METEORCAPTUR, &single) < 0) {
MOTION_LOG(ERR, TYPE_VIDEO, SHOW_ERRNO, "Error capturing using single method");
sigprocmask(SIG_UNBLOCK, &old, NULL);
return -1;
}
/* Undo the signal blocking */
pthread_sigmask(SIG_UNBLOCK, &old, NULL);
switch (viddev->v4l_fmt) {
case VIDEO_PALETTE_RGB24:
vid_rgb24toyuv420p(map, cap_map, width, height);
break;
case VIDEO_PALETTE_YUV422:
vid_yuv422to420p(map, cap_map, width, height);
break;
default:
memcpy(map, cap_map, viddev->v4l_bufsize);
}
return 0;
}
static void bktr_set_input(struct context *cnt, struct video_dev *viddev, unsigned char *map, int width,
int height, int input, int norm, int skip, unsigned long freq)
{
if (input != viddev->input || norm != viddev->norm || freq != viddev->freq) {
int dummy;
unsigned long frequnits = freq;
if ((dummy = bktr_set_input_device(viddev, input)) == -1)
return;
viddev->input = dummy;
if ((dummy = bktr_set_input_format(viddev, norm)) == -1)
return;
viddev->norm = dummy;
if ((viddev->tuner_device != NULL) && (viddev->input == BKTR_IN_TV) &&
(frequnits > 0)) {
if (bktr_set_freq(viddev, freq) == -1)
return;
}
bktr_picture_controls(cnt, viddev);
viddev->freq = freq;
/* skip a few frames if needed */
for (dummy = 0; dummy < skip; dummy++)
bktr_capture(viddev, map, width, height);
} else {
/* No round robin - we only adjust picture controls */
bktr_picture_controls(cnt, viddev);
}
}
#endif /* HAVE_BKTR */
void bktr_mutex_init(void)
{
int chk_bktr;
#ifdef HAVE_BKTR
pthread_mutex_init(&bktr_mutex, NULL);
chk_bktr = 0;
#else
chk_bktr = 1;
#endif
if (chk_bktr == 1) MOTION_LOG(DBG, TYPE_VIDEO, NO_ERRNO, "BKTR is not enabled.");
}
void bktr_mutex_destroy(void)
{
int chk_bktr;
#ifdef HAVE_BKTR
pthread_mutex_destroy(&bktr_mutex);
chk_bktr = 0;
#else
chk_bktr = 1;
#endif
if (chk_bktr == 1) MOTION_LOG(DBG, TYPE_VIDEO, NO_ERRNO, "BKTR is not enabled.");
}
void bktr_cleanup(struct context *cnt)
{
#ifdef HAVE_BKTR
struct video_dev *dev = viddevs;
struct video_dev *prev = NULL;
/* Cleanup the v4l part */
pthread_mutex_lock(&bktr_mutex);
while (dev) {
if (dev->fd_device == cnt->video_dev)
break;
prev = dev;
dev = dev->next;
}
pthread_mutex_unlock(&bktr_mutex);
/* Set it as closed in thread context. */
cnt->video_dev = -1;
if (dev == NULL) {
MOTION_LOG(CRT, TYPE_VIDEO, NO_ERRNO, "Unable to find video device");
return;
}
if (--dev->usage_count == 0) {
MOTION_LOG(NTC, TYPE_VIDEO, NO_ERRNO, "Closing video device %s",
dev->video_device);
if (dev->fd_tuner > 0)
close(dev->fd_tuner);
if (dev->fd_device > 0) {
if (dev->capture_method == METEOR_CAP_CONTINOUS) {
dev->fd_tuner = METEOR_CAP_STOP_CONT;
ioctl(dev->fd_device, METEORCAPTUR, &dev->fd_tuner);
}
close(dev->fd_device);
dev->fd_tuner = -1;
}
munmap(viddevs->v4l_buffers[0], viddevs->v4l_bufsize);
viddevs->v4l_buffers[0] = MAP_FAILED;
dev->fd_device = -1;
pthread_mutex_lock(&bktr_mutex);
/* Remove from list */
if (prev == NULL)
viddevs = dev->next;
else
prev->next = dev->next;
pthread_mutex_unlock(&bktr_mutex);
pthread_mutexattr_destroy(&dev->attr);
pthread_mutex_destroy(&dev->mutex);
free(dev);
} else {
MOTION_LOG(NTC, TYPE_VIDEO, NO_ERRNO, "Still %d users of video device %s, "
"so we don't close it now", dev->usage_count,
dev->video_device);
/*
* There is still at least one thread using this device
* If we own it, release it.
*/
if (dev->owner == cnt->threadnr) {
dev->frames = 0;
dev->owner = -1;
pthread_mutex_unlock(&dev->mutex);
}
}
#else
if (!cnt) MOTION_LOG(DBG, TYPE_VIDEO, NO_ERRNO, "BKTR is not enabled.");
#endif
}
int bktr_start(struct context *cnt)
{
#ifdef HAVE_BKTR
struct config *conf = &cnt->conf;
struct video_dev *dev;
int fd_tuner = -1;
int width, height, capture_method;
unsigned input, norm;
unsigned long frequency;
int fd_device = -1;
MOTION_LOG(NTC, TYPE_VIDEO, NO_ERRNO, "[%s]",
conf->video_device);
/*
* We use width and height from conf in this function. They will be assigned
* to width and height in imgs here, and capture_width_norm and capture_height_norm in
* rotate_data won't be set until in rotate_init.
* Motion requires that width and height are multiples of 8 so we check for this.
*/
if (conf->width % 8) {
MOTION_LOG(CRT, TYPE_VIDEO, NO_ERRNO, "config image width (%d) is not modulo 8", conf->width);
return -2;
}
if (conf->height % 8) {
MOTION_LOG(CRT, TYPE_VIDEO, NO_ERRNO, "config image height (%d) is not modulo 8", conf->height);
return -2;
}
width = conf->width;
height = conf->height;
input = conf->input;
norm = conf->norm;
frequency = conf->frequency;
capture_method = METEOR_CAP_CONTINOUS;
pthread_mutex_lock(&bktr_mutex);
/*
* Transfer width and height from conf to imgs. The imgs values are the ones
* that is used internally in Motion. That way, setting width and height via
* http remote control won't screw things up.
*/
cnt->imgs.width = width;
cnt->imgs.height = height;
/*
* First we walk through the already discovered video devices to see
* if we have already setup the same device before. If this is the case
* the device is a Round Robin device and we set the basic settings
* and return the file descriptor.
*/
dev = viddevs;
while (dev) {
if (!strcmp(conf->video_device, dev->video_device)) {
int dummy = METEOR_CAP_STOP_CONT;
dev->usage_count++;
cnt->imgs.type = dev->v4l_fmt;
if (ioctl(dev->fd_device, METEORCAPTUR, &dummy) < 0) {
MOTION_LOG(CRT, TYPE_VIDEO, SHOW_ERRNO, "Stopping capture");
return -1;
}
MOTION_LOG(NTC, TYPE_VIDEO, NO_ERRNO, "Reusing [%s] inputs [%d,%d] Change "
"capture method METEOR_CAP_SINGLE", dev->video_device,
dev->input, conf->input);
dev->capture_method = METEOR_CAP_SINGLE;
switch (cnt->imgs.type) {
case VIDEO_PALETTE_GREY:
cnt->imgs.motionsize = width * height;
cnt->imgs.size_norm = width * height;
break;
case VIDEO_PALETTE_RGB24:
case VIDEO_PALETTE_YUV422:
cnt->imgs.type = VIDEO_PALETTE_YUV420P;
case VIDEO_PALETTE_YUV420P:
MOTION_LOG(NTC, TYPE_VIDEO, NO_ERRNO, "VIDEO_PALETTE_YUV420P setting"
" imgs.size_norm and imgs.motionsize");
cnt->imgs.motionsize = width * height;
cnt->imgs.size_norm = (width * height * 3) / 2;
break;
}
pthread_mutex_unlock(&bktr_mutex);
return dev->fd_device; // FIXME return fd_tuner ?!
}
dev = dev->next;
}
dev = mymalloc(sizeof(struct video_dev));
fd_device = open(conf->video_device, O_RDWR);
if (fd_device < 0) {
MOTION_LOG(CRT, TYPE_VIDEO, SHOW_ERRNO, "open video device %s",
conf->video_device);
free(dev);
pthread_mutex_unlock(&bktr_mutex);
return -1;
}
/* Only open tuner if conf->tuner_device has set , freq and input is 1. */
if ((conf->tuner_device != NULL) && (frequency > 0) && (input == BKTR_IN_TV)) {
fd_tuner = open(conf->tuner_device, O_RDWR);
if (fd_tuner < 0) {
MOTION_LOG(CRT, TYPE_VIDEO, SHOW_ERRNO, "open tuner device %s",
conf->tuner_device);
free(dev);
pthread_mutex_unlock(&bktr_mutex);
return -1;
}
}
pthread_mutexattr_init(&dev->attr);
pthread_mutex_init(&dev->mutex, &dev->attr);
dev->usage_count = 1;
dev->video_device = conf->video_device;
dev->tuner_device = conf->tuner_device;
dev->fd_device = fd_device;
dev->fd_tuner = fd_tuner;
dev->input = input;
dev->height = height;
dev->width = width;
dev->freq = frequency;
dev->owner = -1;
dev->capture_method = capture_method;
/*
* We set brightness, contrast, saturation and hue = 0 so that they only get
* set if the config is not zero.
*/
dev->brightness = 0;
dev->contrast = 0;
dev->saturation = 0;
dev->hue = 0;
dev->owner = -1;
/* Default palette */
dev->v4l_fmt = VIDEO_PALETTE_YUV420P;
dev->v4l_curbuffer = 0;
dev->v4l_maxbuffer = 1;
if (!bktr_device_init(dev, width, height, input, norm, frequency)) {
close(dev->fd_device);
pthread_mutexattr_destroy(&dev->attr);
pthread_mutex_destroy(&dev->mutex);
free(dev);
pthread_mutex_unlock(&bktr_mutex);
return -1;
}
cnt->imgs.type = dev->v4l_fmt;
switch (cnt->imgs.type) {
case VIDEO_PALETTE_GREY:
cnt->imgs.size_norm = width * height;
cnt->imgs.motionsize = width * height;
break;
case VIDEO_PALETTE_RGB24:
case VIDEO_PALETTE_YUV422:
cnt->imgs.type = VIDEO_PALETTE_YUV420P;
case VIDEO_PALETTE_YUV420P:
MOTION_LOG(NTC, TYPE_VIDEO, NO_ERRNO, "VIDEO_PALETTE_YUV420P imgs.type");
cnt->imgs.size_norm = (width * height * 3) / 2;
cnt->imgs.motionsize = width * height;
break;
}
/* Insert into linked list */
dev->next = viddevs;
viddevs = dev;
pthread_mutex_unlock(&bktr_mutex);
return fd_device;
#else
if (!cnt) MOTION_LOG(DBG, TYPE_VIDEO, NO_ERRNO, "BKTR is not enabled.");
return -1;
#endif
}
int bktr_next(struct context *cnt, struct image_data *img_data)
{
#ifdef HAVE_BKTR
struct config *conf = &cnt->conf;
struct video_dev *dev;
int width, height;
int dev_bktr = cnt->video_dev;
int ret = -1;
/* NOTE: Since this is a capture, we need to use capture dimensions. */
width = cnt->rotate_data.capture_width_norm;
height = cnt->rotate_data.capture_height_norm;
pthread_mutex_lock(&bktr_mutex);
dev = viddevs;
while (dev) {
if (dev->fd_device == dev_bktr)
break;
dev = dev->next;
}
pthread_mutex_unlock(&bktr_mutex);
if (dev == NULL)
return V4L2_FATAL_ERROR;
if (dev->owner != cnt->threadnr) {
pthread_mutex_lock(&dev->mutex);
dev->owner = cnt->threadnr;
dev->frames = conf->roundrobin_frames;
}
bktr_set_input(cnt, dev, img_data->image_norm, width, height, conf->input, conf->norm,
conf->roundrobin_skip, conf->frequency);
ret = bktr_capture(dev, img_data->image_norm, width, height);
if (--dev->frames <= 0) {
dev->owner = -1;
dev->frames = 0;
pthread_mutex_unlock(&dev->mutex);
}
/* Rotate the image as specified */
rotate_map(cnt, img_data);
return ret;
#else
if (!cnt || !img_data) MOTION_LOG(DBG, TYPE_VIDEO, NO_ERRNO, "BKTR is not enabled.");
return -1;
#endif
}