pipewire/src/modules/spa/spa-node.h

44 lines
943 B
C
Raw Normal View History

/* PipeWire */
/* SPDX-FileCopyrightText: Copyright © 2018 Wim Taymans */
/* SPDX-License-Identifier: MIT */
2017-05-23 19:15:33 +02:00
#ifndef PIPEWIRE_SPA_NODE_H
#define PIPEWIRE_SPA_NODE_H
2017-05-23 19:15:33 +02:00
#include <spa/node/node.h>
2017-08-08 19:55:14 +02:00
#include <pipewire/impl.h>
2017-05-23 19:15:33 +02:00
#ifdef __cplusplus
extern "C" {
#endif
enum pw_spa_node_flags {
PW_SPA_NODE_FLAG_ACTIVATE = (1 << 0),
PW_SPA_NODE_FLAG_NO_REGISTER = (1 << 1),
PW_SPA_NODE_FLAG_ASYNC = (1 << 2),
};
2019-12-11 12:41:45 +01:00
struct pw_impl_node *
pw_spa_node_new(struct pw_context *context,
enum pw_spa_node_flags flags,
struct spa_node *node,
struct spa_handle *handle,
struct pw_properties *properties,
size_t user_data_size);
2019-12-11 12:41:45 +01:00
struct pw_impl_node *
pw_spa_node_load(struct pw_context *context,
2017-05-26 08:05:01 +02:00
const char *factory_name,
enum pw_spa_node_flags flags,
struct pw_properties *properties,
size_t user_data_size);
2017-05-23 19:15:33 +02:00
2019-12-11 12:41:45 +01:00
void *pw_spa_node_get_user_data(struct pw_impl_node *node);
2017-10-17 16:57:26 +02:00
2017-05-23 19:15:33 +02:00
#ifdef __cplusplus
}
#endif
#endif /* PIPEWIRE_SPA_NODE_H */