]> git.sesse.net Git - nageru/blob - print_latency.h
Move find_received_timestamp() into print_latency.h, so that multiple consumers can...
[nageru] / print_latency.h
1 #ifndef _PRINT_LATENCY_H
2 #define _PRINT_LATENCY_H 1
3
4 // A small utility function to print the latency between two end points
5 // (typically when the frame was received from the video card, and some
6 // point when the frame is ready to be output in some form).
7
8 #include <chrono>
9 #include <string>
10 #include <vector>
11
12 #include "ref_counted_frame.h"
13
14 // Since every output frame is based on multiple input frames, we need
15 // more than one start timestamp. For now, we keep just the smallest
16 // and largest timestamp, so that we can print out a range.
17 // For both of these, steady_clock::time_point::min() is used for “not set”.
18 struct ReceivedTimestamps {
19         std::chrono::steady_clock::time_point min_ts, max_ts;
20 };
21
22 ReceivedTimestamps find_received_timestamp(const std::vector<RefCountedFrame> &input_frames);
23
24 void print_latency(const std::string &header, const ReceivedTimestamps &received_ts, bool is_b_frame, int *frameno);
25
26 #endif  // !defined(_PRINT_LATENCY_H)