diff options
author | Mikhail Burakov <mburakov@mailbox.org> | 2023-03-25 08:12:36 +0100 |
---|---|---|
committer | Mikhail Burakov <mburakov@mailbox.org> | 2023-03-25 08:12:36 +0100 |
commit | 73ad6cd905f142335e838ddbf6200d63fb181e0e (patch) | |
tree | 6404de4f34aa00966795aff9d73f4ac3f4afcb71 | |
parent | 2c7068c1d37d4b0aa06c268dbfaa6cf18ef7a152 (diff) |
Fix time measurements in decodingv1
-rw-r--r-- | decode.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -408,7 +408,7 @@ static void HandleTimingStats(struct DecodeContext* decode_context) { decode_context->frame_decoded_ts - decode_context->frame_received_ts); TimingStatsRecord( &decode_context->total, - decode_context->frame_received_ts - decode_context->frame_header_ts); + decode_context->frame_decoded_ts - decode_context->frame_header_ts); unsigned long long period = decode_context->frame_decoded_ts - decode_context->recording_started; |