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

@@ -234,7 +234,8 @@ llvm::ArrayRef<CS_Property> EnumerateSourceProperties(
return 0;
}
llvm::SmallVector<int, 32> properties_buf;
for (auto property : data->source->EnumerateProperties(properties_buf))
for (auto property :
data->source->EnumerateProperties(properties_buf, status))
vec.push_back(Handle{source, property, Handle::kProperty});
return vec;
}