> Is there any way by which I can know Input signal type (in terms of > DVI/Composite/USB/SDI) and refresh rate from a V4L video capture device. > Any available V4L Structure/Flag from which I can deduce this information. > Please help ! The extent to which the data is available is the name field in the G_FMT call: http://linuxtv.org/downloads/v4l-dvb-apis/vidioc-enuminput.html For most devices, the driver developer names the individual inputs "Composite", "S-Video", "Tuner", etc. The only level of distinction other than the name is the type field, which today is V4L2_INPUT_TYPE_TUNER for an RF tuner and V4L2_INPUT_TYPE_CAMERA for everything else. To my knowledge there aren't any current drivers in the main tree that support DVI or SDI capture, so nobody has really cared to make the API more flexible to extend the "type" field with other values (which would both be easier to machine parse, localize, and be consistent across boards). Devin -- Devin J. Heitmueller - Kernel Labs http://www.kernellabs.com -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html