mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-25 06:59:57 -05:00
introspect: remove unused RUNNING state for a link
This commit is contained in:
parent
9bfffc009d
commit
be5e79831c
2 changed files with 0 additions and 3 deletions
|
|
@ -76,8 +76,6 @@ const char *pw_link_state_as_string(enum pw_link_state state)
|
|||
return "allocating";
|
||||
case PW_LINK_STATE_PAUSED:
|
||||
return "paused";
|
||||
case PW_LINK_STATE_RUNNING:
|
||||
return "running";
|
||||
}
|
||||
return "invalid-state";
|
||||
}
|
||||
|
|
|
|||
|
|
@ -65,7 +65,6 @@ enum pw_link_state {
|
|||
PW_LINK_STATE_NEGOTIATING = 1, /**< the link is negotiating formats */
|
||||
PW_LINK_STATE_ALLOCATING = 2, /**< the link is allocating buffers */
|
||||
PW_LINK_STATE_PAUSED = 3, /**< the link is paused */
|
||||
PW_LINK_STATE_RUNNING = 4, /**< the link is running */
|
||||
};
|
||||
|
||||
/** Convert a \ref pw_link_state to a readable string \memberof pw_link */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue