Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which library needed to satisfy #include <linux/videodev.h>

I'm trying to compile uvccapture on the Raspberry Pi running Raspbian Wheezy. What package do I need to install so gcc/make can satisfy this include?

#include <linux/videodev.h>
like image 724
CL22 Avatar asked Sep 08 '26 14:09

CL22


1 Answers

sudo apt-get install libv4l-dev

maybe you will need also:

cd /usr/include/linux
sudo ln -s ../libv4l1-videodev.h videodev.h

like image 156
4pie0 Avatar answered Sep 11 '26 03:09

4pie0