I'm looking for a simple example for camera access in Linux using V4L2. Where I can find it? As simple, as possible.

Thanks,

link|improve this question

78% accept rate
1  
4  
@pmg: First result = this – Jacob Oct 24 '10 at 17:32
1  
@Jacob: just proves google is working :-) – pmg Oct 24 '10 at 17:33
feedback

2 Answers

In the API specification, there is an example, also downloadable as a C file

link|improve this answer
This example works fine for me, but it's a little bit complex. I found this one credentiality2.blogspot.com/2010/04/v4l2-example.html but it doesn't work for me :( I get read error 22, Invalid argument – Alex Ivasyuv Oct 24 '10 at 18:34
feedback

Try the uvccapture code here -> http://staticwave.ca/source/uvccapture/ It is very small yet very concrete example which makes use of all the V4l2 concepts (open,set format, allocate memory, Request Buffer, Dqbuffer and Query-buffer - all intems of ioclts).

uvcgrab() function is the one to look for which makes use of Dqbuffer and Query-buffer.

  ioctl (vd->fd, VIDIOC_DQBUF, &vd->buf);

     ioctl (vd->fd, VIDIOC_QBUF, &vd->buf)

While Studying it you can keep looking for the ioctl definition in this link which will ease your understanding.

Rgds, Softy

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.