]> sigrok.org Git - pulseview.git/blobdiff - pv/data/analogsegment.hpp
Switch segment storage from single vector to vector of arrays
[pulseview.git] / pv / data / analogsegment.hpp
index 1a91b8b7a411eaeca048f1a3065e1d4045c8e923..52d37a76c3e67fdfba671ae46030e390940e1355 100644 (file)
@@ -14,8 +14,7 @@
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
 #ifndef PULSEVIEW_PV_DATA_ANALOGSEGMENT_HPP
  */
 
 #ifndef PULSEVIEW_PV_DATA_ANALOGSEGMENT_HPP
@@ -33,6 +32,12 @@ struct Basic;
 namespace pv {
 namespace data {
 
 namespace pv {
 namespace data {
 
+typedef struct {
+       uint64_t sample_index, chunk_num, chunk_offs;
+       uint8_t* chunk;
+       float* value;
+} SegmentAnalogDataIterator;
+
 class AnalogSegment : public Segment
 {
 public:
 class AnalogSegment : public Segment
 {
 public:
@@ -66,7 +71,7 @@ private:
        static const uint64_t EnvelopeDataUnit;
 
 public:
        static const uint64_t EnvelopeDataUnit;
 
 public:
-       AnalogSegment(uint64_t samplerate, uint64_t expected_num_samples = 0);
+       AnalogSegment(uint64_t samplerate);
 
        virtual ~AnalogSegment();
 
 
        virtual ~AnalogSegment();
 
@@ -76,11 +81,15 @@ public:
        const float* get_samples(int64_t start_sample,
                int64_t end_sample) const;
 
        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;
+
        void get_envelope_section(EnvelopeSection &s,
                uint64_t start, uint64_t end, float min_length) const;
 
 private:
        void get_envelope_section(EnvelopeSection &s,
                uint64_t start, uint64_t end, float min_length) const;
 
 private:
-       void reallocate_envelope(Envelope &l);
+       void reallocate_envelope(Envelope &e);
 
        void append_payload_to_envelope_levels();
 
 
        void append_payload_to_envelope_levels();