mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-16 07:00:00 -05:00
tools: print async node state in pw-top
Pass the node async state in the profiler and use this in pw-top to draw the node with = instead of a + in the tree when it's async.
This commit is contained in:
parent
09cd7bf783
commit
f89428d9f8
4 changed files with 11 additions and 7 deletions
|
|
@ -298,7 +298,8 @@ static void context_do_profile(void *data)
|
|||
SPA_POD_Long(n->async ? na->prev_finish_time : na->finish_time),
|
||||
SPA_POD_Int(na->status),
|
||||
SPA_POD_Fraction(&latency),
|
||||
SPA_POD_Int(na->xrun_count));
|
||||
SPA_POD_Int(na->xrun_count),
|
||||
SPA_POD_Bool(n->async));
|
||||
|
||||
if (n->driver) {
|
||||
spa_pod_builder_prop(&b, SPA_PROFILER_followerClock, 0);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue