Lines Matching refs:streams

524 				       struct gb_camera_stream_config *streams,  in gb_camera_configure_streams()  argument
556 cfg->width = cpu_to_le16(streams[i].width); in gb_camera_configure_streams()
557 cfg->height = cpu_to_le16(streams[i].height); in gb_camera_configure_streams()
558 cfg->format = cpu_to_le16(streams[i].format); in gb_camera_configure_streams()
592 streams[i].width = le16_to_cpu(cfg->width); in gb_camera_configure_streams()
593 streams[i].height = le16_to_cpu(cfg->height); in gb_camera_configure_streams()
594 streams[i].format = le16_to_cpu(cfg->format); in gb_camera_configure_streams()
595 streams[i].vc = cfg->virtual_channel; in gb_camera_configure_streams()
596 streams[i].dt[0] = cfg->data_type[0]; in gb_camera_configure_streams()
597 streams[i].dt[1] = cfg->data_type[1]; in gb_camera_configure_streams()
598 streams[i].max_size = le32_to_cpu(cfg->max_size); in gb_camera_configure_streams()
655 unsigned int streams, unsigned int num_frames, in gb_camera_capture() argument
671 req->streams = streams; in gb_camera_capture()
786 unsigned int *flags, struct gb_camera_stream *streams, in gb_camera_op_configure_streams() argument
804 gb_streams[i].width = streams[i].width; in gb_camera_op_configure_streams()
805 gb_streams[i].height = streams[i].height; in gb_camera_op_configure_streams()
807 gb_camera_mbus_to_gb(streams[i].pixel_code); in gb_camera_op_configure_streams()
827 streams[i].width = gb_streams[i].width; in gb_camera_op_configure_streams()
828 streams[i].height = gb_streams[i].height; in gb_camera_op_configure_streams()
829 streams[i].vc = gb_streams[i].vc; in gb_camera_op_configure_streams()
830 streams[i].dt[0] = gb_streams[i].dt[0]; in gb_camera_op_configure_streams()
831 streams[i].dt[1] = gb_streams[i].dt[1]; in gb_camera_op_configure_streams()
832 streams[i].max_size = gb_streams[i].max_size; in gb_camera_op_configure_streams()
833 streams[i].pixel_code = in gb_camera_op_configure_streams()
844 unsigned int streams, unsigned int num_frames, in gb_camera_op_capture() argument
849 return gb_camera_capture(gcam, request_id, streams, num_frames, in gb_camera_op_capture()
912 struct gb_camera_stream_config *streams; in gb_camera_debugfs_configure_streams() local
940 streams = kcalloc(nstreams, sizeof(*streams), GFP_KERNEL); in gb_camera_debugfs_configure_streams()
941 if (!streams) in gb_camera_debugfs_configure_streams()
945 struct gb_camera_stream_config *stream = &streams[i]; in gb_camera_debugfs_configure_streams()
976 ret = gb_camera_configure_streams(gcam, &nstreams, &flags, streams, in gb_camera_debugfs_configure_streams()
984 struct gb_camera_stream_config *stream = &streams[i]; in gb_camera_debugfs_configure_streams()
997 kfree(streams); in gb_camera_debugfs_configure_streams()