2019-07-02 17:34:26 +02:00
|
|
|
/* PipeWire
|
|
|
|
|
*
|
|
|
|
|
* Copyright © 2018 Wim Taymans
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
|
* Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <errno.h>
|
2019-07-10 18:04:59 +02:00
|
|
|
#include <math.h>
|
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
|
|
#include "config.h"
|
2019-07-02 17:34:26 +02:00
|
|
|
|
|
|
|
|
#include <spa/node/node.h>
|
2019-07-25 12:19:41 +02:00
|
|
|
#include <spa/node/utils.h>
|
2019-07-10 18:04:59 +02:00
|
|
|
#include <spa/utils/hook.h>
|
2020-05-08 16:18:10 +02:00
|
|
|
#include <spa/utils/result.h>
|
2019-07-02 17:34:26 +02:00
|
|
|
#include <spa/utils/names.h>
|
2019-07-10 18:04:59 +02:00
|
|
|
#include <spa/utils/type-info.h>
|
2019-07-25 12:19:41 +02:00
|
|
|
#include <spa/param/format.h>
|
|
|
|
|
#include <spa/param/format-utils.h>
|
|
|
|
|
#include <spa/debug/types.h>
|
2019-07-02 17:34:26 +02:00
|
|
|
|
|
|
|
|
#include "pipewire/pipewire.h"
|
|
|
|
|
|
|
|
|
|
#include "modules/spa/spa-node.h"
|
|
|
|
|
|
2019-07-25 12:19:41 +02:00
|
|
|
#define NAME "adapter"
|
2019-07-02 17:34:26 +02:00
|
|
|
|
|
|
|
|
struct buffer {
|
|
|
|
|
struct spa_buffer buf;
|
|
|
|
|
struct spa_data datas[1];
|
|
|
|
|
struct spa_chunk chunk[1];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct node {
|
2019-12-10 18:19:56 +01:00
|
|
|
struct pw_context *context;
|
2019-07-02 17:34:26 +02:00
|
|
|
|
2019-12-11 12:41:45 +01:00
|
|
|
struct pw_impl_node *node;
|
2019-07-02 17:34:26 +02:00
|
|
|
struct spa_hook node_listener;
|
|
|
|
|
|
2020-02-21 10:47:32 +01:00
|
|
|
struct pw_impl_node *follower;
|
2019-07-12 09:57:31 +02:00
|
|
|
|
2019-07-10 18:04:59 +02:00
|
|
|
void *user_data;
|
|
|
|
|
enum pw_direction direction;
|
|
|
|
|
struct pw_properties *props;
|
2019-07-02 17:34:26 +02:00
|
|
|
|
2019-07-25 12:19:41 +02:00
|
|
|
uint32_t media_type;
|
|
|
|
|
uint32_t media_subtype;
|
2019-07-02 17:34:26 +02:00
|
|
|
|
|
|
|
|
struct spa_list ports;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/** \endcond */
|
2019-07-23 17:37:48 +02:00
|
|
|
static void node_free(void *data)
|
|
|
|
|
{
|
|
|
|
|
struct node *n = data;
|
2020-11-06 15:53:32 +01:00
|
|
|
spa_hook_remove(&n->node_listener);
|
2019-07-12 09:57:31 +02:00
|
|
|
pw_properties_free(n->props);
|
2019-07-10 18:04:59 +02:00
|
|
|
}
|
|
|
|
|
|
2019-12-11 12:24:03 +01:00
|
|
|
static void node_port_init(void *data, struct pw_impl_port *port)
|
2019-07-02 17:34:26 +02:00
|
|
|
{
|
2019-07-10 18:04:59 +02:00
|
|
|
struct node *n = data;
|
|
|
|
|
const struct pw_properties *old;
|
|
|
|
|
enum pw_direction direction;
|
2019-07-02 17:34:26 +02:00
|
|
|
struct pw_properties *new;
|
2019-09-23 20:51:34 +02:00
|
|
|
const char *str, *path, *node_name, *media_class;
|
2019-07-02 17:34:26 +02:00
|
|
|
char position[8], *prefix;
|
Add support for virtual source
A virtual source is usually implemented with a null-sink, it looks
like a source to pulseaudio clients but just forwards what it gets
as input.
Make sure the port names make sense.
You can use the null sink now as:
pactl load-module module-null-sink sink_name=source object.linger=1
media.class=Audio/Source/Virtual channel_map=FL,FR,RL,RR
This creates a node with "input" and "capture" ports and looks
like a virtual source for pulseaudio clients.
pactl load-module module-null-sink sink_name=source object.linger=1
media.class=Audio/Sink channel_map=FL,FR,RL,RR
This creates a node with "playback" and "monitor" ports and looks
like a virtual sink for pulseaudio clients.
pactl load-module module-null-sink sink_name=source object.linger=1
media.class=Audio/Duplex channel_map=FL,FR,RL,RR
This creates a node with "playback" and "capture" ports and looks
like a virtual source and sink for pulseaudio clients.
2020-12-02 15:40:23 +01:00
|
|
|
bool is_monitor, is_device, is_duplex, is_virtual;
|
2019-07-02 17:34:26 +02:00
|
|
|
|
2019-12-11 12:24:03 +01:00
|
|
|
direction = pw_impl_port_get_direction(port);
|
2019-07-02 17:34:26 +02:00
|
|
|
|
2019-12-11 12:24:03 +01:00
|
|
|
old = pw_impl_port_get_properties(port);
|
2019-07-02 17:34:26 +02:00
|
|
|
|
2019-07-16 11:16:10 +02:00
|
|
|
is_monitor = (str = pw_properties_get(old, PW_KEY_PORT_MONITOR)) != NULL &&
|
2019-07-02 17:34:26 +02:00
|
|
|
pw_properties_parse_bool(str);
|
|
|
|
|
|
2019-07-16 11:16:10 +02:00
|
|
|
if (!is_monitor && direction != n->direction)
|
2019-07-10 18:04:59 +02:00
|
|
|
return;
|
|
|
|
|
|
2019-09-23 20:51:34 +02:00
|
|
|
path = pw_properties_get(n->props, PW_KEY_OBJECT_PATH);
|
2019-07-16 11:16:10 +02:00
|
|
|
media_class = pw_properties_get(n->props, PW_KEY_MEDIA_CLASS);
|
2019-07-02 17:34:26 +02:00
|
|
|
|
2019-07-16 11:16:10 +02:00
|
|
|
if (media_class != NULL &&
|
|
|
|
|
(strstr(media_class, "Sink") != NULL ||
|
|
|
|
|
strstr(media_class, "Source") != NULL))
|
|
|
|
|
is_device = true;
|
|
|
|
|
else
|
|
|
|
|
is_device = false;
|
|
|
|
|
|
2020-12-02 13:00:21 +01:00
|
|
|
is_duplex = media_class != NULL && strstr(media_class, "Duplex") != NULL;
|
Add support for virtual source
A virtual source is usually implemented with a null-sink, it looks
like a source to pulseaudio clients but just forwards what it gets
as input.
Make sure the port names make sense.
You can use the null sink now as:
pactl load-module module-null-sink sink_name=source object.linger=1
media.class=Audio/Source/Virtual channel_map=FL,FR,RL,RR
This creates a node with "input" and "capture" ports and looks
like a virtual source for pulseaudio clients.
pactl load-module module-null-sink sink_name=source object.linger=1
media.class=Audio/Sink channel_map=FL,FR,RL,RR
This creates a node with "playback" and "monitor" ports and looks
like a virtual sink for pulseaudio clients.
pactl load-module module-null-sink sink_name=source object.linger=1
media.class=Audio/Duplex channel_map=FL,FR,RL,RR
This creates a node with "playback" and "capture" ports and looks
like a virtual source and sink for pulseaudio clients.
2020-12-02 15:40:23 +01:00
|
|
|
is_virtual = media_class != NULL && strstr(media_class, "Virtual") != NULL;
|
2020-12-02 11:44:19 +01:00
|
|
|
|
2019-07-16 11:16:10 +02:00
|
|
|
new = pw_properties_new(NULL, NULL);
|
|
|
|
|
|
Add support for virtual source
A virtual source is usually implemented with a null-sink, it looks
like a source to pulseaudio clients but just forwards what it gets
as input.
Make sure the port names make sense.
You can use the null sink now as:
pactl load-module module-null-sink sink_name=source object.linger=1
media.class=Audio/Source/Virtual channel_map=FL,FR,RL,RR
This creates a node with "input" and "capture" ports and looks
like a virtual source for pulseaudio clients.
pactl load-module module-null-sink sink_name=source object.linger=1
media.class=Audio/Sink channel_map=FL,FR,RL,RR
This creates a node with "playback" and "monitor" ports and looks
like a virtual sink for pulseaudio clients.
pactl load-module module-null-sink sink_name=source object.linger=1
media.class=Audio/Duplex channel_map=FL,FR,RL,RR
This creates a node with "playback" and "capture" ports and looks
like a virtual source and sink for pulseaudio clients.
2020-12-02 15:40:23 +01:00
|
|
|
if (is_duplex)
|
2019-07-16 11:16:10 +02:00
|
|
|
prefix = direction == PW_DIRECTION_INPUT ?
|
|
|
|
|
"playback" : "capture";
|
Add support for virtual source
A virtual source is usually implemented with a null-sink, it looks
like a source to pulseaudio clients but just forwards what it gets
as input.
Make sure the port names make sense.
You can use the null sink now as:
pactl load-module module-null-sink sink_name=source object.linger=1
media.class=Audio/Source/Virtual channel_map=FL,FR,RL,RR
This creates a node with "input" and "capture" ports and looks
like a virtual source for pulseaudio clients.
pactl load-module module-null-sink sink_name=source object.linger=1
media.class=Audio/Sink channel_map=FL,FR,RL,RR
This creates a node with "playback" and "monitor" ports and looks
like a virtual sink for pulseaudio clients.
pactl load-module module-null-sink sink_name=source object.linger=1
media.class=Audio/Duplex channel_map=FL,FR,RL,RR
This creates a node with "playback" and "capture" ports and looks
like a virtual source and sink for pulseaudio clients.
2020-12-02 15:40:23 +01:00
|
|
|
else if (is_virtual)
|
|
|
|
|
prefix = direction == PW_DIRECTION_INPUT ?
|
|
|
|
|
"input" : "capture";
|
|
|
|
|
else if (is_device)
|
|
|
|
|
prefix = direction == PW_DIRECTION_INPUT ?
|
|
|
|
|
"playback" : is_monitor ? "monitor" : "capture";
|
2019-07-02 17:34:26 +02:00
|
|
|
else
|
2019-07-16 11:16:10 +02:00
|
|
|
prefix = direction == PW_DIRECTION_INPUT ?
|
|
|
|
|
"input" : "output";
|
2019-07-02 17:34:26 +02:00
|
|
|
|
|
|
|
|
if ((str = pw_properties_get(old, PW_KEY_AUDIO_CHANNEL)) == NULL ||
|
|
|
|
|
strcmp(str, "UNK") == 0) {
|
2021-02-02 12:09:29 +01:00
|
|
|
snprintf(position, sizeof(position), "%d", pw_impl_port_get_id(port));
|
2019-07-02 17:34:26 +02:00
|
|
|
str = position;
|
|
|
|
|
}
|
2019-07-10 18:04:59 +02:00
|
|
|
if (direction == n->direction) {
|
2019-09-20 13:28:06 +02:00
|
|
|
if (is_device) {
|
2020-03-03 18:17:46 +01:00
|
|
|
pw_properties_set(new, PW_KEY_PORT_PHYSICAL, "true");
|
|
|
|
|
pw_properties_set(new, PW_KEY_PORT_TERMINAL, "true");
|
2019-09-20 13:28:06 +02:00
|
|
|
}
|
2019-07-02 17:34:26 +02:00
|
|
|
}
|
|
|
|
|
|
2019-09-23 20:51:34 +02:00
|
|
|
if ((node_name = pw_properties_get(n->props, PW_KEY_NODE_DESCRIPTION)) == NULL &&
|
|
|
|
|
(node_name = pw_properties_get(n->props, PW_KEY_NODE_NICK)) == NULL &&
|
|
|
|
|
(node_name = pw_properties_get(n->props, PW_KEY_NODE_NAME)) == NULL) {
|
|
|
|
|
node_name = "node";
|
|
|
|
|
}
|
|
|
|
|
pw_properties_setf(new, PW_KEY_OBJECT_PATH, "%s:%s_%d",
|
2020-01-02 13:48:50 +01:00
|
|
|
path ? path : node_name, prefix, pw_impl_port_get_id(port));
|
2019-09-23 20:51:34 +02:00
|
|
|
|
2019-09-25 10:44:40 +02:00
|
|
|
pw_properties_setf(new, PW_KEY_PORT_NAME, "%s_%s", prefix, str);
|
2019-09-23 20:51:34 +02:00
|
|
|
pw_properties_setf(new, PW_KEY_PORT_ALIAS, "%s:%s_%s",
|
|
|
|
|
node_name, prefix, str);
|
|
|
|
|
|
2019-12-11 12:24:03 +01:00
|
|
|
pw_impl_port_update_properties(port, &new->dict);
|
2019-07-02 17:34:26 +02:00
|
|
|
pw_properties_free(new);
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-11 12:41:45 +01:00
|
|
|
static const struct pw_impl_node_events node_events = {
|
|
|
|
|
PW_VERSION_IMPL_NODE_EVENTS,
|
2019-07-23 17:37:48 +02:00
|
|
|
.free = node_free,
|
2019-07-02 17:34:26 +02:00
|
|
|
.port_init = node_port_init,
|
|
|
|
|
};
|
|
|
|
|
|
2019-07-25 12:19:41 +02:00
|
|
|
|
2019-12-11 12:41:45 +01:00
|
|
|
static int find_format(struct pw_impl_node *node, enum pw_direction direction,
|
2019-07-25 12:19:41 +02:00
|
|
|
uint32_t *media_type, uint32_t *media_subtype)
|
|
|
|
|
{
|
|
|
|
|
uint32_t state = 0;
|
|
|
|
|
uint8_t buffer[4096];
|
|
|
|
|
struct spa_pod_builder b;
|
|
|
|
|
int res;
|
|
|
|
|
struct spa_pod *format;
|
|
|
|
|
|
|
|
|
|
spa_pod_builder_init(&b, buffer, sizeof(buffer));
|
2020-01-02 13:48:50 +01:00
|
|
|
if ((res = spa_node_port_enum_params_sync(pw_impl_node_get_implementation(node),
|
2019-07-25 12:19:41 +02:00
|
|
|
direction == PW_DIRECTION_INPUT ?
|
|
|
|
|
SPA_DIRECTION_INPUT :
|
|
|
|
|
SPA_DIRECTION_OUTPUT, 0,
|
|
|
|
|
SPA_PARAM_EnumFormat, &state,
|
|
|
|
|
NULL, &format, &b)) != 1) {
|
2020-05-08 16:18:10 +02:00
|
|
|
pw_log_warn(NAME " %p: can't get format: %s", node, spa_strerror(res));
|
2020-05-20 15:15:35 +02:00
|
|
|
return res < 0 ? res : -ENOENT;
|
2019-07-25 12:19:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ((res = spa_format_parse(format, media_type, media_subtype)) < 0)
|
|
|
|
|
return res;
|
|
|
|
|
|
|
|
|
|
pw_log_debug(NAME " %p: %s/%s", node,
|
|
|
|
|
spa_debug_type_find_name(spa_type_media_type, *media_type),
|
|
|
|
|
spa_debug_type_find_name(spa_type_media_subtype, *media_subtype));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2019-12-11 12:41:45 +01:00
|
|
|
struct pw_impl_node *pw_adapter_new(struct pw_context *context,
|
2020-02-21 10:47:32 +01:00
|
|
|
struct pw_impl_node *follower,
|
2019-07-10 18:04:59 +02:00
|
|
|
struct pw_properties *props,
|
|
|
|
|
size_t user_data_size)
|
2019-07-02 17:34:26 +02:00
|
|
|
{
|
2019-12-11 12:41:45 +01:00
|
|
|
struct pw_impl_node *node;
|
2019-07-10 18:04:59 +02:00
|
|
|
struct node *n;
|
2019-08-12 14:47:16 +02:00
|
|
|
const char *str, *factory_name;
|
2019-07-10 18:04:59 +02:00
|
|
|
const struct pw_node_info *info;
|
|
|
|
|
enum pw_direction direction;
|
2019-07-25 12:19:41 +02:00
|
|
|
int res;
|
|
|
|
|
uint32_t media_type, media_subtype;
|
2019-07-02 17:34:26 +02:00
|
|
|
|
2020-02-21 10:47:32 +01:00
|
|
|
info = pw_impl_node_get_info(follower);
|
2019-07-10 18:04:59 +02:00
|
|
|
if (info == NULL) {
|
2019-07-25 12:19:41 +02:00
|
|
|
res = -EINVAL;
|
|
|
|
|
goto error;
|
2019-07-10 18:04:59 +02:00
|
|
|
}
|
2019-07-02 17:34:26 +02:00
|
|
|
|
2020-02-21 10:47:32 +01:00
|
|
|
pw_log_debug(NAME " %p: in %d/%d out %d/%d", follower,
|
2019-07-25 12:19:41 +02:00
|
|
|
info->n_input_ports, info->max_input_ports,
|
|
|
|
|
info->n_output_ports, info->max_output_ports);
|
|
|
|
|
|
2019-07-15 17:12:51 +02:00
|
|
|
pw_properties_update(props, info->props);
|
|
|
|
|
|
2019-07-25 12:19:41 +02:00
|
|
|
if (info->n_output_ports > 0) {
|
2019-07-10 18:04:59 +02:00
|
|
|
direction = PW_DIRECTION_OUTPUT;
|
2019-07-25 12:19:41 +02:00
|
|
|
} else if (info->n_input_ports > 0) {
|
|
|
|
|
direction = PW_DIRECTION_INPUT;
|
|
|
|
|
} else {
|
|
|
|
|
res = -EINVAL;
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
2019-07-02 17:34:26 +02:00
|
|
|
|
2019-07-10 18:04:59 +02:00
|
|
|
if ((str = pw_properties_get(props, PW_KEY_NODE_ID)) != NULL)
|
|
|
|
|
pw_properties_set(props, PW_KEY_NODE_SESSION, str);
|
2019-07-02 17:34:26 +02:00
|
|
|
|
2020-05-20 13:52:10 +02:00
|
|
|
if (pw_properties_get(props, "factory.mode") == NULL) {
|
|
|
|
|
if (direction == PW_DIRECTION_INPUT)
|
2019-07-12 15:11:03 +02:00
|
|
|
str = "merge";
|
2020-05-20 13:52:10 +02:00
|
|
|
else
|
2019-07-12 15:11:03 +02:00
|
|
|
str = "split";
|
|
|
|
|
pw_properties_set(props, "factory.mode", str);
|
2019-07-10 18:04:59 +02:00
|
|
|
}
|
2019-07-02 17:34:26 +02:00
|
|
|
|
2020-02-21 10:47:32 +01:00
|
|
|
if ((res = find_format(follower, direction, &media_type, &media_subtype)) < 0)
|
2019-07-25 12:19:41 +02:00
|
|
|
goto error;
|
2019-07-02 17:34:26 +02:00
|
|
|
|
2019-07-25 12:19:41 +02:00
|
|
|
if (media_type == SPA_MEDIA_TYPE_audio) {
|
2020-02-21 10:47:32 +01:00
|
|
|
pw_properties_setf(props, "audio.adapt.follower", "pointer:%p",
|
|
|
|
|
pw_impl_node_get_implementation(follower));
|
2019-07-25 12:19:41 +02:00
|
|
|
pw_properties_set(props, SPA_KEY_LIBRARY_NAME, "audioconvert/libspa-audioconvert");
|
|
|
|
|
if (pw_properties_get(props, PW_KEY_MEDIA_CLASS) == NULL)
|
|
|
|
|
pw_properties_setf(props, PW_KEY_MEDIA_CLASS, "Audio/%s",
|
|
|
|
|
direction == PW_DIRECTION_INPUT ? "Sink" : "Source");
|
|
|
|
|
factory_name = SPA_NAME_AUDIO_ADAPT;
|
|
|
|
|
}
|
|
|
|
|
else if (media_type == SPA_MEDIA_TYPE_video) {
|
2020-02-21 10:47:32 +01:00
|
|
|
pw_properties_setf(props, "video.adapt.follower", "pointer:%p",
|
|
|
|
|
pw_impl_node_get_implementation(follower));
|
2019-07-25 12:19:41 +02:00
|
|
|
pw_properties_set(props, SPA_KEY_LIBRARY_NAME, "videoconvert/libspa-videoconvert");
|
|
|
|
|
if (pw_properties_get(props, PW_KEY_MEDIA_CLASS) == NULL)
|
|
|
|
|
pw_properties_setf(props, PW_KEY_MEDIA_CLASS, "Video/%s",
|
|
|
|
|
direction == PW_DIRECTION_INPUT ? "Sink" : "Source");
|
|
|
|
|
factory_name = SPA_NAME_VIDEO_ADAPT;
|
|
|
|
|
} else {
|
|
|
|
|
res = -ENOTSUP;
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
2019-07-02 17:34:26 +02:00
|
|
|
|
2019-12-10 18:19:56 +01:00
|
|
|
node = pw_spa_node_load(context,
|
2019-07-25 12:19:41 +02:00
|
|
|
factory_name,
|
|
|
|
|
PW_SPA_NODE_FLAG_ACTIVATE | PW_SPA_NODE_FLAG_NO_REGISTER,
|
|
|
|
|
pw_properties_copy(props),
|
|
|
|
|
sizeof(struct node) + user_data_size);
|
2019-07-10 18:04:59 +02:00
|
|
|
if (node == NULL) {
|
2019-07-02 17:34:26 +02:00
|
|
|
res = -errno;
|
2019-07-10 18:04:59 +02:00
|
|
|
pw_log_error("can't load spa node: %m");
|
|
|
|
|
goto error;
|
2019-07-02 17:34:26 +02:00
|
|
|
}
|
|
|
|
|
|
2019-07-10 18:04:59 +02:00
|
|
|
n = pw_spa_node_get_user_data(node);
|
2019-12-10 18:19:56 +01:00
|
|
|
n->context = context;
|
2019-07-10 18:04:59 +02:00
|
|
|
n->node = node;
|
2020-02-21 10:47:32 +01:00
|
|
|
n->follower = follower;
|
2019-07-10 18:04:59 +02:00
|
|
|
n->direction = direction;
|
|
|
|
|
n->props = props;
|
2019-07-25 12:19:41 +02:00
|
|
|
n->media_type = media_type;
|
|
|
|
|
n->media_subtype = media_subtype;
|
2019-07-10 18:04:59 +02:00
|
|
|
spa_list_init(&n->ports);
|
|
|
|
|
|
|
|
|
|
if (user_data_size > 0)
|
|
|
|
|
n->user_data = SPA_MEMBER(n, sizeof(struct node), void);
|
2019-07-02 17:34:26 +02:00
|
|
|
|
2019-12-11 12:41:45 +01:00
|
|
|
pw_impl_node_add_listener(node, &n->node_listener, &node_events, n);
|
2019-07-02 17:34:26 +02:00
|
|
|
|
2019-07-10 18:04:59 +02:00
|
|
|
return node;
|
2019-07-02 17:34:26 +02:00
|
|
|
|
2019-07-10 18:04:59 +02:00
|
|
|
error:
|
|
|
|
|
if (props)
|
|
|
|
|
pw_properties_free(props);
|
2019-07-02 17:34:26 +02:00
|
|
|
errno = -res;
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-11 12:41:45 +01:00
|
|
|
void *pw_adapter_get_user_data(struct pw_impl_node *node)
|
2019-07-02 17:34:26 +02:00
|
|
|
{
|
2019-07-10 18:04:59 +02:00
|
|
|
struct node *n = pw_spa_node_get_user_data(node);
|
|
|
|
|
return n->user_data;
|
2019-07-02 17:34:26 +02:00
|
|
|
}
|