예제 #1
0
		internal BaseFormat(v4l2_format format)
		{
			this.format = format;
		}
예제 #2
0
			ioctl(int device, v4l2_operation request, ref v4l2_format argp);
예제 #3
0
 private static extern int ioctl(int device, v4l2_operation request, ref v4l2_format argp);
예제 #4
0
		/// <summary>
		/// Calls VIDIOC_S_FMT.
		/// </summary>
		public int SetFormat(ref v4l2_format fmt)
		{
			return ioctl(deviceHandle, v4l2_operation.SetFormat, ref fmt);
		}
예제 #5
0
 internal VideoFormat(v4l2_format format)
 {
     this.format = format;
 }