mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user