here is my code im not getting any errors its just not connecting to my camera
`fn handle_video_inputs(&mut self, cx: &mut Cx, devices: &VideoInputsEvent) {
for device in &devices.descs {
log!("Device Name: {}", device.name);
log!("Device Input ID: {:?}", device.input_id);
log!("Device Formats: {:?}", device.formats);
log!("----------------------");
}
// Find and use the built-in camera if available
let input = devices.find_highest_at_res(devices.find_device("Integrated Camera"), 1920, 1080, 31.0);
cx.use_video_input(&input);
}`