Skip to content

Commit

Permalink
add setFps warpper
Browse files Browse the repository at this point in the history
  • Loading branch information
mpromonet committed Aug 14, 2022
1 parent 941ba22 commit 8689651
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions inc/V4l2Access.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ class V4l2Access
int setFormat(unsigned int format, unsigned int width, unsigned int height) {
return m_device->setFormat(format, width, height);
}
int setFps(int fps) {
return m_device->setFps(fps);
}

int isReady() { return m_device->isReady(); }
int start() { return m_device->start(); }
Expand Down

0 comments on commit 8689651

Please sign in to comment.