introspect: remove unused RUNNING state for a link

This commit is contained in:
Wim Taymans 2019-04-25 12:56:17 +02:00
parent 9bfffc009d
commit be5e79831c
2 changed files with 0 additions and 3 deletions

View file

@ -76,8 +76,6 @@ const char *pw_link_state_as_string(enum pw_link_state state)
return "allocating"; return "allocating";
case PW_LINK_STATE_PAUSED: case PW_LINK_STATE_PAUSED:
return "paused"; return "paused";
case PW_LINK_STATE_RUNNING:
return "running";
} }
return "invalid-state"; return "invalid-state";
} }

View file

@ -65,7 +65,6 @@ enum pw_link_state {
PW_LINK_STATE_NEGOTIATING = 1, /**< the link is negotiating formats */ PW_LINK_STATE_NEGOTIATING = 1, /**< the link is negotiating formats */
PW_LINK_STATE_ALLOCATING = 2, /**< the link is allocating buffers */ PW_LINK_STATE_ALLOCATING = 2, /**< the link is allocating buffers */
PW_LINK_STATE_PAUSED = 3, /**< the link is paused */ 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 */ /** Convert a \ref pw_link_state to a readable string \memberof pw_link */