X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Flogicsegment.cpp;h=b648f5d1c302af35c22c7c1dec35eaf08dee923e;hp=6350682f95ac2a5ae69e8c11e482fc6212914a67;hb=eae3bbbbfd35aef309c186e278ff7ab2d90f362a;hpb=6f925ba9d6faf1077b73c5a5808259576081716a diff --git a/pv/data/logicsegment.cpp b/pv/data/logicsegment.cpp index 6350682f..b648f5d1 100644 --- a/pv/data/logicsegment.cpp +++ b/pv/data/logicsegment.cpp @@ -20,9 +20,9 @@ #include #include -#include -#include #include +#include +#include #include "logic.hpp" #include "logicsegment.hpp" @@ -33,7 +33,6 @@ using std::lock_guard; using std::recursive_mutex; using std::max; using std::min; -using std::pair; using std::shared_ptr; using std::vector; @@ -45,17 +44,15 @@ namespace data { const int LogicSegment::MipMapScalePower = 4; const int LogicSegment::MipMapScaleFactor = 1 << MipMapScalePower; const float LogicSegment::LogMipMapScaleFactor = logf(MipMapScaleFactor); -const uint64_t LogicSegment::MipMapDataUnit = 64*1024; // bytes +const uint64_t LogicSegment::MipMapDataUnit = 64 * 1024; // bytes -LogicSegment::LogicSegment(pv::data::Logic& owner, shared_ptr data, +LogicSegment::LogicSegment(pv::data::Logic& owner, unsigned int unit_size, uint64_t samplerate) : - Segment(samplerate, data->unit_size()), + Segment(samplerate, unit_size), owner_(owner), last_append_sample_(0) { - lock_guard lock(mutex_); memset(mip_map_, 0, sizeof(mip_map_)); - append_payload(data); } LogicSegment::~LogicSegment() @@ -144,12 +141,19 @@ void LogicSegment::append_payload(shared_ptr logic) assert(unit_size_ == logic->unit_size()); assert((logic->data_length() % unit_size_) == 0); + append_payload(logic->data_pointer(), logic->data_length()); +} + +void LogicSegment::append_payload(void *data, uint64_t data_size) +{ + assert((data_size % unit_size_) == 0); + lock_guard lock(mutex_); uint64_t prev_sample_count = sample_count_; - uint64_t sample_count = logic->data_length() / unit_size_; + uint64_t sample_count = data_size / unit_size_; - append_samples(logic->data_pointer(), sample_count); + append_samples(data, sample_count); // Generate the first mip-map from the data append_payload_to_mipmap(); @@ -173,7 +177,7 @@ const uint8_t* LogicSegment::get_samples(int64_t start_sample, lock_guard lock(mutex_); - return get_raw_samples(start_sample, (end_sample-start_sample)); + return get_raw_samples(start_sample, (end_sample - start_sample)); } SegmentLogicDataIterator* LogicSegment::begin_sample_iteration(uint64_t start) @@ -253,7 +257,7 @@ void LogicSegment::append_payload_to_mipmap() // Compute higher level mipmaps for (unsigned int level = 1; level < ScaleStepCount; level++) { MipMapLevel &m = mip_map_[level]; - const MipMapLevel &ml = mip_map_[level-1]; + const MipMapLevel &ml = mip_map_[level - 1]; // Expand the data buffer to fit the new samples prev_length = m.length;