preparation du moteur de brotchage

master
Tonton Th 4 years ago
parent 6527f5d398
commit 2a40718410

1
.gitignore vendored

@ -13,6 +13,7 @@ essai
v4l2/t
v4l2/capture
v4l2/v4l2grab
v4l2/*.o
v4l2/*.ppm

@ -13,5 +13,9 @@ t: t.c Makefile ${DEPS} funcs.o
# external things
capture: capture.c Makefile
gcc -Wall $< -o $@
gcc -Wall -g $< -o $@
v4l2grab: v4l2grab.c Makefile
gcc -Wall -g $< -lv4l2 -o $@

@ -139,7 +139,7 @@
xioctl(fd, VIDIOC_DQBUF, &buf);
sprintf(out_name, "out%03d.ppm", i);
fprintf(stderr, "-- %s\n", out_name);
fprintf(stderr, "--> %s\n", out_name);
fout = fopen(out_name, "w");
if (!fout) {
perror("Cannot open image");
@ -149,7 +149,7 @@
fmt.fmt.pix.width, fmt.fmt.pix.height);
fwrite(buffers[buf.index].start, buf.bytesused, 1, fout);
fclose(fout);
sleep(190);
sleep(666);
xioctl(fd, VIDIOC_QBUF, &buf);
}

Loading…
Cancel
Save