The Wayback Machine - https://web.archive.org/web/20210101024951/https://github.com/mpromonet/libv4l2cpp
Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
inc
 
 
src
 
 
 
 
 
 
 
 
 
 

README.md

libv4l2cpp

It is a C++ wrapper for V4L2

Dependencies

  • liblog4cpp5-dev (optional)

V4L2 Capture

  • create a V4L2 Capture interface using MMAP interface:

      V4L2DeviceParameters param("/dev/video0", V4L2_PIX_FMT_*, width, height, fps, verbose);
      V4l2Capture* videoCapture = V4l2Capture::create(param, V4l2Access::IOTYPE_MMAP);
    
  • data are available :

      timeval timeout; 
      bool isReadable = (videoCapture->isReadable(&timeout) == 1);
    
  • read data :

      size_t nb = videoCapture->read(buffer, bufferSize);
    

V4L2 Output

  • To create a V4L2 Output interface using MMAP interface:

      V4L2DeviceParameters param("/dev/video0", V4L2_PIX_FMT_*, width, height, fps, verbose);
      V4l2Output* videoOutput = V4l2Output::create(param, V4l2Access::IOTYPE_MMAP);
    
  • data could be written :

      timeval timeout; 
      bool isWritable = (videoOutput->isWritable(&timeout) == 1);
    
  • write data :

      size_t nb = videoOutput->write(buffer, bufferSize);
    

About

V4L2 C++ wrapper

Topics

Resources

License

Releases

No releases published

Packages

No packages published
You can’t perform that action at this time.