mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-02 09:01:50 -05:00
jack: fix member name in fastpath logs
The port struct's `id` member has been renamed to `port_id`,
but the `pw_log_trace_fp()` invocation sites weren't changed.
Fixes: 029539831d ("jack: rework port allocation")
This commit is contained in:
parent
0a55085b14
commit
899281be60
1 changed files with 3 additions and 3 deletions
|
|
@ -1022,7 +1022,7 @@ static inline void *get_buffer_output(struct port *p, uint32_t frames, uint32_t
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
pw_log_trace_fp("%p: port %s %d get buffer %d n_buffers:%d",
|
pw_log_trace_fp("%p: port %s %d get buffer %d n_buffers:%d",
|
||||||
c, p->object->port.name, p->id, frames, mix->n_buffers);
|
c, p->object->port.name, p->port_id, frames, mix->n_buffers);
|
||||||
|
|
||||||
if (SPA_UNLIKELY(mix->n_buffers == 0))
|
if (SPA_UNLIKELY(mix->n_buffers == 0))
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
@ -4250,7 +4250,7 @@ static void *get_buffer_input_float(struct port *p, jack_nframes_t frames)
|
||||||
void *np;
|
void *np;
|
||||||
|
|
||||||
pw_log_trace_fp("%p: port %s mix %d.%d get buffer %d",
|
pw_log_trace_fp("%p: port %s mix %d.%d get buffer %d",
|
||||||
p->client, p->object->port.name, p->id, mix->id, frames);
|
p->client, p->object->port.name, p->port_id, mix->id, frames);
|
||||||
|
|
||||||
if ((b = get_mix_buffer(mix, frames)) == NULL)
|
if ((b = get_mix_buffer(mix, frames)) == NULL)
|
||||||
continue;
|
continue;
|
||||||
|
|
@ -4290,7 +4290,7 @@ static void *get_buffer_input_midi(struct port *p, jack_nframes_t frames)
|
||||||
void *pod;
|
void *pod;
|
||||||
|
|
||||||
pw_log_trace_fp("%p: port %p mix %d.%d get buffer %d",
|
pw_log_trace_fp("%p: port %p mix %d.%d get buffer %d",
|
||||||
p->client, p, p->id, mix->id, frames);
|
p->client, p, p->port_id, mix->id, frames);
|
||||||
|
|
||||||
if ((b = get_mix_buffer(mix, frames)) == NULL)
|
if ((b = get_mix_buffer(mix, frames)) == NULL)
|
||||||
continue;
|
continue;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue