summaryrefslogtreecommitdiff
path: root/src/cam
AgeCommit message (Expand)Author
2019-02-01cam: options: Create a template class for optionsNiklas Söderlund
2019-02-01cam: options: Move struct OptionLaurent Pinchart
2019-02-01cam: options: Move enum OptionArgumentNiklas Söderlund
2019-01-27cam: options: Indent multi-line help message correctlyLaurent Pinchart
2019-01-25cam: options: optional arguments needs to be specified as --foo=barNiklas Söderlund
2019-01-25cam: Add event loopLaurent Pinchart
2019-01-22cam: options: Don't implement move semantics for OptionsParser::OptionsLaurent Pinchart
2019-01-22cam: Extract option parser to separate fileLaurent Pinchart
2019-01-22cam: add utility to control camerasNiklas Söderlund
l kwd">run() { const unsigned int bufferCount = 8; int ret = capture_->allocateBuffers(bufferCount, &buffers_); if (ret < 0) return TestFail; ret = capture_->streamOn(); if (ret) return TestFail; ret = capture_->streamOff(); if (ret) return TestFail; return TestPass; } }; TEST_REGISTER(StreamOnStreamOffTest)