2017-05-23 19:15:33 +02:00
|
|
|
/* PipeWire
|
2017-03-03 19:06:54 +01:00
|
|
|
*
|
2018-11-05 17:48:52 +01:00
|
|
|
* Copyright © 2018 Wim Taymans
|
2017-03-03 19:06:54 +01:00
|
|
|
*
|
2018-11-05 17:48:52 +01:00
|
|
|
* 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:
|
2017-03-03 19:06:54 +01:00
|
|
|
*
|
2018-11-05 17:48:52 +01:00
|
|
|
* 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.
|
2017-03-03 19:06:54 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
2017-11-10 13:36:14 +01:00
|
|
|
#include <spa/pod/parser.h>
|
2017-03-03 19:06:54 +01:00
|
|
|
|
2019-01-14 12:58:23 +01:00
|
|
|
#include <pipewire/pipewire.h>
|
2017-03-03 19:06:54 +01:00
|
|
|
|
2019-01-14 12:58:23 +01:00
|
|
|
#include <extensions/protocol-native.h>
|
|
|
|
|
#include <extensions/client-node.h>
|
2017-07-11 12:24:03 +02:00
|
|
|
|
2017-06-09 17:24:18 +02:00
|
|
|
static void
|
|
|
|
|
client_node_marshal_done(void *object, int seq, int res)
|
|
|
|
|
{
|
|
|
|
|
struct pw_proxy *proxy = object;
|
2017-07-11 12:24:03 +02:00
|
|
|
struct spa_pod_builder *b;
|
2017-06-09 17:24:18 +02:00
|
|
|
|
2017-08-04 16:49:13 +02:00
|
|
|
b = pw_protocol_native_begin_proxy(proxy, PW_CLIENT_NODE_PROXY_METHOD_DONE);
|
2017-06-09 17:24:18 +02:00
|
|
|
|
2018-09-05 16:41:07 +02:00
|
|
|
spa_pod_builder_add_struct(b,
|
2019-01-16 11:05:12 +01:00
|
|
|
SPA_POD_Int(seq),
|
|
|
|
|
SPA_POD_Int(res));
|
2017-06-09 17:24:18 +02:00
|
|
|
|
2017-07-12 18:04:00 +02:00
|
|
|
pw_protocol_native_end_proxy(proxy, b);
|
2017-06-09 17:24:18 +02:00
|
|
|
}
|
|
|
|
|
|
2017-06-21 12:11:54 +02:00
|
|
|
|
2017-03-06 15:48:04 +01:00
|
|
|
static void
|
2017-05-26 08:05:01 +02:00
|
|
|
client_node_marshal_update(void *object,
|
|
|
|
|
uint32_t change_mask,
|
|
|
|
|
uint32_t max_input_ports,
|
2017-11-07 17:39:31 +01:00
|
|
|
uint32_t max_output_ports,
|
|
|
|
|
uint32_t n_params,
|
2018-06-07 10:23:41 +02:00
|
|
|
const struct spa_pod **params,
|
|
|
|
|
const struct spa_dict *props)
|
2017-03-03 19:06:54 +01:00
|
|
|
{
|
2017-05-26 08:05:01 +02:00
|
|
|
struct pw_proxy *proxy = object;
|
2017-07-11 12:24:03 +02:00
|
|
|
struct spa_pod_builder *b;
|
2019-01-22 17:38:23 +01:00
|
|
|
struct spa_pod_frame f;
|
2019-01-07 15:52:42 +01:00
|
|
|
uint32_t i, n_items;
|
2017-03-06 15:48:04 +01:00
|
|
|
|
2017-08-04 16:49:13 +02:00
|
|
|
b = pw_protocol_native_begin_proxy(proxy, PW_CLIENT_NODE_PROXY_METHOD_UPDATE);
|
2017-03-14 20:18:31 +01:00
|
|
|
|
2019-01-22 17:38:23 +01:00
|
|
|
spa_pod_builder_push_struct(b, &f);
|
2017-11-07 17:39:31 +01:00
|
|
|
spa_pod_builder_add(b,
|
2019-01-16 11:05:12 +01:00
|
|
|
SPA_POD_Int(change_mask),
|
|
|
|
|
SPA_POD_Int(max_input_ports),
|
|
|
|
|
SPA_POD_Int(max_output_ports),
|
|
|
|
|
SPA_POD_Int(n_params), NULL);
|
2017-11-07 17:39:31 +01:00
|
|
|
|
|
|
|
|
for (i = 0; i < n_params; i++)
|
2019-01-16 11:05:12 +01:00
|
|
|
spa_pod_builder_add(b, SPA_POD_Pod(params[i]), NULL);
|
2017-11-07 17:39:31 +01:00
|
|
|
|
2018-06-07 10:23:41 +02:00
|
|
|
n_items = props ? props->n_items : 0;
|
2019-01-16 11:05:12 +01:00
|
|
|
spa_pod_builder_add(b,
|
|
|
|
|
SPA_POD_Int(n_items), NULL);
|
2018-06-07 10:23:41 +02:00
|
|
|
for (i = 0; i < n_items; i++) {
|
|
|
|
|
spa_pod_builder_add(b,
|
2019-01-16 11:05:12 +01:00
|
|
|
SPA_POD_String(props->items[i].key),
|
|
|
|
|
SPA_POD_String(props->items[i].value), NULL);
|
2018-06-07 10:23:41 +02:00
|
|
|
}
|
2019-01-22 17:38:23 +01:00
|
|
|
spa_pod_builder_pop(b, &f);
|
2017-03-03 19:06:54 +01:00
|
|
|
|
2017-07-12 18:04:00 +02:00
|
|
|
pw_protocol_native_end_proxy(proxy, b);
|
2017-03-03 19:06:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2017-05-26 08:05:01 +02:00
|
|
|
client_node_marshal_port_update(void *object,
|
|
|
|
|
enum spa_direction direction,
|
|
|
|
|
uint32_t port_id,
|
|
|
|
|
uint32_t change_mask,
|
|
|
|
|
uint32_t n_params,
|
2017-11-13 17:57:38 +01:00
|
|
|
const struct spa_pod **params,
|
2017-11-07 17:39:31 +01:00
|
|
|
const struct spa_port_info *info)
|
2017-03-06 15:48:04 +01:00
|
|
|
{
|
2017-05-26 08:05:01 +02:00
|
|
|
struct pw_proxy *proxy = object;
|
2017-07-11 12:24:03 +02:00
|
|
|
struct spa_pod_builder *b;
|
2019-01-22 17:38:23 +01:00
|
|
|
struct spa_pod_frame f[2];
|
2019-01-07 15:52:42 +01:00
|
|
|
uint32_t i, n_items;
|
2017-03-06 15:48:04 +01:00
|
|
|
|
2017-08-04 16:49:13 +02:00
|
|
|
b = pw_protocol_native_begin_proxy(proxy, PW_CLIENT_NODE_PROXY_METHOD_PORT_UPDATE);
|
2017-03-03 19:06:54 +01:00
|
|
|
|
2019-01-22 17:38:23 +01:00
|
|
|
spa_pod_builder_push_struct(b, &f[0]);
|
2017-07-11 12:24:03 +02:00
|
|
|
spa_pod_builder_add(b,
|
2019-01-16 11:05:12 +01:00
|
|
|
SPA_POD_Int(direction),
|
|
|
|
|
SPA_POD_Int(port_id),
|
|
|
|
|
SPA_POD_Int(change_mask),
|
|
|
|
|
SPA_POD_Int(n_params), NULL);
|
2017-05-26 08:05:01 +02:00
|
|
|
|
2017-09-21 18:57:41 +02:00
|
|
|
for (i = 0; i < n_params; i++)
|
2019-01-16 11:05:12 +01:00
|
|
|
spa_pod_builder_add(b,
|
|
|
|
|
SPA_POD_Pod(params[i]), NULL);
|
2017-05-26 08:05:01 +02:00
|
|
|
|
|
|
|
|
if (info) {
|
2018-02-09 18:10:51 +01:00
|
|
|
n_items = info->props ? info->props->n_items : 0;
|
|
|
|
|
|
2019-01-22 17:38:23 +01:00
|
|
|
spa_pod_builder_push_struct(b, &f[1]);
|
2018-02-09 18:10:51 +01:00
|
|
|
spa_pod_builder_add(b,
|
2019-01-16 11:05:12 +01:00
|
|
|
SPA_POD_Int(info->flags),
|
|
|
|
|
SPA_POD_Int(info->rate),
|
|
|
|
|
SPA_POD_Int(n_items), NULL);
|
2018-02-09 18:10:51 +01:00
|
|
|
for (i = 0; i < n_items; i++) {
|
|
|
|
|
spa_pod_builder_add(b,
|
2019-01-16 11:05:12 +01:00
|
|
|
SPA_POD_String(info->props->items[i].key),
|
|
|
|
|
SPA_POD_String(info->props->items[i].value), NULL);
|
2018-02-09 18:10:51 +01:00
|
|
|
}
|
2019-01-22 17:38:23 +01:00
|
|
|
spa_pod_builder_pop(b, &f[1]);
|
2017-05-26 08:05:01 +02:00
|
|
|
} else {
|
2019-01-16 11:05:12 +01:00
|
|
|
spa_pod_builder_add(b,
|
|
|
|
|
SPA_POD_Pod(NULL), NULL);
|
2017-05-26 08:05:01 +02:00
|
|
|
}
|
2019-01-22 17:38:23 +01:00
|
|
|
spa_pod_builder_pop(b, &f[0]);
|
2017-05-26 08:05:01 +02:00
|
|
|
|
2017-07-12 18:04:00 +02:00
|
|
|
pw_protocol_native_end_proxy(proxy, b);
|
2017-03-03 19:06:54 +01:00
|
|
|
}
|
|
|
|
|
|
2017-10-13 16:18:42 +02:00
|
|
|
static void client_node_marshal_set_active(void *object, bool active)
|
|
|
|
|
{
|
|
|
|
|
struct pw_proxy *proxy = object;
|
|
|
|
|
struct spa_pod_builder *b;
|
|
|
|
|
|
|
|
|
|
b = pw_protocol_native_begin_proxy(proxy, PW_CLIENT_NODE_PROXY_METHOD_SET_ACTIVE);
|
|
|
|
|
|
2019-01-16 11:05:12 +01:00
|
|
|
spa_pod_builder_add_struct(b,
|
|
|
|
|
SPA_POD_Bool(active));
|
2017-10-13 16:18:42 +02:00
|
|
|
|
|
|
|
|
pw_protocol_native_end_proxy(proxy, b);
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-21 12:11:54 +02:00
|
|
|
static void client_node_marshal_event_method(void *object, struct spa_event *event)
|
2017-03-03 19:06:54 +01:00
|
|
|
{
|
2017-05-26 08:05:01 +02:00
|
|
|
struct pw_proxy *proxy = object;
|
2017-07-11 12:24:03 +02:00
|
|
|
struct spa_pod_builder *b;
|
2017-03-06 15:48:04 +01:00
|
|
|
|
2017-08-04 16:49:13 +02:00
|
|
|
b = pw_protocol_native_begin_proxy(proxy, PW_CLIENT_NODE_PROXY_METHOD_EVENT);
|
2017-03-14 20:18:31 +01:00
|
|
|
|
2019-01-16 11:05:12 +01:00
|
|
|
spa_pod_builder_add_struct(b,
|
|
|
|
|
SPA_POD_Pod(event));
|
2017-03-03 19:06:54 +01:00
|
|
|
|
2017-07-12 18:04:00 +02:00
|
|
|
pw_protocol_native_end_proxy(proxy, b);
|
2017-03-03 19:06:54 +01:00
|
|
|
}
|
|
|
|
|
|
2017-12-18 11:38:30 +01:00
|
|
|
static int client_node_demarshal_add_mem(void *object, void *data, size_t size)
|
2017-12-01 17:24:03 +01:00
|
|
|
{
|
|
|
|
|
struct pw_proxy *proxy = object;
|
|
|
|
|
struct spa_pod_parser prs;
|
|
|
|
|
uint32_t mem_id, type, memfd_idx, flags;
|
|
|
|
|
int memfd;
|
|
|
|
|
|
2019-01-22 17:38:23 +01:00
|
|
|
spa_pod_parser_init(&prs, data, size);
|
2019-01-16 11:05:12 +01:00
|
|
|
if (spa_pod_parser_get_struct(&prs,
|
|
|
|
|
SPA_POD_Int(&mem_id),
|
|
|
|
|
SPA_POD_Id(&type),
|
|
|
|
|
SPA_POD_Int(&memfd_idx),
|
|
|
|
|
SPA_POD_Int(&flags)) < 0)
|
2017-12-18 11:38:30 +01:00
|
|
|
return -EINVAL;
|
2017-12-01 17:24:03 +01:00
|
|
|
|
|
|
|
|
memfd = pw_protocol_native_get_proxy_fd(proxy, memfd_idx);
|
|
|
|
|
|
2018-08-01 21:41:25 +02:00
|
|
|
pw_proxy_notify(proxy, struct pw_client_node_proxy_events, add_mem, 0,
|
2017-12-01 17:24:03 +01:00
|
|
|
mem_id,
|
|
|
|
|
type,
|
|
|
|
|
memfd, flags);
|
2017-12-18 11:38:30 +01:00
|
|
|
return 0;
|
2017-12-01 17:24:03 +01:00
|
|
|
}
|
|
|
|
|
|
2017-12-18 11:38:30 +01:00
|
|
|
static int client_node_demarshal_transport(void *object, void *data, size_t size)
|
2017-05-30 19:46:51 +02:00
|
|
|
{
|
|
|
|
|
struct pw_proxy *proxy = object;
|
2017-09-21 18:57:41 +02:00
|
|
|
struct spa_pod_parser prs;
|
2018-04-12 10:12:40 +02:00
|
|
|
uint32_t node_id, ridx, widx;
|
2017-11-07 17:39:31 +01:00
|
|
|
int readfd, writefd;
|
|
|
|
|
|
2019-01-22 17:38:23 +01:00
|
|
|
spa_pod_parser_init(&prs, data, size);
|
2019-01-16 11:05:12 +01:00
|
|
|
if (spa_pod_parser_get_struct(&prs,
|
|
|
|
|
SPA_POD_Int(&node_id),
|
|
|
|
|
SPA_POD_Int(&ridx),
|
|
|
|
|
SPA_POD_Int(&widx)) < 0)
|
2017-12-18 11:38:30 +01:00
|
|
|
return -EINVAL;
|
2017-11-07 17:39:31 +01:00
|
|
|
|
|
|
|
|
readfd = pw_protocol_native_get_proxy_fd(proxy, ridx);
|
|
|
|
|
writefd = pw_protocol_native_get_proxy_fd(proxy, widx);
|
|
|
|
|
|
2018-04-12 10:12:40 +02:00
|
|
|
if (readfd == -1 || writefd == -1)
|
2017-12-18 11:38:30 +01:00
|
|
|
return -EINVAL;
|
2017-11-07 17:39:31 +01:00
|
|
|
|
2018-08-01 21:41:25 +02:00
|
|
|
pw_proxy_notify(proxy, struct pw_client_node_proxy_events, transport, 0, node_id,
|
2018-04-12 10:12:40 +02:00
|
|
|
readfd, writefd);
|
2017-12-18 11:38:30 +01:00
|
|
|
return 0;
|
2017-11-07 17:39:31 +01:00
|
|
|
}
|
|
|
|
|
|
2017-12-18 11:38:30 +01:00
|
|
|
static int client_node_demarshal_set_param(void *object, void *data, size_t size)
|
2017-11-07 17:39:31 +01:00
|
|
|
{
|
|
|
|
|
struct pw_proxy *proxy = object;
|
|
|
|
|
struct spa_pod_parser prs;
|
|
|
|
|
uint32_t seq, id, flags;
|
2017-11-13 17:57:38 +01:00
|
|
|
const struct spa_pod *param = NULL;
|
2017-05-30 19:46:51 +02:00
|
|
|
|
2019-01-22 17:38:23 +01:00
|
|
|
spa_pod_parser_init(&prs, data, size);
|
2019-01-16 11:05:12 +01:00
|
|
|
if (spa_pod_parser_get_struct(&prs,
|
|
|
|
|
SPA_POD_Int(&seq),
|
|
|
|
|
SPA_POD_Id(&id),
|
|
|
|
|
SPA_POD_Int(&flags),
|
|
|
|
|
SPA_POD_PodObject(¶m)) < 0)
|
2017-12-18 11:38:30 +01:00
|
|
|
return -EINVAL;
|
2017-05-30 19:46:51 +02:00
|
|
|
|
2018-08-01 21:41:25 +02:00
|
|
|
pw_proxy_notify(proxy, struct pw_client_node_proxy_events, set_param, 0, seq, id, flags, param);
|
2017-12-18 11:38:30 +01:00
|
|
|
return 0;
|
2017-05-30 19:46:51 +02:00
|
|
|
}
|
|
|
|
|
|
2017-12-18 11:38:30 +01:00
|
|
|
static int client_node_demarshal_event_event(void *object, void *data, size_t size)
|
2017-03-03 19:06:54 +01:00
|
|
|
{
|
2017-05-26 08:05:01 +02:00
|
|
|
struct pw_proxy *proxy = object;
|
2017-09-21 18:57:41 +02:00
|
|
|
struct spa_pod_parser prs;
|
2017-05-26 08:05:01 +02:00
|
|
|
const struct spa_event *event;
|
|
|
|
|
|
2019-01-22 17:38:23 +01:00
|
|
|
spa_pod_parser_init(&prs, data, size);
|
2019-01-16 11:05:12 +01:00
|
|
|
if (spa_pod_parser_get_struct(&prs,
|
|
|
|
|
SPA_POD_PodObject(&event)) < 0)
|
2017-12-18 11:38:30 +01:00
|
|
|
return -EINVAL;
|
2017-05-26 08:05:01 +02:00
|
|
|
|
2018-08-01 21:41:25 +02:00
|
|
|
pw_proxy_notify(proxy, struct pw_client_node_proxy_events, event, 0, event);
|
2017-12-18 11:38:30 +01:00
|
|
|
return 0;
|
2017-03-03 19:06:54 +01:00
|
|
|
}
|
|
|
|
|
|
2017-12-18 11:38:30 +01:00
|
|
|
static int client_node_demarshal_command(void *object, void *data, size_t size)
|
2017-03-03 19:06:54 +01:00
|
|
|
{
|
2017-05-26 08:05:01 +02:00
|
|
|
struct pw_proxy *proxy = object;
|
2017-09-21 18:57:41 +02:00
|
|
|
struct spa_pod_parser prs;
|
2017-11-07 17:39:31 +01:00
|
|
|
const struct spa_command *command;
|
|
|
|
|
uint32_t seq;
|
2017-05-26 08:05:01 +02:00
|
|
|
|
2019-01-22 17:38:23 +01:00
|
|
|
spa_pod_parser_init(&prs, data, size);
|
2019-01-16 11:05:12 +01:00
|
|
|
if (spa_pod_parser_get_struct(&prs,
|
|
|
|
|
SPA_POD_Int(&seq),
|
|
|
|
|
SPA_POD_PodObject(&command)) < 0)
|
2017-12-18 11:38:30 +01:00
|
|
|
return -EINVAL;
|
2017-05-26 08:05:01 +02:00
|
|
|
|
2018-08-01 21:41:25 +02:00
|
|
|
pw_proxy_notify(proxy, struct pw_client_node_proxy_events, command, 0, seq, command);
|
2017-12-18 11:38:30 +01:00
|
|
|
return 0;
|
2017-03-03 19:06:54 +01:00
|
|
|
}
|
|
|
|
|
|
2017-12-18 11:38:30 +01:00
|
|
|
static int client_node_demarshal_add_port(void *object, void *data, size_t size)
|
2017-03-03 19:06:54 +01:00
|
|
|
{
|
2017-05-26 08:05:01 +02:00
|
|
|
struct pw_proxy *proxy = object;
|
2017-09-21 18:57:41 +02:00
|
|
|
struct spa_pod_parser prs;
|
2017-05-26 08:05:01 +02:00
|
|
|
int32_t seq, direction, port_id;
|
|
|
|
|
|
2019-01-22 17:38:23 +01:00
|
|
|
spa_pod_parser_init(&prs, data, size);
|
2019-01-16 11:05:12 +01:00
|
|
|
if (spa_pod_parser_get_struct(&prs,
|
|
|
|
|
SPA_POD_Int(&seq),
|
|
|
|
|
SPA_POD_Int(&direction),
|
|
|
|
|
SPA_POD_Int(&port_id)) < 0)
|
2017-12-18 11:38:30 +01:00
|
|
|
return -EINVAL;
|
2017-05-26 08:05:01 +02:00
|
|
|
|
2018-08-01 21:41:25 +02:00
|
|
|
pw_proxy_notify(proxy, struct pw_client_node_proxy_events, add_port, 0, seq, direction, port_id);
|
2017-12-18 11:38:30 +01:00
|
|
|
return 0;
|
2017-03-03 19:06:54 +01:00
|
|
|
}
|
|
|
|
|
|
2017-12-18 11:38:30 +01:00
|
|
|
static int client_node_demarshal_remove_port(void *object, void *data, size_t size)
|
2017-03-03 19:06:54 +01:00
|
|
|
{
|
2017-05-26 08:05:01 +02:00
|
|
|
struct pw_proxy *proxy = object;
|
2017-09-21 18:57:41 +02:00
|
|
|
struct spa_pod_parser prs;
|
2017-11-07 17:39:31 +01:00
|
|
|
int32_t seq, direction, port_id;
|
2017-05-26 08:05:01 +02:00
|
|
|
|
2019-01-22 17:38:23 +01:00
|
|
|
spa_pod_parser_init(&prs, data, size);
|
2019-01-16 11:05:12 +01:00
|
|
|
if (spa_pod_parser_get_struct(&prs,
|
|
|
|
|
SPA_POD_Int(&seq),
|
|
|
|
|
SPA_POD_Int(&direction),
|
|
|
|
|
SPA_POD_Int(&port_id)) < 0)
|
2017-12-18 11:38:30 +01:00
|
|
|
return -EINVAL;
|
2017-05-26 08:05:01 +02:00
|
|
|
|
2018-08-01 21:41:25 +02:00
|
|
|
pw_proxy_notify(proxy, struct pw_client_node_proxy_events, remove_port, 0, seq, direction, port_id);
|
2017-12-18 11:38:30 +01:00
|
|
|
return 0;
|
2017-03-03 19:06:54 +01:00
|
|
|
}
|
|
|
|
|
|
2017-12-18 11:38:30 +01:00
|
|
|
static int client_node_demarshal_port_set_param(void *object, void *data, size_t size)
|
2017-03-03 19:06:54 +01:00
|
|
|
{
|
2017-05-26 08:05:01 +02:00
|
|
|
struct pw_proxy *proxy = object;
|
2017-09-21 18:57:41 +02:00
|
|
|
struct spa_pod_parser prs;
|
2017-11-07 17:39:31 +01:00
|
|
|
uint32_t seq, direction, port_id, id, flags;
|
2017-11-13 17:57:38 +01:00
|
|
|
const struct spa_pod *param = NULL;
|
2017-05-26 08:05:01 +02:00
|
|
|
|
2019-01-22 17:38:23 +01:00
|
|
|
spa_pod_parser_init(&prs, data, size);
|
2019-01-16 11:05:12 +01:00
|
|
|
if (spa_pod_parser_get_struct(&prs,
|
|
|
|
|
SPA_POD_Int(&seq),
|
|
|
|
|
SPA_POD_Int(&direction),
|
|
|
|
|
SPA_POD_Int(&port_id),
|
|
|
|
|
SPA_POD_Id(&id),
|
|
|
|
|
SPA_POD_Int(&flags),
|
|
|
|
|
SPA_POD_PodObject(¶m)) < 0)
|
2017-12-18 11:38:30 +01:00
|
|
|
return -EINVAL;
|
2017-05-26 08:05:01 +02:00
|
|
|
|
2018-08-01 21:41:25 +02:00
|
|
|
pw_proxy_notify(proxy, struct pw_client_node_proxy_events, port_set_param, 0,
|
2017-11-07 17:39:31 +01:00
|
|
|
seq, direction, port_id, id, flags, param);
|
2017-12-18 11:38:30 +01:00
|
|
|
return 0;
|
2017-05-26 08:05:01 +02:00
|
|
|
}
|
|
|
|
|
|
2017-12-18 11:38:30 +01:00
|
|
|
static int client_node_demarshal_port_use_buffers(void *object, void *data, size_t size)
|
2017-05-26 08:05:01 +02:00
|
|
|
{
|
|
|
|
|
struct pw_proxy *proxy = object;
|
2017-09-21 18:57:41 +02:00
|
|
|
struct spa_pod_parser prs;
|
2019-01-22 17:38:23 +01:00
|
|
|
struct spa_pod_frame f;
|
2018-03-01 17:39:17 +01:00
|
|
|
uint32_t seq, direction, port_id, mix_id, n_buffers, data_id;
|
2017-05-26 08:05:01 +02:00
|
|
|
struct pw_client_node_buffer *buffers;
|
2019-01-07 15:52:42 +01:00
|
|
|
uint32_t i, j;
|
2017-05-26 08:05:01 +02:00
|
|
|
|
2019-01-22 17:38:23 +01:00
|
|
|
spa_pod_parser_init(&prs, data, size);
|
|
|
|
|
if (spa_pod_parser_push_struct(&prs, &f) < 0 ||
|
|
|
|
|
spa_pod_parser_get(&prs,
|
2019-01-16 11:05:12 +01:00
|
|
|
SPA_POD_Int(&seq),
|
|
|
|
|
SPA_POD_Int(&direction),
|
|
|
|
|
SPA_POD_Int(&port_id),
|
|
|
|
|
SPA_POD_Int(&mix_id),
|
|
|
|
|
SPA_POD_Int(&n_buffers), NULL) < 0)
|
2017-12-18 11:38:30 +01:00
|
|
|
return -EINVAL;
|
2017-05-26 08:05:01 +02:00
|
|
|
|
|
|
|
|
buffers = alloca(sizeof(struct pw_client_node_buffer) * n_buffers);
|
|
|
|
|
for (i = 0; i < n_buffers; i++) {
|
|
|
|
|
struct spa_buffer *buf = buffers[i].buffer = alloca(sizeof(struct spa_buffer));
|
|
|
|
|
|
2017-09-21 18:57:41 +02:00
|
|
|
if (spa_pod_parser_get(&prs,
|
2019-01-16 11:05:12 +01:00
|
|
|
SPA_POD_Int(&buffers[i].mem_id),
|
|
|
|
|
SPA_POD_Int(&buffers[i].offset),
|
|
|
|
|
SPA_POD_Int(&buffers[i].size),
|
|
|
|
|
SPA_POD_Int(&buf->n_metas), NULL) < 0)
|
2017-12-18 11:38:30 +01:00
|
|
|
return -EINVAL;
|
2017-05-26 08:05:01 +02:00
|
|
|
|
|
|
|
|
buf->metas = alloca(sizeof(struct spa_meta) * buf->n_metas);
|
|
|
|
|
for (j = 0; j < buf->n_metas; j++) {
|
|
|
|
|
struct spa_meta *m = &buf->metas[j];
|
|
|
|
|
|
2017-09-21 18:57:41 +02:00
|
|
|
if (spa_pod_parser_get(&prs,
|
2019-01-16 11:05:12 +01:00
|
|
|
SPA_POD_Id(&m->type),
|
|
|
|
|
SPA_POD_Int(&m->size), NULL) < 0)
|
2017-12-18 11:38:30 +01:00
|
|
|
return -EINVAL;
|
2017-05-26 08:05:01 +02:00
|
|
|
}
|
2019-01-16 11:05:12 +01:00
|
|
|
if (spa_pod_parser_get(&prs,
|
|
|
|
|
SPA_POD_Int(&buf->n_datas), NULL) < 0)
|
2017-12-18 11:38:30 +01:00
|
|
|
return -EINVAL;
|
2017-05-26 08:05:01 +02:00
|
|
|
|
|
|
|
|
buf->datas = alloca(sizeof(struct spa_data) * buf->n_datas);
|
|
|
|
|
for (j = 0; j < buf->n_datas; j++) {
|
|
|
|
|
struct spa_data *d = &buf->datas[j];
|
|
|
|
|
|
2017-09-21 18:57:41 +02:00
|
|
|
if (spa_pod_parser_get(&prs,
|
2019-01-16 11:05:12 +01:00
|
|
|
SPA_POD_Id(&d->type),
|
|
|
|
|
SPA_POD_Int(&data_id),
|
|
|
|
|
SPA_POD_Int(&d->flags),
|
|
|
|
|
SPA_POD_Int(&d->mapoffset),
|
|
|
|
|
SPA_POD_Int(&d->maxsize), NULL) < 0)
|
2017-12-18 11:38:30 +01:00
|
|
|
return -EINVAL;
|
2017-05-26 08:05:01 +02:00
|
|
|
|
|
|
|
|
d->data = SPA_UINT32_TO_PTR(data_id);
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-08-01 21:41:25 +02:00
|
|
|
pw_proxy_notify(proxy, struct pw_client_node_proxy_events, port_use_buffers, 0, seq,
|
2017-07-13 15:21:52 +02:00
|
|
|
direction,
|
|
|
|
|
port_id,
|
2018-03-01 17:39:17 +01:00
|
|
|
mix_id,
|
2017-07-13 15:21:52 +02:00
|
|
|
n_buffers, buffers);
|
2017-12-18 11:38:30 +01:00
|
|
|
return 0;
|
2017-05-26 08:05:01 +02:00
|
|
|
}
|
|
|
|
|
|
2017-12-18 11:38:30 +01:00
|
|
|
static int client_node_demarshal_port_command(void *object, void *data, size_t size)
|
2017-05-26 08:05:01 +02:00
|
|
|
{
|
|
|
|
|
struct pw_proxy *proxy = object;
|
2017-09-21 18:57:41 +02:00
|
|
|
struct spa_pod_parser prs;
|
2017-05-26 08:05:01 +02:00
|
|
|
const struct spa_command *command;
|
2017-05-30 19:46:51 +02:00
|
|
|
uint32_t direction, port_id;
|
2017-05-26 08:05:01 +02:00
|
|
|
|
2019-01-22 17:38:23 +01:00
|
|
|
spa_pod_parser_init(&prs, data, size);
|
2019-01-16 11:05:12 +01:00
|
|
|
if (spa_pod_parser_get_struct(&prs,
|
|
|
|
|
SPA_POD_Int(&direction),
|
|
|
|
|
SPA_POD_Int(&port_id),
|
|
|
|
|
SPA_POD_PodObject(&command)) < 0)
|
2017-12-18 11:38:30 +01:00
|
|
|
return -EINVAL;
|
2017-05-26 08:05:01 +02:00
|
|
|
|
2018-08-01 21:41:25 +02:00
|
|
|
pw_proxy_notify(proxy, struct pw_client_node_proxy_events, port_command, 0, direction,
|
2017-07-13 15:21:52 +02:00
|
|
|
port_id,
|
|
|
|
|
command);
|
2017-12-18 11:38:30 +01:00
|
|
|
return 0;
|
2017-05-26 08:05:01 +02:00
|
|
|
}
|
|
|
|
|
|
2017-12-18 11:38:30 +01:00
|
|
|
static int client_node_demarshal_port_set_io(void *object, void *data, size_t size)
|
2017-11-30 16:36:29 +01:00
|
|
|
{
|
|
|
|
|
struct pw_proxy *proxy = object;
|
|
|
|
|
struct spa_pod_parser prs;
|
2018-03-01 17:39:17 +01:00
|
|
|
uint32_t seq, direction, port_id, mix_id, id, memid, off, sz;
|
2017-11-30 16:36:29 +01:00
|
|
|
|
2019-01-22 17:38:23 +01:00
|
|
|
spa_pod_parser_init(&prs, data, size);
|
2019-01-16 11:05:12 +01:00
|
|
|
if (spa_pod_parser_get_struct(&prs,
|
|
|
|
|
SPA_POD_Int(&seq),
|
|
|
|
|
SPA_POD_Int(&direction),
|
|
|
|
|
SPA_POD_Int(&port_id),
|
|
|
|
|
SPA_POD_Int(&mix_id),
|
|
|
|
|
SPA_POD_Id(&id),
|
|
|
|
|
SPA_POD_Int(&memid),
|
|
|
|
|
SPA_POD_Int(&off),
|
|
|
|
|
SPA_POD_Int(&sz)) < 0)
|
2017-12-18 11:38:30 +01:00
|
|
|
return -EINVAL;
|
2017-11-30 16:36:29 +01:00
|
|
|
|
2018-08-01 21:41:25 +02:00
|
|
|
pw_proxy_notify(proxy, struct pw_client_node_proxy_events, port_set_io, 0,
|
2017-11-30 16:36:29 +01:00
|
|
|
seq,
|
2018-03-01 17:39:17 +01:00
|
|
|
direction, port_id, mix_id,
|
2017-11-30 16:36:29 +01:00
|
|
|
id, memid,
|
|
|
|
|
off, sz);
|
2017-12-18 11:38:30 +01:00
|
|
|
return 0;
|
2017-11-30 16:36:29 +01:00
|
|
|
}
|
|
|
|
|
|
2018-07-12 15:33:07 +02:00
|
|
|
static int client_node_demarshal_set_io(void *object, void *data, size_t size)
|
2018-05-11 10:13:37 +02:00
|
|
|
{
|
|
|
|
|
struct pw_proxy *proxy = object;
|
|
|
|
|
struct spa_pod_parser prs;
|
2018-07-12 15:33:07 +02:00
|
|
|
uint32_t id, memid, off, sz;
|
2018-05-11 10:13:37 +02:00
|
|
|
|
2019-01-22 17:38:23 +01:00
|
|
|
spa_pod_parser_init(&prs, data, size);
|
2019-01-16 11:05:12 +01:00
|
|
|
if (spa_pod_parser_get_struct(&prs,
|
|
|
|
|
SPA_POD_Id(&id),
|
|
|
|
|
SPA_POD_Int(&memid),
|
|
|
|
|
SPA_POD_Int(&off),
|
|
|
|
|
SPA_POD_Int(&sz)) < 0)
|
2018-05-11 10:13:37 +02:00
|
|
|
return -EINVAL;
|
|
|
|
|
|
2018-08-01 21:41:25 +02:00
|
|
|
pw_proxy_notify(proxy, struct pw_client_node_proxy_events, set_io, 0,
|
2018-07-12 15:33:07 +02:00
|
|
|
id, memid, off, sz);
|
2018-05-11 10:13:37 +02:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-01 17:24:03 +01:00
|
|
|
static void
|
|
|
|
|
client_node_marshal_add_mem(void *object,
|
|
|
|
|
uint32_t mem_id,
|
|
|
|
|
uint32_t type,
|
|
|
|
|
int memfd, uint32_t flags)
|
|
|
|
|
{
|
|
|
|
|
struct pw_resource *resource = object;
|
|
|
|
|
struct spa_pod_builder *b;
|
|
|
|
|
|
|
|
|
|
b = pw_protocol_native_begin_resource(resource, PW_CLIENT_NODE_PROXY_EVENT_ADD_MEM);
|
|
|
|
|
|
2018-09-05 16:41:07 +02:00
|
|
|
spa_pod_builder_add_struct(b,
|
2019-01-16 11:05:12 +01:00
|
|
|
SPA_POD_Int(mem_id),
|
|
|
|
|
SPA_POD_Id(type),
|
|
|
|
|
SPA_POD_Int(pw_protocol_native_add_resource_fd(resource, memfd)),
|
|
|
|
|
SPA_POD_Int(flags));
|
2017-12-01 17:24:03 +01:00
|
|
|
|
|
|
|
|
pw_protocol_native_end_resource(resource, b);
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-12 10:12:40 +02:00
|
|
|
static void client_node_marshal_transport(void *object, uint32_t node_id, int readfd, int writefd)
|
2017-05-26 08:05:01 +02:00
|
|
|
{
|
2017-11-07 17:39:31 +01:00
|
|
|
struct pw_resource *resource = object;
|
|
|
|
|
struct spa_pod_builder *b;
|
2017-08-07 10:25:02 +02:00
|
|
|
|
2017-11-07 17:39:31 +01:00
|
|
|
b = pw_protocol_native_begin_resource(resource, PW_CLIENT_NODE_PROXY_EVENT_TRANSPORT);
|
2017-06-09 17:24:18 +02:00
|
|
|
|
2018-09-05 16:41:07 +02:00
|
|
|
spa_pod_builder_add_struct(b,
|
2019-01-16 11:05:12 +01:00
|
|
|
SPA_POD_Int(node_id),
|
|
|
|
|
SPA_POD_Int(pw_protocol_native_add_resource_fd(resource, readfd)),
|
|
|
|
|
SPA_POD_Int(pw_protocol_native_add_resource_fd(resource, writefd)));
|
2017-08-07 10:25:02 +02:00
|
|
|
|
2017-11-07 17:39:31 +01:00
|
|
|
pw_protocol_native_end_resource(resource, b);
|
2017-03-03 19:06:54 +01:00
|
|
|
}
|
|
|
|
|
|
2017-06-21 12:11:54 +02:00
|
|
|
static void
|
2017-11-07 17:39:31 +01:00
|
|
|
client_node_marshal_set_param(void *object, uint32_t seq, uint32_t id, uint32_t flags,
|
2017-11-13 17:57:38 +01:00
|
|
|
const struct spa_pod *param)
|
2017-03-03 19:06:54 +01:00
|
|
|
{
|
2017-06-21 12:11:54 +02:00
|
|
|
struct pw_resource *resource = object;
|
2017-07-11 12:24:03 +02:00
|
|
|
struct spa_pod_builder *b;
|
2017-05-26 08:05:01 +02:00
|
|
|
|
2017-11-07 17:39:31 +01:00
|
|
|
b = pw_protocol_native_begin_resource(resource, PW_CLIENT_NODE_PROXY_EVENT_SET_PARAM);
|
2017-05-26 08:05:01 +02:00
|
|
|
|
2018-09-05 16:41:07 +02:00
|
|
|
spa_pod_builder_add_struct(b,
|
2019-01-16 11:05:12 +01:00
|
|
|
SPA_POD_Int(seq),
|
|
|
|
|
SPA_POD_Id(id),
|
|
|
|
|
SPA_POD_Int(flags),
|
|
|
|
|
SPA_POD_Pod(param));
|
2017-06-21 12:11:54 +02:00
|
|
|
|
2017-07-12 18:04:00 +02:00
|
|
|
pw_protocol_native_end_resource(resource, b);
|
2017-06-21 12:11:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void client_node_marshal_event_event(void *object, const struct spa_event *event)
|
|
|
|
|
{
|
|
|
|
|
struct pw_resource *resource = object;
|
2017-07-11 12:24:03 +02:00
|
|
|
struct spa_pod_builder *b;
|
2017-06-21 12:11:54 +02:00
|
|
|
|
2017-08-04 16:49:13 +02:00
|
|
|
b = pw_protocol_native_begin_resource(resource, PW_CLIENT_NODE_PROXY_EVENT_EVENT);
|
2017-06-21 12:11:54 +02:00
|
|
|
|
2019-01-16 11:05:12 +01:00
|
|
|
spa_pod_builder_add_struct(b,
|
|
|
|
|
SPA_POD_Pod(event));
|
2017-06-21 12:11:54 +02:00
|
|
|
|
2017-07-12 18:04:00 +02:00
|
|
|
pw_protocol_native_end_resource(resource, b);
|
2017-06-21 12:11:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2017-11-07 17:39:31 +01:00
|
|
|
client_node_marshal_command(void *object, uint32_t seq, const struct spa_command *command)
|
2017-06-21 12:11:54 +02:00
|
|
|
{
|
|
|
|
|
struct pw_resource *resource = object;
|
2017-07-11 12:24:03 +02:00
|
|
|
struct spa_pod_builder *b;
|
2017-06-21 12:11:54 +02:00
|
|
|
|
2017-11-07 17:39:31 +01:00
|
|
|
b = pw_protocol_native_begin_resource(resource, PW_CLIENT_NODE_PROXY_EVENT_COMMAND);
|
2017-06-21 12:11:54 +02:00
|
|
|
|
2019-01-16 11:05:12 +01:00
|
|
|
spa_pod_builder_add_struct(b,
|
|
|
|
|
SPA_POD_Int(seq),
|
|
|
|
|
SPA_POD_Pod(command));
|
2017-06-21 12:11:54 +02:00
|
|
|
|
2017-07-12 18:04:00 +02:00
|
|
|
pw_protocol_native_end_resource(resource, b);
|
2017-06-21 12:11:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2017-11-07 17:39:31 +01:00
|
|
|
client_node_marshal_add_port(void *object,
|
|
|
|
|
uint32_t seq, enum spa_direction direction, uint32_t port_id)
|
2017-06-21 12:11:54 +02:00
|
|
|
{
|
|
|
|
|
struct pw_resource *resource = object;
|
2017-07-11 12:24:03 +02:00
|
|
|
struct spa_pod_builder *b;
|
2017-06-21 12:11:54 +02:00
|
|
|
|
2017-11-07 17:39:31 +01:00
|
|
|
b = pw_protocol_native_begin_resource(resource, PW_CLIENT_NODE_PROXY_EVENT_ADD_PORT);
|
2017-06-21 12:11:54 +02:00
|
|
|
|
2018-09-05 16:41:07 +02:00
|
|
|
spa_pod_builder_add_struct(b,
|
2019-01-16 11:05:12 +01:00
|
|
|
SPA_POD_Int(seq),
|
|
|
|
|
SPA_POD_Int(direction),
|
|
|
|
|
SPA_POD_Int(port_id));
|
2017-06-21 12:11:54 +02:00
|
|
|
|
2017-07-12 18:04:00 +02:00
|
|
|
pw_protocol_native_end_resource(resource, b);
|
2017-06-21 12:11:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2017-11-07 17:39:31 +01:00
|
|
|
client_node_marshal_remove_port(void *object,
|
|
|
|
|
uint32_t seq, enum spa_direction direction, uint32_t port_id)
|
2017-06-21 12:11:54 +02:00
|
|
|
{
|
|
|
|
|
struct pw_resource *resource = object;
|
2017-07-11 12:24:03 +02:00
|
|
|
struct spa_pod_builder *b;
|
2017-06-21 12:11:54 +02:00
|
|
|
|
2017-11-07 17:39:31 +01:00
|
|
|
b = pw_protocol_native_begin_resource(resource, PW_CLIENT_NODE_PROXY_EVENT_REMOVE_PORT);
|
2017-06-21 12:11:54 +02:00
|
|
|
|
2018-09-05 16:41:07 +02:00
|
|
|
spa_pod_builder_add_struct(b,
|
2019-01-16 11:05:12 +01:00
|
|
|
SPA_POD_Int(seq),
|
|
|
|
|
SPA_POD_Int(direction),
|
|
|
|
|
SPA_POD_Int(port_id));
|
2017-06-21 12:11:54 +02:00
|
|
|
|
2017-07-12 18:04:00 +02:00
|
|
|
pw_protocol_native_end_resource(resource, b);
|
2017-06-21 12:11:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2017-11-07 17:39:31 +01:00
|
|
|
client_node_marshal_port_set_param(void *object,
|
|
|
|
|
uint32_t seq,
|
|
|
|
|
enum spa_direction direction,
|
|
|
|
|
uint32_t port_id,
|
|
|
|
|
uint32_t id,
|
|
|
|
|
uint32_t flags,
|
2017-11-13 17:57:38 +01:00
|
|
|
const struct spa_pod *param)
|
2017-06-21 12:11:54 +02:00
|
|
|
{
|
|
|
|
|
struct pw_resource *resource = object;
|
2017-07-11 12:24:03 +02:00
|
|
|
struct spa_pod_builder *b;
|
2017-06-21 12:11:54 +02:00
|
|
|
|
2017-11-07 17:39:31 +01:00
|
|
|
b = pw_protocol_native_begin_resource(resource, PW_CLIENT_NODE_PROXY_EVENT_PORT_SET_PARAM);
|
2017-06-21 12:11:54 +02:00
|
|
|
|
2018-09-05 16:41:07 +02:00
|
|
|
spa_pod_builder_add_struct(b,
|
2019-01-16 11:05:12 +01:00
|
|
|
SPA_POD_Int(seq),
|
|
|
|
|
SPA_POD_Int(direction),
|
|
|
|
|
SPA_POD_Int(port_id),
|
|
|
|
|
SPA_POD_Id(id),
|
|
|
|
|
SPA_POD_Int(flags),
|
|
|
|
|
SPA_POD_Pod(param));
|
2017-06-21 12:11:54 +02:00
|
|
|
|
2017-07-12 18:04:00 +02:00
|
|
|
pw_protocol_native_end_resource(resource, b);
|
2017-06-21 12:11:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2017-11-07 17:39:31 +01:00
|
|
|
client_node_marshal_port_use_buffers(void *object,
|
|
|
|
|
uint32_t seq,
|
|
|
|
|
enum spa_direction direction,
|
|
|
|
|
uint32_t port_id,
|
2018-03-01 17:39:17 +01:00
|
|
|
uint32_t mix_id,
|
2017-11-07 17:39:31 +01:00
|
|
|
uint32_t n_buffers, struct pw_client_node_buffer *buffers)
|
2017-06-21 12:11:54 +02:00
|
|
|
{
|
|
|
|
|
struct pw_resource *resource = object;
|
2017-07-11 12:24:03 +02:00
|
|
|
struct spa_pod_builder *b;
|
2019-01-22 17:38:23 +01:00
|
|
|
struct spa_pod_frame f;
|
2017-06-21 12:11:54 +02:00
|
|
|
uint32_t i, j;
|
|
|
|
|
|
2017-11-07 17:39:31 +01:00
|
|
|
b = pw_protocol_native_begin_resource(resource, PW_CLIENT_NODE_PROXY_EVENT_PORT_USE_BUFFERS);
|
2017-06-21 12:11:54 +02:00
|
|
|
|
2019-01-22 17:38:23 +01:00
|
|
|
spa_pod_builder_push_struct(b, &f);
|
2017-07-11 12:24:03 +02:00
|
|
|
spa_pod_builder_add(b,
|
2019-01-16 11:05:12 +01:00
|
|
|
SPA_POD_Int(seq),
|
|
|
|
|
SPA_POD_Int(direction),
|
|
|
|
|
SPA_POD_Int(port_id),
|
|
|
|
|
SPA_POD_Int(mix_id),
|
|
|
|
|
SPA_POD_Int(n_buffers), NULL);
|
2017-06-21 12:11:54 +02:00
|
|
|
|
|
|
|
|
for (i = 0; i < n_buffers; i++) {
|
|
|
|
|
struct spa_buffer *buf = buffers[i].buffer;
|
|
|
|
|
|
2017-07-11 12:24:03 +02:00
|
|
|
spa_pod_builder_add(b,
|
2019-01-16 11:05:12 +01:00
|
|
|
SPA_POD_Int(buffers[i].mem_id),
|
|
|
|
|
SPA_POD_Int(buffers[i].offset),
|
|
|
|
|
SPA_POD_Int(buffers[i].size),
|
|
|
|
|
SPA_POD_Int(buf->n_metas), NULL);
|
2017-06-21 12:11:54 +02:00
|
|
|
|
|
|
|
|
for (j = 0; j < buf->n_metas; j++) {
|
|
|
|
|
struct spa_meta *m = &buf->metas[j];
|
2017-07-11 12:24:03 +02:00
|
|
|
spa_pod_builder_add(b,
|
2019-01-16 11:05:12 +01:00
|
|
|
SPA_POD_Id(m->type),
|
|
|
|
|
SPA_POD_Int(m->size), NULL);
|
2017-06-21 12:11:54 +02:00
|
|
|
}
|
2019-01-16 11:05:12 +01:00
|
|
|
spa_pod_builder_add(b,
|
|
|
|
|
SPA_POD_Int(buf->n_datas), NULL);
|
2017-06-21 12:11:54 +02:00
|
|
|
for (j = 0; j < buf->n_datas; j++) {
|
|
|
|
|
struct spa_data *d = &buf->datas[j];
|
2017-07-11 12:24:03 +02:00
|
|
|
spa_pod_builder_add(b,
|
2019-01-16 11:05:12 +01:00
|
|
|
SPA_POD_Id(d->type),
|
|
|
|
|
SPA_POD_Int(SPA_PTR_TO_UINT32(d->data)),
|
|
|
|
|
SPA_POD_Int(d->flags),
|
|
|
|
|
SPA_POD_Int(d->mapoffset),
|
|
|
|
|
SPA_POD_Int(d->maxsize), NULL);
|
2017-06-21 12:11:54 +02:00
|
|
|
}
|
2017-05-26 08:05:01 +02:00
|
|
|
}
|
2019-01-22 17:38:23 +01:00
|
|
|
spa_pod_builder_pop(b, &f);
|
2017-06-21 12:11:54 +02:00
|
|
|
|
2017-07-12 18:04:00 +02:00
|
|
|
pw_protocol_native_end_resource(resource, b);
|
2017-03-03 19:06:54 +01:00
|
|
|
}
|
|
|
|
|
|
2017-06-21 12:11:54 +02:00
|
|
|
static void
|
|
|
|
|
client_node_marshal_port_command(void *object,
|
|
|
|
|
uint32_t direction,
|
|
|
|
|
uint32_t port_id,
|
|
|
|
|
const struct spa_command *command)
|
|
|
|
|
{
|
|
|
|
|
struct pw_resource *resource = object;
|
2017-07-11 12:24:03 +02:00
|
|
|
struct spa_pod_builder *b;
|
2017-06-21 12:11:54 +02:00
|
|
|
|
2017-08-04 16:49:13 +02:00
|
|
|
b = pw_protocol_native_begin_resource(resource, PW_CLIENT_NODE_PROXY_EVENT_PORT_COMMAND);
|
2017-06-21 12:11:54 +02:00
|
|
|
|
2018-09-05 16:41:07 +02:00
|
|
|
spa_pod_builder_add_struct(b,
|
2019-01-16 11:05:12 +01:00
|
|
|
SPA_POD_Int(direction),
|
|
|
|
|
SPA_POD_Int(port_id),
|
|
|
|
|
SPA_POD_Pod(command));
|
2017-06-21 12:11:54 +02:00
|
|
|
|
2017-07-12 18:04:00 +02:00
|
|
|
pw_protocol_native_end_resource(resource, b);
|
2017-06-21 12:11:54 +02:00
|
|
|
}
|
|
|
|
|
|
2017-11-30 16:36:29 +01:00
|
|
|
static void
|
|
|
|
|
client_node_marshal_port_set_io(void *object,
|
|
|
|
|
uint32_t seq,
|
|
|
|
|
uint32_t direction,
|
|
|
|
|
uint32_t port_id,
|
2018-03-01 17:39:17 +01:00
|
|
|
uint32_t mix_id,
|
2017-11-30 16:36:29 +01:00
|
|
|
uint32_t id,
|
|
|
|
|
uint32_t memid,
|
|
|
|
|
uint32_t offset,
|
|
|
|
|
uint32_t size)
|
|
|
|
|
{
|
|
|
|
|
struct pw_resource *resource = object;
|
|
|
|
|
struct spa_pod_builder *b;
|
|
|
|
|
|
|
|
|
|
b = pw_protocol_native_begin_resource(resource, PW_CLIENT_NODE_PROXY_EVENT_PORT_SET_IO);
|
|
|
|
|
|
2018-09-05 16:41:07 +02:00
|
|
|
spa_pod_builder_add_struct(b,
|
2019-01-16 11:05:12 +01:00
|
|
|
SPA_POD_Int(seq),
|
|
|
|
|
SPA_POD_Int(direction),
|
|
|
|
|
SPA_POD_Int(port_id),
|
|
|
|
|
SPA_POD_Int(mix_id),
|
|
|
|
|
SPA_POD_Id(id),
|
|
|
|
|
SPA_POD_Int(memid),
|
|
|
|
|
SPA_POD_Int(offset),
|
|
|
|
|
SPA_POD_Int(size));
|
2017-11-30 16:36:29 +01:00
|
|
|
|
|
|
|
|
pw_protocol_native_end_resource(resource, b);
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-11 10:13:37 +02:00
|
|
|
static void
|
2018-07-12 15:33:07 +02:00
|
|
|
client_node_marshal_set_io(void *object,
|
|
|
|
|
uint32_t id,
|
|
|
|
|
uint32_t memid,
|
|
|
|
|
uint32_t offset,
|
|
|
|
|
uint32_t size)
|
2018-05-11 10:13:37 +02:00
|
|
|
{
|
|
|
|
|
struct pw_resource *resource = object;
|
|
|
|
|
struct spa_pod_builder *b;
|
|
|
|
|
|
2018-07-12 15:33:07 +02:00
|
|
|
b = pw_protocol_native_begin_resource(resource, PW_CLIENT_NODE_PROXY_EVENT_SET_IO);
|
2018-09-05 16:41:07 +02:00
|
|
|
spa_pod_builder_add_struct(b,
|
2019-01-16 11:05:12 +01:00
|
|
|
SPA_POD_Id(id),
|
|
|
|
|
SPA_POD_Int(memid),
|
|
|
|
|
SPA_POD_Int(offset),
|
|
|
|
|
SPA_POD_Int(size));
|
2018-05-11 10:13:37 +02:00
|
|
|
pw_protocol_native_end_resource(resource, b);
|
|
|
|
|
}
|
2017-06-21 12:11:54 +02:00
|
|
|
|
2017-12-18 11:38:30 +01:00
|
|
|
static int client_node_demarshal_done(void *object, void *data, size_t size)
|
2017-06-21 12:11:54 +02:00
|
|
|
{
|
|
|
|
|
struct pw_resource *resource = object;
|
2017-09-21 18:57:41 +02:00
|
|
|
struct spa_pod_parser prs;
|
2017-06-21 12:11:54 +02:00
|
|
|
uint32_t seq, res;
|
2017-05-26 08:05:01 +02:00
|
|
|
|
2019-01-22 17:38:23 +01:00
|
|
|
spa_pod_parser_init(&prs, data, size);
|
2019-01-16 11:05:12 +01:00
|
|
|
if (spa_pod_parser_get_struct(&prs,
|
|
|
|
|
SPA_POD_Int(&seq),
|
|
|
|
|
SPA_POD_Int(&res)) < 0)
|
2017-12-18 11:38:30 +01:00
|
|
|
return -EINVAL;
|
2017-05-26 08:05:01 +02:00
|
|
|
|
2018-08-01 21:41:25 +02:00
|
|
|
pw_resource_do(resource, struct pw_client_node_proxy_methods, done, 0, seq, res);
|
2017-12-18 11:38:30 +01:00
|
|
|
return 0;
|
2017-03-03 19:06:54 +01:00
|
|
|
}
|
|
|
|
|
|
2017-12-18 11:38:30 +01:00
|
|
|
static int client_node_demarshal_update(void *object, void *data, size_t size)
|
2017-03-03 19:06:54 +01:00
|
|
|
{
|
2017-06-21 12:11:54 +02:00
|
|
|
struct pw_resource *resource = object;
|
2017-09-21 18:57:41 +02:00
|
|
|
struct spa_pod_parser prs;
|
2019-01-22 17:38:23 +01:00
|
|
|
struct spa_pod_frame f;
|
2017-11-07 17:39:31 +01:00
|
|
|
uint32_t change_mask, max_input_ports, max_output_ports, n_params;
|
2017-11-13 17:57:38 +01:00
|
|
|
const struct spa_pod **params;
|
2018-06-07 10:23:41 +02:00
|
|
|
struct spa_dict props;
|
2019-01-07 15:52:42 +01:00
|
|
|
uint32_t i;
|
2017-05-26 08:05:01 +02:00
|
|
|
|
2019-01-22 17:38:23 +01:00
|
|
|
spa_pod_parser_init(&prs, data, size);
|
|
|
|
|
if (spa_pod_parser_push_struct(&prs, &f) < 0 ||
|
|
|
|
|
spa_pod_parser_get(&prs,
|
2019-01-16 11:05:12 +01:00
|
|
|
SPA_POD_Int(&change_mask),
|
|
|
|
|
SPA_POD_Int(&max_input_ports),
|
|
|
|
|
SPA_POD_Int(&max_output_ports),
|
|
|
|
|
SPA_POD_Int(&n_params), NULL) < 0)
|
2017-12-18 11:38:30 +01:00
|
|
|
return -EINVAL;
|
2017-05-26 08:05:01 +02:00
|
|
|
|
2017-11-13 17:57:38 +01:00
|
|
|
params = alloca(n_params * sizeof(struct spa_pod *));
|
2017-11-07 17:39:31 +01:00
|
|
|
for (i = 0; i < n_params; i++)
|
2019-01-16 11:05:12 +01:00
|
|
|
if (spa_pod_parser_get(&prs,
|
|
|
|
|
SPA_POD_PodObject(¶ms[i]), NULL) < 0)
|
2017-12-18 11:38:30 +01:00
|
|
|
return -EINVAL;
|
2017-11-07 17:39:31 +01:00
|
|
|
|
2018-06-07 10:23:41 +02:00
|
|
|
if (spa_pod_parser_get(&prs,
|
2019-01-16 11:05:12 +01:00
|
|
|
SPA_POD_Int(&props.n_items), NULL) < 0)
|
2018-06-07 10:23:41 +02:00
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
|
|
props.items = alloca(props.n_items * sizeof(struct spa_dict_item));
|
|
|
|
|
for (i = 0; i < props.n_items; i++) {
|
|
|
|
|
if (spa_pod_parser_get(&prs,
|
2019-01-16 11:05:12 +01:00
|
|
|
SPA_POD_String(&props.items[i].key),
|
|
|
|
|
SPA_POD_String(&props.items[i].value), NULL) < 0)
|
2018-06-07 10:23:41 +02:00
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-01 21:41:25 +02:00
|
|
|
pw_resource_do(resource, struct pw_client_node_proxy_methods, update, 0, change_mask,
|
2017-07-13 15:21:52 +02:00
|
|
|
max_input_ports,
|
|
|
|
|
max_output_ports,
|
2017-11-07 17:39:31 +01:00
|
|
|
n_params,
|
2018-06-07 10:23:41 +02:00
|
|
|
params,
|
|
|
|
|
props.n_items > 0 ?
|
|
|
|
|
&props : NULL);
|
2017-12-18 11:38:30 +01:00
|
|
|
return 0;
|
2017-03-03 19:06:54 +01:00
|
|
|
}
|
|
|
|
|
|
2017-12-18 11:38:30 +01:00
|
|
|
static int client_node_demarshal_port_update(void *object, void *data, size_t size)
|
2017-03-03 19:06:54 +01:00
|
|
|
{
|
2017-06-21 12:11:54 +02:00
|
|
|
struct pw_resource *resource = object;
|
2017-09-21 18:57:41 +02:00
|
|
|
struct spa_pod_parser prs;
|
2019-01-22 17:38:23 +01:00
|
|
|
struct spa_pod_frame f;
|
2017-11-07 17:39:31 +01:00
|
|
|
uint32_t i, direction, port_id, change_mask, n_params;
|
2017-11-13 17:57:38 +01:00
|
|
|
const struct spa_pod **params = NULL;
|
2017-11-30 16:36:29 +01:00
|
|
|
struct spa_port_info info = { 0 }, *infop = NULL;
|
2017-06-21 12:11:54 +02:00
|
|
|
struct spa_pod *ipod;
|
2018-02-09 18:10:51 +01:00
|
|
|
struct spa_dict props;
|
2017-05-26 08:05:01 +02:00
|
|
|
|
2019-01-22 17:38:23 +01:00
|
|
|
spa_pod_parser_init(&prs, data, size);
|
|
|
|
|
if (spa_pod_parser_push_struct(&prs, &f) < 0 ||
|
|
|
|
|
spa_pod_parser_get(&prs,
|
2019-01-16 11:05:12 +01:00
|
|
|
SPA_POD_Int(&direction),
|
|
|
|
|
SPA_POD_Int(&port_id),
|
|
|
|
|
SPA_POD_Int(&change_mask),
|
|
|
|
|
SPA_POD_Int(&n_params), NULL) < 0)
|
2017-12-18 11:38:30 +01:00
|
|
|
return -EINVAL;
|
2017-03-06 15:48:04 +01:00
|
|
|
|
2017-11-13 17:57:38 +01:00
|
|
|
params = alloca(n_params * sizeof(struct spa_pod *));
|
2017-06-21 12:11:54 +02:00
|
|
|
for (i = 0; i < n_params; i++)
|
2019-01-16 11:05:12 +01:00
|
|
|
if (spa_pod_parser_get(&prs,
|
|
|
|
|
SPA_POD_PodObject(¶ms[i]), NULL) < 0)
|
2017-12-18 11:38:30 +01:00
|
|
|
return -EINVAL;
|
2017-04-27 17:17:47 +02:00
|
|
|
|
2019-01-16 11:05:12 +01:00
|
|
|
if (spa_pod_parser_get(&prs,
|
|
|
|
|
SPA_POD_PodStruct(&ipod), NULL) < 0)
|
2017-12-18 11:38:30 +01:00
|
|
|
return -EINVAL;
|
2017-03-14 20:18:31 +01:00
|
|
|
|
2017-06-21 12:11:54 +02:00
|
|
|
if (ipod) {
|
2017-09-21 18:57:41 +02:00
|
|
|
struct spa_pod_parser p2;
|
2019-01-22 17:38:23 +01:00
|
|
|
struct spa_pod_frame f2;
|
2017-06-21 12:11:54 +02:00
|
|
|
infop = &info;
|
|
|
|
|
|
2017-09-21 18:57:41 +02:00
|
|
|
spa_pod_parser_pod(&p2, ipod);
|
2019-01-22 17:38:23 +01:00
|
|
|
if (spa_pod_parser_push_struct(&p2, &f2) < 0 ||
|
|
|
|
|
spa_pod_parser_get(&p2,
|
2019-01-16 11:05:12 +01:00
|
|
|
SPA_POD_Int(&info.flags),
|
|
|
|
|
SPA_POD_Int(&info.rate),
|
|
|
|
|
SPA_POD_Int(&props.n_items), NULL) < 0)
|
2017-12-18 11:38:30 +01:00
|
|
|
return -EINVAL;
|
2018-02-09 18:10:51 +01:00
|
|
|
|
|
|
|
|
if (props.n_items > 0) {
|
|
|
|
|
info.props = &props;
|
|
|
|
|
|
|
|
|
|
props.items = alloca(props.n_items * sizeof(struct spa_dict_item));
|
|
|
|
|
for (i = 0; i < props.n_items; i++) {
|
|
|
|
|
if (spa_pod_parser_get(&p2,
|
2019-01-16 11:05:12 +01:00
|
|
|
SPA_POD_String(&props.items[i].key),
|
|
|
|
|
SPA_POD_String(&props.items[i].value), NULL) < 0)
|
2018-02-09 18:10:51 +01:00
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-06-21 12:11:54 +02:00
|
|
|
}
|
2017-03-03 19:06:54 +01:00
|
|
|
|
2018-08-01 21:41:25 +02:00
|
|
|
pw_resource_do(resource, struct pw_client_node_proxy_methods, port_update, 0, direction,
|
2017-07-13 15:21:52 +02:00
|
|
|
port_id,
|
|
|
|
|
change_mask,
|
|
|
|
|
n_params,
|
|
|
|
|
params, infop);
|
2017-12-18 11:38:30 +01:00
|
|
|
return 0;
|
2017-03-03 19:06:54 +01:00
|
|
|
}
|
|
|
|
|
|
2017-12-18 11:38:30 +01:00
|
|
|
static int client_node_demarshal_set_active(void *object, void *data, size_t size)
|
2017-10-13 16:18:42 +02:00
|
|
|
{
|
|
|
|
|
struct pw_resource *resource = object;
|
|
|
|
|
struct spa_pod_parser prs;
|
2017-12-18 11:38:30 +01:00
|
|
|
int active;
|
2017-10-13 16:18:42 +02:00
|
|
|
|
2019-01-22 17:38:23 +01:00
|
|
|
spa_pod_parser_init(&prs, data, size);
|
2019-01-16 11:05:12 +01:00
|
|
|
if (spa_pod_parser_get_struct(&prs,
|
|
|
|
|
SPA_POD_Bool(&active)) < 0)
|
2017-12-18 11:38:30 +01:00
|
|
|
return -EINVAL;
|
2017-10-13 16:18:42 +02:00
|
|
|
|
2018-08-01 21:41:25 +02:00
|
|
|
pw_resource_do(resource, struct pw_client_node_proxy_methods, set_active, 0, active);
|
2017-12-18 11:38:30 +01:00
|
|
|
return 0;
|
2017-10-13 16:18:42 +02:00
|
|
|
}
|
|
|
|
|
|
2017-12-18 11:38:30 +01:00
|
|
|
static int client_node_demarshal_event_method(void *object, void *data, size_t size)
|
2017-06-21 12:11:54 +02:00
|
|
|
{
|
|
|
|
|
struct pw_resource *resource = object;
|
2017-09-21 18:57:41 +02:00
|
|
|
struct spa_pod_parser prs;
|
2017-06-21 12:11:54 +02:00
|
|
|
struct spa_event *event;
|
2017-03-03 19:06:54 +01:00
|
|
|
|
2019-01-22 17:38:23 +01:00
|
|
|
spa_pod_parser_init(&prs, data, size);
|
2019-01-16 11:05:12 +01:00
|
|
|
if (spa_pod_parser_get_struct(&prs,
|
|
|
|
|
SPA_POD_PodObject(&event)) < 0)
|
2017-12-18 11:38:30 +01:00
|
|
|
return -EINVAL;
|
2017-03-03 19:06:54 +01:00
|
|
|
|
2018-08-01 21:41:25 +02:00
|
|
|
pw_resource_do(resource, struct pw_client_node_proxy_methods, event, 0, event);
|
2017-12-18 11:38:30 +01:00
|
|
|
return 0;
|
2017-06-21 12:11:54 +02:00
|
|
|
}
|
2017-03-03 19:06:54 +01:00
|
|
|
|
2017-08-04 16:49:13 +02:00
|
|
|
static const struct pw_client_node_proxy_methods pw_protocol_native_client_node_method_marshal = {
|
|
|
|
|
PW_VERSION_CLIENT_NODE_PROXY_METHODS,
|
2017-06-09 17:24:18 +02:00
|
|
|
&client_node_marshal_done,
|
2017-05-26 08:05:01 +02:00
|
|
|
&client_node_marshal_update,
|
|
|
|
|
&client_node_marshal_port_update,
|
2017-10-13 16:18:42 +02:00
|
|
|
&client_node_marshal_set_active,
|
2018-09-21 16:43:11 +02:00
|
|
|
&client_node_marshal_event_method
|
2017-03-03 19:06:54 +01:00
|
|
|
};
|
|
|
|
|
|
2017-08-01 20:11:38 +02:00
|
|
|
static const struct pw_protocol_native_demarshal pw_protocol_native_client_node_method_demarshal[] = {
|
|
|
|
|
{ &client_node_demarshal_done, 0 },
|
2018-08-24 10:53:09 +02:00
|
|
|
{ &client_node_demarshal_update, 0 },
|
|
|
|
|
{ &client_node_demarshal_port_update, 0 },
|
2017-10-13 16:18:42 +02:00
|
|
|
{ &client_node_demarshal_set_active, 0 },
|
2018-09-21 16:43:11 +02:00
|
|
|
{ &client_node_demarshal_event_method, 0 }
|
2017-03-09 13:00:56 +01:00
|
|
|
};
|
|
|
|
|
|
2017-08-04 16:49:13 +02:00
|
|
|
static const struct pw_client_node_proxy_events pw_protocol_native_client_node_event_marshal = {
|
|
|
|
|
PW_VERSION_CLIENT_NODE_PROXY_EVENTS,
|
2017-12-01 17:24:03 +01:00
|
|
|
&client_node_marshal_add_mem,
|
2017-06-27 13:24:37 +02:00
|
|
|
&client_node_marshal_transport,
|
2017-11-07 17:39:31 +01:00
|
|
|
&client_node_marshal_set_param,
|
2018-07-12 15:33:07 +02:00
|
|
|
&client_node_marshal_set_io,
|
2017-06-21 12:11:54 +02:00
|
|
|
&client_node_marshal_event_event,
|
2017-11-07 17:39:31 +01:00
|
|
|
&client_node_marshal_command,
|
2017-06-21 12:11:54 +02:00
|
|
|
&client_node_marshal_add_port,
|
|
|
|
|
&client_node_marshal_remove_port,
|
2017-11-07 17:39:31 +01:00
|
|
|
&client_node_marshal_port_set_param,
|
|
|
|
|
&client_node_marshal_port_use_buffers,
|
2017-06-21 12:11:54 +02:00
|
|
|
&client_node_marshal_port_command,
|
2017-11-30 16:36:29 +01:00
|
|
|
&client_node_marshal_port_set_io,
|
2017-03-03 19:06:54 +01:00
|
|
|
};
|
|
|
|
|
|
2017-08-01 20:11:38 +02:00
|
|
|
static const struct pw_protocol_native_demarshal pw_protocol_native_client_node_event_demarshal[] = {
|
2018-08-24 10:53:09 +02:00
|
|
|
{ &client_node_demarshal_add_mem, 0 },
|
2017-08-01 20:11:38 +02:00
|
|
|
{ &client_node_demarshal_transport, 0 },
|
2018-08-24 10:53:09 +02:00
|
|
|
{ &client_node_demarshal_set_param, 0 },
|
|
|
|
|
{ &client_node_demarshal_set_io, 0 },
|
|
|
|
|
{ &client_node_demarshal_event_event, 0 },
|
|
|
|
|
{ &client_node_demarshal_command, 0 },
|
2017-08-01 20:11:38 +02:00
|
|
|
{ &client_node_demarshal_add_port, 0 },
|
|
|
|
|
{ &client_node_demarshal_remove_port, 0 },
|
2018-08-24 10:53:09 +02:00
|
|
|
{ &client_node_demarshal_port_set_param, 0 },
|
|
|
|
|
{ &client_node_demarshal_port_use_buffers, 0 },
|
|
|
|
|
{ &client_node_demarshal_port_command, 0 },
|
|
|
|
|
{ &client_node_demarshal_port_set_io, 0 },
|
2017-07-13 15:21:52 +02:00
|
|
|
};
|
|
|
|
|
|
2017-12-14 18:28:03 +01:00
|
|
|
static const struct pw_protocol_marshal pw_protocol_native_client_node_marshal = {
|
2018-08-27 15:03:11 +02:00
|
|
|
PW_TYPE_INTERFACE_ClientNode,
|
2017-06-21 12:11:54 +02:00
|
|
|
PW_VERSION_CLIENT_NODE,
|
2017-07-13 15:21:52 +02:00
|
|
|
&pw_protocol_native_client_node_method_marshal,
|
|
|
|
|
&pw_protocol_native_client_node_method_demarshal,
|
2017-11-20 15:26:44 +01:00
|
|
|
PW_CLIENT_NODE_PROXY_METHOD_NUM,
|
2017-07-13 15:21:52 +02:00
|
|
|
&pw_protocol_native_client_node_event_marshal,
|
|
|
|
|
pw_protocol_native_client_node_event_demarshal,
|
2017-11-20 15:26:44 +01:00
|
|
|
PW_CLIENT_NODE_PROXY_EVENT_NUM,
|
2017-03-03 19:06:54 +01:00
|
|
|
};
|
2017-03-09 13:00:56 +01:00
|
|
|
|
2017-07-12 18:04:00 +02:00
|
|
|
struct pw_protocol *pw_protocol_native_ext_client_node_init(struct pw_core *core)
|
2017-05-26 08:05:01 +02:00
|
|
|
{
|
2017-06-15 17:54:55 +02:00
|
|
|
struct pw_protocol *protocol;
|
|
|
|
|
|
2019-01-14 12:58:23 +01:00
|
|
|
protocol = pw_core_find_protocol(core, PW_TYPE_INFO_PROTOCOL_Native);
|
2017-06-15 17:54:55 +02:00
|
|
|
|
2017-07-12 18:04:00 +02:00
|
|
|
if (protocol == NULL)
|
|
|
|
|
return NULL;
|
2017-06-16 10:06:50 +02:00
|
|
|
|
2017-07-13 15:21:52 +02:00
|
|
|
pw_protocol_add_marshal(protocol, &pw_protocol_native_client_node_marshal);
|
2017-06-15 17:54:55 +02:00
|
|
|
|
2017-06-16 10:06:50 +02:00
|
|
|
return protocol;
|
2017-03-09 13:00:56 +01:00
|
|
|
}
|