summaryrefslogtreecommitdiff
path: root/test/message.cpp
AgeCommit message (Expand)Author
2021-07-11test: message: Test recursive Thread::dispatchMessages() callsLaurent Pinchart
2021-06-25libcamera/base: Move extended base functionalityKieran Bingham
2020-05-16libcamera: Move internal headers to include/libcamera/internal/Laurent Pinchart
2020-01-14libcamera: Switch from utils::make_unique to std::make_uniqueLaurent Pinchart
2019-11-27test: message: Add slow receiver testLaurent Pinchart
2019-11-27test: message: Fix message handling in MessageReceiverLaurent Pinchart
2019-07-16libcamera: message: Add user message typesJacopo Mondi
2019-07-11test: Add Message test caseLaurent Pinchart
{ namespace { constexpr uint32_t __fourcc(char a, char b, char c, char d) { return (static_cast<uint32_t>(a) << 0) | (static_cast<uint32_t>(b) << 8) | (static_cast<uint32_t>(c) << 16) | (static_cast<uint32_t>(d) << 24); } constexpr uint64_t __mod(unsigned int vendor, unsigned int mod) { return (static_cast<uint64_t>(vendor) << 56) | (static_cast<uint64_t>(mod) << 0); } } /* namespace */ ${formats} } /* namespace formats */ } /* namespace libcamera */