mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-01 22:58:50 -04:00
module-rtp/stream: Add getter for pw_stream state
This commit is contained in:
parent
89d935c9f6
commit
8704aaa044
2 changed files with 9 additions and 0 deletions
|
|
@ -557,6 +557,13 @@ void rtp_stream_set_first(struct rtp_stream *s)
|
|||
impl->first = true;
|
||||
}
|
||||
|
||||
enum pw_stream_state rtp_stream_get_state(struct rtp_stream *s, const char **error)
|
||||
{
|
||||
struct impl *impl = (struct impl*)s;
|
||||
|
||||
return pw_stream_get_state(impl->stream, error);
|
||||
}
|
||||
|
||||
int rtp_stream_set_param(struct rtp_stream *s, uint32_t id, const struct spa_pod *param)
|
||||
{
|
||||
struct impl *impl = (struct impl*)s;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue