mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-06 13:30:01 -05:00
impl-link: use loopvisited variable for loop checking
Don't reuse the visited variable for checking feedback loops because the scheduler expects it to be false on entry. Use a different variable instead.
This commit is contained in:
parent
afb7090ba0
commit
33f90abfb5
2 changed files with 4 additions and 3 deletions
|
|
@ -672,6 +672,7 @@ struct pw_impl_node {
|
|||
unsigned int want_driver:1; /**< this node wants to be assigned to a driver */
|
||||
unsigned int passive:1; /**< driver graph only has passive links */
|
||||
unsigned int freewheel:1; /**< if this is the freewheel driver */
|
||||
unsigned int loopchecked:1; /**< for feedback loop checking */
|
||||
|
||||
uint32_t port_user_data_size; /**< extra size for port user data */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue