]> git.sesse.net Git - nageru/blobdiff - mixer.h
Rename some mixer metrics.
[nageru] / mixer.h
diff --git a/mixer.h b/mixer.h
index c787507f4ebb35b21d2a90c34dfe1078b9b7724d..3a9868d8ea8ffdbe260d97a2b861b3e1ac188ac5 100644 (file)
--- a/mixer.h
+++ b/mixer.h
@@ -520,9 +520,9 @@ private:
        std::chrono::steady_clock::time_point last_mode_scan_change[MAX_VIDEO_CARDS];
 
        // Metrics.
-       std::atomic<int64_t> metrics_num_frames{0};
-       std::atomic<int64_t> metrics_dropped_frames{0};
-       std::atomic<double> metrics_uptime{0.0};
+       std::atomic<int64_t> metric_frames_output_total{0};
+       std::atomic<int64_t> metric_frames_output_dropped{0};
+       std::atomic<double> metric_uptime_seconds{0.0};
 };
 
 extern Mixer *global_mixer;