Open ArosPrince opened 1 year ago
This is the commit that broke it I think: https://github.com/raspberrypi/libcamera/commit/26a4b83d1b9443795dbcb21fa6c23117f113216a
I solved it locally by replacing using StreamRoles = libcamera::StreamRoles; with using StreamRoles = std::vector<libcamera::StreamRole>;.
using StreamRoles = libcamera::StreamRoles;
using StreamRoles = std::vector<libcamera::StreamRole>;
This is the commit that broke it I think: https://github.com/raspberrypi/libcamera/commit/26a4b83d1b9443795dbcb21fa6c23117f113216a
I solved it locally by replacing
using StreamRoles = libcamera::StreamRoles;
withusing StreamRoles = std::vector<libcamera::StreamRole>;
.