aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2016-01-24 17:00:06 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2016-01-24 17:00:06 +0100
commit282a550f6223f95f7251be8a719b1b62fa063fb5 (patch)
tree2908731f887affca159a88421e1f8ab515305371
parentecaa009af7011ae246aec73c42c7ca39df5c8066 (diff)
downloadetisnoop-282a550f6223f95f7251be8a719b1b62fa063fb5.tar.gz
etisnoop-282a550f6223f95f7251be8a719b1b62fa063fb5.tar.bz2
etisnoop-282a550f6223f95f7251be8a719b1b62fa063fb5.zip
Nicer rate printout
-rw-r--r--repetitionrate.cpp21
1 files changed, 14 insertions, 7 deletions
diff --git a/repetitionrate.cpp b/repetitionrate.cpp
index 1c06c4c..c407c18 100644
--- a/repetitionrate.cpp
+++ b/repetitionrate.cpp
@@ -22,7 +22,7 @@
#include "repetitionrate.hpp"
#include <vector>
#include <map>
-#include <unordered_set>
+#include <set>
using namespace std;
@@ -50,7 +50,7 @@ struct FIGRateInfo {
vector<int> frames_complete;
// Which FIBs this FIG was seen in
- unordered_set<int> in_fib;
+ set<int> in_fib;
};
@@ -109,9 +109,13 @@ void rate_display_analysis(bool clear)
fig_rate.first.figtype, fig_rate.first.figextension,
n_present_per_second, n_present, variance_of_delta_present);
}
+ else {
+ printf("FIG%2d/%2d 0\n",
+ fig_rate.first.figtype, fig_rate.first.figextension);
+ }
const size_t n_complete = frames_complete.size();
- if (n_complete) {
+ if (n_present and n_complete) {
double average_complete_interval =
(double)(frames_complete.back() - frames_complete.front()) /
@@ -131,13 +135,16 @@ void rate_display_analysis(bool clear)
const double n_complete_per_second = 1 /
(average_complete_interval * frame_duration);
- printf(" %2.2f (%6zu %2.2f)\n",
+ printf(" %2.2f (%6zu %2.2f)",
n_complete_per_second, n_complete, variance_of_delta_complete);
}
- else {
- printf("FIG%2d/%2d 0\n",
- fig_rate.first.figtype, fig_rate.first.figextension);
+
+ printf(" in FIB(s): ");
+ for (auto& fib : fig_rate.second.in_fib) {
+ printf("%d ", fib);
}
+ printf("\n");
+
}
if (clear) {