LADI
/
spa
1
Fork 0

stream: improve debug

This commit is contained in:
Wim Taymans 2023-05-19 13:25:27 +02:00
parent b216a2cfb0
commit 0ab335d041
2 changed files with 2 additions and 2 deletions

View File

@ -2042,7 +2042,7 @@ int pw_filter_trigger_process(struct pw_filter *filter)
struct filter *impl = SPA_CONTAINER_OF(filter, struct filter, this);
int res = 0;
pw_log_trace_fp("%p", impl);
pw_log_trace_fp("%p: driving:%d", impl, impl->driving);
if (!impl->driving) {
res = pw_loop_invoke(impl->main_loop,

View File

@ -2471,7 +2471,7 @@ int pw_stream_trigger_process(struct pw_stream *stream)
struct stream *impl = SPA_CONTAINER_OF(stream, struct stream, this);
int res = 0;
pw_log_trace_fp("%p", impl);
pw_log_trace_fp("%p: trigger:%d driving:%d", impl, impl->trigger, impl->driving);
/* flag to check for old or new behaviour */
impl->using_trigger = true;