Add generated comfort noise counter.
Currently only implemented for codec internal CNG (Opus). Bug: webrtc:13322 Change-Id: I00622f2967f066dba64a792e26081038ae0cb0d9 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/259200 Reviewed-by: Ivo Creusen <ivoc@webrtc.org> Commit-Queue: Jakob Ivarsson <jakobi@webrtc.org> Cr-Commit-Position: refs/heads/main@{#36590}
This commit is contained in:
committed by
WebRTC LUCI CQ
parent
61a01af454
commit
098c4ea2ca
@ -94,6 +94,12 @@ void NetEqStatsPlotter::SimulationEnded(int64_t simulation_time_ms) {
|
||||
printf(" interruption_ratio: %f\n",
|
||||
static_cast<double>(lifetime_stats.total_interruption_duration_ms) /
|
||||
simulation_time_ms);
|
||||
printf(" removed_samples_for_acceleration: %" PRIu64 "\n",
|
||||
lifetime_stats.removed_samples_for_acceleration);
|
||||
printf(" inserted_samples_for_deceleration: %" PRIu64 "\n",
|
||||
lifetime_stats.inserted_samples_for_deceleration);
|
||||
printf(" generated_noise_samples: %" PRIu64 "\n",
|
||||
lifetime_stats.generated_noise_samples);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user