X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fdata%2Fanalogsegment.hpp;h=27c9863b07b0a830806ba7ec5dd122653648a6e2;hb=067bb62415847791709f4c3cad8bb252a63f45f8;hp=52d37a76c3e67fdfba671ae46030e390940e1355;hpb=26a883ede0bcf68d087eda5dd2082890d36c7aef;p=pulseview.git diff --git a/pv/data/analogsegment.hpp b/pv/data/analogsegment.hpp index 52d37a76..27c9863b 100644 --- a/pv/data/analogsegment.hpp +++ b/pv/data/analogsegment.hpp @@ -25,6 +25,8 @@ #include #include +#include + namespace AnalogSegmentTest { struct Basic; } @@ -32,14 +34,18 @@ struct Basic; namespace pv { namespace data { +class Analog; + typedef struct { uint64_t sample_index, chunk_num, chunk_offs; uint8_t* chunk; float* value; } SegmentAnalogDataIterator; -class AnalogSegment : public Segment +class AnalogSegment : public QObject, public Segment { + Q_OBJECT + public: struct EnvelopeSample { @@ -71,7 +77,7 @@ private: static const uint64_t EnvelopeDataUnit; public: - AnalogSegment(uint64_t samplerate); + AnalogSegment(Analog& owner, uint64_t samplerate); virtual ~AnalogSegment(); @@ -81,9 +87,11 @@ public: const float* get_samples(int64_t start_sample, int64_t end_sample) const; - SegmentAnalogDataIterator* begin_sample_iteration(uint64_t start) const; - void continue_sample_iteration(SegmentAnalogDataIterator* it, uint64_t increase) const; - void end_sample_iteration(SegmentAnalogDataIterator* it) const; + const std::pair get_min_max() const; + + SegmentAnalogDataIterator* begin_sample_iteration(uint64_t start); + void continue_sample_iteration(SegmentAnalogDataIterator* it, uint64_t increase); + void end_sample_iteration(SegmentAnalogDataIterator* it); void get_envelope_section(EnvelopeSection &s, uint64_t start, uint64_t end, float min_length) const; @@ -94,8 +102,12 @@ private: void append_payload_to_envelope_levels(); private: + Analog& owner_; + struct Envelope envelope_levels_[ScaleStepCount]; + float min_value_, max_value_; + friend struct AnalogSegmentTest::Basic; };