mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-14 21:17:54 +00:00
[host] pipewire: report stream state
This should provide some useful debug information and report stream errors.
This commit is contained in:
parent
aa5922a1b4
commit
e7fdf7e77a
1 changed files with 12 additions and 0 deletions
|
@ -203,9 +203,21 @@ static void streamParamChangedCallback(void * opaque, uint32_t id,
|
|||
pw_thread_loop_signal(this->threadLoop, true);
|
||||
}
|
||||
|
||||
static void streamStateChangedCallback(void * opaque,
|
||||
enum pw_stream_state oldState, enum pw_stream_state newState,
|
||||
const char * error)
|
||||
{
|
||||
DEBUG_INFO("PipeWire stream state change: %s -> %s",
|
||||
pw_stream_state_as_string(oldState), pw_stream_state_as_string(newState));
|
||||
|
||||
if (newState == PW_STREAM_STATE_ERROR)
|
||||
DEBUG_ERROR("PipeWire stream error: %s", error);
|
||||
}
|
||||
|
||||
static const struct pw_stream_events streamEvents = {
|
||||
PW_VERSION_STREAM_EVENTS,
|
||||
.process = streamProcessCallback,
|
||||
.state_changed = streamStateChangedCallback,
|
||||
.param_changed = streamParamChangedCallback,
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue