]> git.sesse.net Git - nageru/blobdiff - print_latency.h
Fix so that you can't right-click on non-signal channels anymore.
[nageru] / print_latency.h
index 3b0adb1e77244e0b422e93118e6c36c1e92295d4..3e1c4060f530a204cb419a6166f2ec675987747e 100644 (file)
@@ -21,8 +21,8 @@ struct ReceivedTimestamps {
 struct LatencyHistogram {
        void init(const std::string &measuring_point);  // Initializes histograms and registers them in global_metrics.
 
-       // Indices: card number, frame history number, b-frame or not (1/0).
-       std::vector<std::vector<std::unique_ptr<Histogram[]>>> histograms;
+       // Indices: card number, frame history number, b-frame or not (1/0, where 2 counts both).
+       std::vector<std::vector<std::unique_ptr<Summary[]>>> summaries;
 };
 
 ReceivedTimestamps find_received_timestamp(const std::vector<RefCountedFrame> &input_frames);