Lines Matching defs:camera_data
367 struct camera_data { struct
369 struct v4l2_device v4l2_dev;
370 struct mutex v4l2_lock; /* serialize file operations */
371 struct v4l2_ctrl_handler hdl;
372 struct {
377 struct v4l2_ctrl *usb_alt;
380 int first_image_seen;
381 enum sensors sensor_type;
382 u8 flush;
383 struct v4l2_fh *stream_fh;
384 u8 mmapped;
385 int streaming; /* 0 = no, 1 = yes */
386 int xfer_mode; /* XFER_BULK or XFER_ISOC */
387 struct camera_params params; /* camera settings */
390 int video_size; /* VIDEO_SIZE_ */
391 struct video_device vdev; /* v4l videodev */
392 u32 width;
393 u32 height; /* Its size */
394 __u32 pixelformat; /* Format fourcc */
397 struct usb_device *dev;
398 unsigned char iface;
399 unsigned int cur_alt;
400 unsigned int old_alt;
424 int cpia2_register_camera(struct camera_data *cam); argument