[sdk]Update SDK version to v2.1.0

This commit is contained in:
jj
2024-12-18 17:23:44 +08:00
parent 1f036459a8
commit ad3aea859e
21 changed files with 278 additions and 28 deletions
@@ -746,6 +746,11 @@ typedef enum {
*/
OB_PROP_SDK_IR_RIGHT_FRAME_UNPACK_BOOL = 3012,
/**
* @brief Read the current network bandwidth type of the network device, whether it is Gigabit Ethernet or Fast Ethernet, such as G335LE.
*/
OB_PROP_NETWORK_BANDWIDTH_TYPE_INT = 3027,
/**
* @brief Calibration JSON file read from device (Femto Mega, read only)
*/
@@ -503,7 +503,7 @@ private:
std::map<float, std::string> sequenceIdList_{ { 0.f, "all" }, { 1.f, "1" } };
OBSequenceIdItem *outputSequenceIdList_ = nullptr;
void initSeqenceIdList() {
void initSequenceIdList() {
outputSequenceIdList_ = new OBSequenceIdItem[sequenceIdList_.size()];
int i = 0;
@@ -521,7 +521,7 @@ public:
auto impl = ob_create_filter("SequenceIdFilter", &error);
Error::handle(&error);
init(impl);
initSeqenceIdList();
initSequenceIdList();
}
virtual ~SequenceIdFilter() noexcept {