mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-03 09:01:54 -05:00
type: add param_io mappings
This commit is contained in:
parent
77838fd734
commit
f019d984e9
2 changed files with 3 additions and 0 deletions
|
|
@ -63,4 +63,5 @@ void pw_type_init(struct pw_type *type)
|
|||
spa_type_monitor_map(type->map, &type->monitor);
|
||||
spa_type_param_buffers_map(type->map, &type->param_buffers);
|
||||
spa_type_param_meta_map(type->map, &type->param_meta);
|
||||
spa_type_param_io_map(type->map, &type->param_io);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@ extern "C" {
|
|||
#include <spa/monitor/monitor.h>
|
||||
#include <spa/param/buffers.h>
|
||||
#include <spa/param/meta.h>
|
||||
#include <spa/param/io.h>
|
||||
#include <spa/node/io.h>
|
||||
|
||||
#include <pipewire/map.h>
|
||||
|
|
@ -74,6 +75,7 @@ struct pw_type {
|
|||
struct spa_type_monitor monitor;
|
||||
struct spa_type_param_buffers param_buffers;
|
||||
struct spa_type_param_meta param_meta;
|
||||
struct spa_type_param_io param_io;
|
||||
};
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue