Lines Matching defs:camera_data
354 struct camera_data { struct
356 struct v4l2_device v4l2_dev;
357 struct mutex v4l2_lock; /* serialize file operations */
358 struct v4l2_ctrl_handler hdl;
359 struct {
364 struct v4l2_ctrl *usb_alt;
367 int first_image_seen;
368 enum sensors sensor_type;
369 u8 flush;
370 struct v4l2_fh *stream_fh;
371 u8 mmapped;
372 int streaming; /* 0 = no, 1 = yes */
373 int xfer_mode; /* XFER_BULK or XFER_ISOC */
374 struct camera_params params; /* camera settings */
377 int video_size; /* VIDEO_SIZE_ */
378 struct video_device vdev; /* v4l videodev */
379 u32 width;
380 u32 height; /* Its size */
381 __u32 pixelformat; /* Format fourcc */
384 struct usb_device *dev;
385 unsigned char iface;
386 unsigned int cur_alt;
387 unsigned int old_alt;
411 int cpia2_register_camera(struct camera_data *cam); argument