mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-02 09:01:50 -05:00
Cleanups
Hide GDBus from RTKit API Remove register node from dbus API Add signal Add object and register objects in the registry Add some preregistered types to the registry Let the daemon listen to the registry
This commit is contained in:
parent
e88a376d7c
commit
89bc235924
27 changed files with 568 additions and 462 deletions
|
|
@ -24,6 +24,9 @@
|
|||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
#define PINOS_LINK_URI "http://pinos.org/ns/link"
|
||||
#define PINOS_LINK_PREFIX PINOS_LINK_URI "#"
|
||||
|
||||
typedef struct _PinosLink PinosLink;
|
||||
typedef struct _PinosLinkClass PinosLinkClass;
|
||||
typedef struct _PinosLinkPrivate PinosLinkPrivate;
|
||||
|
|
@ -31,6 +34,7 @@ typedef struct _PinosLinkPrivate PinosLinkPrivate;
|
|||
#include <spa/include/spa/ringbuffer.h>
|
||||
|
||||
#include <pinos/client/mem.h>
|
||||
#include <pinos/client/object.h>
|
||||
|
||||
#include <pinos/server/daemon.h>
|
||||
#include <pinos/server/main-loop.h>
|
||||
|
|
@ -50,9 +54,9 @@ typedef struct _PinosLinkPrivate PinosLinkPrivate;
|
|||
* Pinos link object class.
|
||||
*/
|
||||
struct _PinosLink {
|
||||
GObject object;
|
||||
GObject obj;
|
||||
|
||||
uint32_t id;
|
||||
PinosObject object;
|
||||
|
||||
PinosPort *output;
|
||||
PinosPort *input;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue