pw_device -> pw_impl_device

This commit is contained in:
Wim Taymans 2019-12-11 11:34:02 +01:00
parent 95688939bf
commit 73900eea1b
12 changed files with 112 additions and 258 deletions

View file

@ -40,7 +40,7 @@ struct data {
struct pw_core *core;
struct spa_hook core_listener;
struct pw_device *device;
struct pw_impl_device *device;
const char *library;
const char *factory;
const char *path;
@ -65,7 +65,7 @@ static int make_device(struct data *data)
props, SPA_ID_INVALID);
pw_core_export(data->core, SPA_TYPE_INTERFACE_Device, NULL,
pw_device_get_implementation(data->device), 0);
pw_impl_device_get_implementation(data->device), 0);
return 0;
}