Remove the controls::draft::AfTrigger since it is an exposed control now via controls::AfTrigger

This commit is contained in:
Kamil Trzcinski 2022-07-12 11:10:25 +02:00
parent 9e7e14d15b
commit b052e5eb04

View File

@ -13,7 +13,6 @@ libcamera::ControlInfoMap::Map libcamera_control_list(device_t *dev)
for (auto const &control : dev->libcamera->camera->controls()) { for (auto const &control : dev->libcamera->camera->controls()) {
controls_map[control.first] = control.second; controls_map[control.first] = control.second;
} }
controls_map[&libcamera::controls::draft::AfTrigger] = libcamera::ControlInfo();
return controls_map; return controls_map;
} }