mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-12 21:30:45 +01:00
Add missing comma in VideoReceiveStreamInterface::Stats::ToString
Bug: None Change-Id: I665fd120bdfe3e93e51f11f9035e30d09381db75 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/323800 Reviewed-by: Åsa Persson <asapersson@webrtc.org> Commit-Queue: Rasmus Brandt <brandtr@webrtc.org> Cr-Commit-Position: refs/heads/main@{#40947}
This commit is contained in:
parent
5574afc095
commit
c868fd3b3e
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ std::string VideoReceiveStreamInterface::Stats::ToString(
|
|||
<< jitter_buffer_target_delay.seconds<double>() << ", ";
|
||||
ss << "jitterBufferEmittedCount: " << jitter_buffer_emitted_count << ", ";
|
||||
ss << "jitterBufferMinimumDelay: "
|
||||
<< jitter_buffer_minimum_delay.seconds<double>();
|
||||
<< jitter_buffer_minimum_delay.seconds<double>() << ", ";
|
||||
ss << "totalDecodeTime: " << total_decode_time.seconds<double>() << ", ";
|
||||
ss << "totalProcessingDelay: " << total_processing_delay.seconds<double>()
|
||||
<< ", ";
|
||||
|
|
Loading…
Reference in a new issue