type: add param_io mappings

This commit is contained in:
Wim Taymans 2017-11-28 12:43:31 +01:00
parent 77838fd734
commit f019d984e9
2 changed files with 3 additions and 0 deletions

View file

@ -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);
}

View file

@ -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