Finish most of USBCameraImpl.

The main thing not yet fully implemented is video mode setting.

Also fix a handful of bugs in HTTPSinkImpl.
This commit is contained in:
Peter Johnson
2016-10-13 00:16:24 -07:00
parent 7f88bd15d1
commit 417545d521
10 changed files with 1383 additions and 575 deletions

View File

@@ -11,4 +11,7 @@
using namespace cs;
void Frame::ReleaseFrame() { m_source->ReleaseFrame(m_data); }
void Frame::ReleaseFrame() {
m_source->ReleaseFrame(std::unique_ptr<Data>(m_data));
m_data = nullptr;
}