File: TODO

package info (click to toggle)
hasciicam 0.9.1-2.1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 496 kB
  • ctags: 190
  • sloc: sh: 3,220; ansic: 1,705; makefile: 54
file content (20 lines) | stat: -rw-r--r-- 524 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

implement YUV420P grabbing to support pwc driver
how to recognize pwc webcams:

IsPhilips = FALSE;
   if (ioctl(cam_fd, VIDIOCGCAP, &vcap) < 0)
     return;
   if (sscanf(vcap.name, "Philips %d webcam", &type) < 1) {
     /* No match yet; try the PROBE */
     if (ioctl(cam_fd, VIDIOCPWCPROBE, &probe) == 0)
       if (!strcmp(vcap.name == probe.name))
         IsPhilips = TRUE;
   }
   else
     IsPhilips = TRUE;


and some other ideas i'd love to find the time to realize or at least to
write about in this TODO file