mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-07 13:30:09 -05:00
Cleanup argument names in methods and events interfaces
First method argument is object, first event argument is data. Closes !963
This commit is contained in:
parent
d3ea3142e1
commit
22fc9eec35
55 changed files with 636 additions and 636 deletions
|
|
@ -48,9 +48,9 @@ on_core_error(void *data, uint32_t id, int seq, int res, const char *message)
|
|||
pw_thread_loop_signal(core->loop, FALSE);
|
||||
}
|
||||
|
||||
static void on_core_done (void *object, uint32_t id, int seq)
|
||||
static void on_core_done (void *data, uint32_t id, int seq)
|
||||
{
|
||||
GstPipeWireCore * core = object;
|
||||
GstPipeWireCore * core = data;
|
||||
if (id == PW_ID_CORE) {
|
||||
core->last_seq = seq;
|
||||
pw_thread_loop_signal (core->loop, FALSE);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue