Lines Matching defs:hdpvr_device
67 struct hdpvr_device { struct
69 struct video_device *video_dev;
71 struct v4l2_ctrl_handler hdl;
73 struct usb_device *udev;
75 struct v4l2_device v4l2_dev;
76 struct { /* video mode/bitrate control cluster */
82 uint width, height;
85 size_t bulk_in_size;
87 __u8 bulk_in_endpointAddr;
90 __u8 status;
93 struct hdpvr_options options;
94 v4l2_std_id cur_std;
95 struct v4l2_dv_timings cur_dv_timings;
97 uint flags;
100 struct mutex io_mutex;
102 struct list_head free_buff_list;
104 struct list_head rec_buff_list;
106 wait_queue_head_t wait_buffer;
108 wait_queue_head_t wait_data;
132 static inline struct hdpvr_device *to_hdpvr_dev(struct v4l2_device *v4l2_dev) in to_hdpvr_dev() argument