jpabq: it's an in-kernel API
applications should use libv4l2
Thanks pinchartl.  Is there a libv4l2 method for returning a string name of the control?
not as such. you need to enumerate controls using v4l2_ioctl(VIDIOC_QUERYCTRL), and the struct v4l2_queryctrl that you pass as an argument will contain the control description strong
string
Got it.   If the query fails (say if the driver does not support it), will the description string for the control still be filled in?
http://git.linuxtv.org/v4l-utils.git/tree/utils/v4l2-ctl/v4l2-ctl-common.cpp#n400
example code
awalls_: thanks, I will take a look at that.
the name is not required to be filled in, if not supported:
http://linuxtv.org/downloads/v4l-dvb-apis/vidioc-queryctrl.html
Okay, I will deal with that.   Thanks agian.
np
hi, I'm trying to use a intel RealSense camera, but I'm having trouble getting the camera hooked up to a ROS (robot OS). I need to properly configure a file to read the information from v4l2 for use with ROS. I don't think the ROS side should be of much importance to the problem I'm trying to solve right now, so hopefully someone can help!
I'm trying to configure the LAUNCH FILE section to match the output of the v4l2 output (you can safely ignore the OUTPUT section) http://pastebin.com/mD8hvL4u
The most glaring problem is that v4l is using the /dev/videoX, but the USB is listed under one device (0x8086:0x0a80). I'm not sure how I can access the various created videoX's from the single USB device (this is important for filling out the "<param name="index" value="0"/>" part fo the launch file