mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-31 22:25:38 -04:00
profiler: improve profiler stats
The driver and follower signal times are currently the same timestamp so allow a 0 difference between the driver and follower signal time to calculate the scheduling delay.
This commit is contained in:
parent
2a0f1597ab
commit
2ed65a7e36
1 changed files with 1 additions and 1 deletions
|
|
@ -213,7 +213,7 @@ static void dump_point(struct data *d, struct point *point)
|
|||
d4 > 0 ? d4 : 0,
|
||||
d5 > 0 ? d5 : 0,
|
||||
d6 > 0 ? d6 : 0,
|
||||
(d5 > 0 && d4 > 0 && d5 > d4) ? d5 - d4 : 0,
|
||||
(d5 > 0 && d4 >= 0 && d5 > d4) ? d5 - d4 : 0,
|
||||
(d6 > 0 && d5 > 0 && d6 > d5) ? d6 - d5 : 0,
|
||||
point->follower[i].status);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue