]> sigrok.org Git - pulseview.git/blobdiff - pv/data/decode/rowdata.hpp
DecodeTrace: Add profiling and some optimizations
[pulseview.git] / pv / data / decode / rowdata.hpp
index 0012acd4523ecfc7339a5a30809ab78de2ddef57..4454d691e58d060e1bbb93481673b17293b7f9e8 100644 (file)
@@ -26,6 +26,7 @@
 
 #include <pv/data/decode/annotation.hpp>
 
+using std::deque;
 using std::vector;
 
 namespace pv {
@@ -39,7 +40,6 @@ class RowData
 public:
        RowData(Row* row);
 
-public:
        uint64_t get_max_sample() const;
 
        uint64_t get_annotation_count() const;
@@ -50,14 +50,15 @@ public:
         * fit into the sample range are considered.
         */
        void get_annotation_subset(
-               vector<pv::data::decode::Annotation> &dest,
+               vector<const pv::data::decode::Annotation*> &dest,
                uint64_t start_sample, uint64_t end_sample) const;
 
        void emplace_annotation(srd_proto_data *pdata);
 
 private:
-       vector<Annotation> annotations_;
-       const Row* row_;
+       deque<Annotation> annotations_;
+       Row* row_;
+       uint64_t prev_ann_start_sample_;
 };
 
 }  // namespace decode