#include <stdio.h>
#include <sys/mman.h>
#define WIDTH 640
#define HEIGHT 480
#define BPP 3
#define MAX_BUFFERS 32
#include "sdl.h"
#include <spa/param/video/format-utils.h>
struct data {
SDL_Renderer *renderer;
SDL_Window *window;
SDL_Texture *texture;
int32_t stride;
int n_buffers;
};
static void handle_events(struct data *data)
{
SDL_Event event;
while (SDL_PollEvent(&event)) {
switch (event.type) {
case SDL_QUIT:
break;
}
}
}
static int impl_set_io(void *object, uint32_t id, void *data, size_t size)
{
return 0;
}
static int impl_send_command(
void *
object,
const struct spa_command *command)
{
return 0;
}
static int impl_add_listener(void *object,
void *data)
{
struct data *d = object;
return 0;
}
static int impl_set_callbacks(void *object,
{
return 0;
}
static int impl_port_set_io(
void *
object,
enum spa_direction direction, uint32_t port_id,
uint32_t id, void *data, size_t size)
{
struct data *d = object;
d->io = data;
else
return -ENOENT;
return 0;
}
static int impl_port_enum_params(void *object, int seq,
uint32_t id, uint32_t start, uint32_t num,
{
struct data *d = object;
uint8_t buffer[1024];
uint32_t count = 0;
result.next = start;
result.index = result.next++;
switch (id) {
{
SDL_RendererInfo info;
if (result.index > 0)
return 0;
SDL_GetRendererInfo(d->renderer, &info);
param = sdl_build_formats(&info, &b);
break;
}
if (result.index > 0)
return 0;
break;
if (result.index > 0)
return 0;
break;
default:
return -ENOENT;
}
if (++count != num)
return 0;
}
static int port_set_format(
void *
object,
enum spa_direction direction, uint32_t port_id,
uint32_t flags,
const struct spa_pod *format)
{
struct data *d = object;
Uint32 sdl_format;
void *dest;
if (format == NULL) {
SDL_DestroyTexture(d->texture);
d->texture = NULL;
} else {
sdl_format = id_to_sdl_format(d->format.format);
if (sdl_format == SDL_PIXELFORMAT_UNKNOWN)
return -EINVAL;
if (d->format.size.width == 0 ||
d->format.size.height == 0)
return -EINVAL;
d->texture = SDL_CreateTexture(d->renderer,
sdl_format,
SDL_TEXTUREACCESS_STREAMING,
d->format.size.width,
d->format.size.height);
SDL_LockTexture(d->texture, NULL, &dest, &d->stride);
SDL_UnlockTexture(d->texture);
}
if (format) {
} else {
}
return 0;
}
static int impl_port_set_param(void *object,
uint32_t id, uint32_t flags,
{
return port_set_format(object, direction, port_id, flags, param);
}
else
return -ENOENT;
}
static int impl_port_use_buffers(void *object,
uint32_t flags,
struct spa_buffer **buffers, uint32_t n_buffers)
{
struct data *d = object;
uint32_t i;
if (n_buffers > MAX_BUFFERS)
return -ENOSPC;
for (i = 0; i < n_buffers; i++)
d->buffers[i] = buffers[i];
d->n_buffers = n_buffers;
return 0;
}
static int do_render(
struct spa_loop *loop,
bool async, uint32_t seq,
const void *_data, size_t size, void *user_data)
{
struct data *d = user_data;
uint8_t *map;
void *sdata, *ddata;
int sstride, dstride, ostride;
uint32_t i;
uint8_t *src, *dst;
buf = d->buffers[d->io->buffer_id];
map = NULL;
} else
return -EINVAL;
if (SDL_LockTexture(d->texture, NULL, &ddata, &dstride) < 0) {
fprintf(stderr, "Couldn't lock texture: %s\n", SDL_GetError());
return -EIO;
}
ostride =
SPA_MIN(sstride, dstride);
src = sdata;
dst = ddata;
for (i = 0; i < d->format.size.height; i++) {
memcpy(dst, src, ostride);
src += sstride;
dst += dstride;
}
SDL_UnlockTexture(d->texture);
SDL_RenderClear(d->renderer);
SDL_RenderCopy(d->renderer, d->texture, NULL, NULL);
SDL_RenderPresent(d->renderer);
if (map)
return 0;
}
static int impl_node_process(void *object)
{
struct data *d = object;
int res;
return res;
handle_events(d);
}
.add_listener = impl_add_listener,
.set_callbacks = impl_set_callbacks,
.set_io = impl_set_io,
.send_command = impl_send_command,
.port_set_io = impl_port_set_io,
.port_enum_params = impl_port_enum_params,
.port_set_param = impl_port_set_param,
.port_use_buffers = impl_port_use_buffers,
.process = impl_node_process,
};
static int make_nodes(struct data *data)
{
&impl_node, data);
data->info.change_mask =
data->info.flags = 0;
data->info.params = data->params;
NULL,
&data->impl_node,
0);
NULL);
"spa-node-factory",
while (true) {
break;
}
"link-factory",
return 0;
}
int main(int argc, char *argv[])
{
struct data data = { 0, };
NULL), 0);
if (SDL_Init(SDL_INIT_VIDEO) < 0) {
printf("can't initialize SDL: %s\n", SDL_GetError());
return -1;
}
if (SDL_CreateWindowAndRenderer
(WIDTH, HEIGHT, SDL_WINDOW_RESIZABLE, &data.window, &data.renderer)) {
printf("can't create window: %s\n", SDL_GetError());
return -1;
}
if (data.core == NULL) {
printf("can't connect to core: %m\n");
return -1;
}
make_nodes(&data);
return 0;
}
void pw_context_destroy(struct pw_context *context)
destroy a context object, all resources except the main_loop will be destroyed
Definition: context.c:380
struct pw_context * pw_context_new(struct pw_loop *main_loop, struct pw_properties *props, size_t user_data_size)
Make a new context object for a given main_loop.
Definition: context.c:168
static void * pw_core_create_object(struct pw_core *core, const char *factory_name, const char *type, uint32_t version, const struct spa_dict *props, size_t user_data_size)
Definition: core.h:395
struct pw_core * pw_context_connect_self(struct pw_context *context, struct pw_properties *properties, size_t user_data_size)
Connect to a given PipeWire instance.
Definition: core.c:434
struct pw_proxy * pw_core_export(struct pw_core *core, const char *type, const struct spa_dict *props, void *object, size_t user_data_size)
Export an object into the PipeWire instance associated with core.
Definition: core.c:255
struct pw_impl_module * pw_context_load_module(struct pw_context *context, const char *name, const char *args, struct pw_properties *properties)
Load a module.
Definition: impl-module.c:142
#define PW_KEY_CORE_DAEMON
If the core is listening for connections.
Definition: src/pipewire/keys.h:102
#define PW_KEY_LINK_INPUT_NODE
input node id of a link
Definition: src/pipewire/keys.h:296
#define PW_KEY_LINK_OUTPUT_NODE
output node id of a link
Definition: src/pipewire/keys.h:300
#define PW_TYPE_INTERFACE_Link
Definition: link.h:37
#define PW_VERSION_LINK
Definition: link.h:40
#define pw_loop_iterate(l,...)
Definition: src/pipewire/loop.h:52
#define pw_loop_invoke(l,...)
Definition: src/pipewire/loop.h:47
struct pw_main_loop * pw_main_loop_new(const struct spa_dict *props)
Create a new main loop.
Definition: main-loop.c:60
int pw_main_loop_quit(struct pw_main_loop *loop)
Quit a main loop.
Definition: main-loop.c:105
void pw_main_loop_destroy(struct pw_main_loop *loop)
Destroy a loop.
Definition: main-loop.c:70
int pw_main_loop_run(struct pw_main_loop *loop)
Run a main loop.
Definition: main-loop.c:119
struct pw_loop * pw_main_loop_get_loop(struct pw_main_loop *loop)
Get the loop implementation.
Definition: main-loop.c:93
#define PW_TYPE_INTERFACE_Node
Definition: src/pipewire/node.h:35
#define PW_VERSION_NODE
Definition: src/pipewire/node.h:38
void pw_init(int *argc, char **argv[])
Initialize PipeWire.
Definition: pipewire.c:558
void pw_deinit(void)
Deinitialize PipeWire.
Definition: pipewire.c:668
void pw_properties_free(struct pw_properties *properties)
Free a properties object.
Definition: properties.c:348
int pw_properties_setf(struct pw_properties *properties, const char *key, const char *format,...) 1(3
struct pw_properties * pw_properties_new(const char *key,...) 1
Make a new properties object.
Definition: properties.c:82
void pw_properties_clear(struct pw_properties *properties)
Clear a properties object.
Definition: properties.c:261
uint32_t pw_proxy_get_bound_id(struct pw_proxy *proxy)
Get the global id bound to this proxy of SPA_ID_INVALID when not bound to a global.
Definition: proxy.c:149
void pw_proxy_destroy(struct pw_proxy *proxy)
destroy a proxy
Definition: proxy.c:211
@ SPA_META_Header
struct spa_meta_header
Definition: meta.h:27
@ SPA_DATA_MemFd
generic fd, mmap to get to memory
Definition: buffer/buffer.h:35
@ SPA_DATA_MemPtr
pointer to memory, the data field in struct spa_data is set.
Definition: buffer/buffer.h:33
@ SPA_DATA_DmaBuf
fd to dmabuf memory
Definition: buffer/buffer.h:36
static int spa_debug_format(int indent, const struct spa_type_info *info, const struct spa_pod *format)
Definition: debug/format.h:206
#define SPA_KEY_FACTORY_NAME
the name of a factory
Definition: plugin.h:202
#define SPA_KEY_LIBRARY_NAME
the name of a library.
Definition: plugin.h:211
static void spa_hook_list_join(struct spa_hook_list *list, struct spa_hook_list *save)
Definition: hook.h:403
static void spa_hook_list_init(struct spa_hook_list *list)
Initialize a hook list to the empty list.
Definition: hook.h:341
static void spa_hook_list_isolate(struct spa_hook_list *list, struct spa_hook_list *save, struct spa_hook *hook, const void *funcs, void *data)
Definition: hook.h:389
#define SPA_INTERFACE_INIT(_type, _version, _funcs, _data)
Initialize a spa_interface.
Definition: hook.h:157
#define SPA_NAME_API_V4L2_SOURCE
a v4l2 Node interface for capturing
Definition: names.h:160
#define SPA_PORT_CHANGE_MASK_FLAGS
Definition: spa/include/spa/node/node.h:95
#define spa_node_emit_port_info(hooks,...)
Definition: spa/include/spa/node/utils.h:118
#define SPA_PORT_INFO_INIT()
Definition: spa/include/spa/node/node.h:139
#define SPA_TYPE_INTERFACE_Node
Definition: spa/include/spa/node/node.h:37
#define SPA_STATUS_NEED_DATA
Definition: io.h:82
#define SPA_VERSION_NODE
Definition: spa/include/spa/node/node.h:40
#define SPA_PORT_CHANGE_MASK_PARAMS
Definition: spa/include/spa/node/node.h:101
#define SPA_RESULT_TYPE_NODE_PARAMS
Definition: spa/include/spa/node/node.h:144
#define spa_node_emit_result(hooks,...)
Definition: spa/include/spa/node/utils.h:119
#define SPA_VERSION_NODE_METHODS
Definition: spa/include/spa/node/node.h:331
@ SPA_IO_Buffers
area to exchange buffers, struct spa_io_buffers
Definition: io.h:38
#define SPA_PARAM_INFO_WRITE
Definition: param.h:58
#define SPA_PARAM_INFO_READ
Definition: param.h:56
#define SPA_PARAM_INFO_READWRITE
Definition: param.h:60
static int spa_format_video_raw_parse(const struct spa_pod *format, struct spa_video_info_raw *info)
Definition: video/raw-utils.h:27
#define SPA_PARAM_INFO(id, flags)
Definition: param.h:70
@ SPA_PARAM_META_size
the expected maximum size the meta (Int)
Definition: spa/include/spa/param/buffers.h:39
@ SPA_PARAM_META_type
the metadata, one of enum spa_meta_type (Id enum spa_meta_type)
Definition: spa/include/spa/param/buffers.h:38
@ SPA_PARAM_Format
configured format as SPA_TYPE_OBJECT_Format
Definition: param.h:34
@ SPA_PARAM_Meta
allowed metadata for buffers as SPA_TYPE_OBJECT_ParamMeta
Definition: param.h:36
@ SPA_PARAM_EnumFormat
available formats as SPA_TYPE_OBJECT_Format
Definition: param.h:33
@ SPA_PARAM_Buffers
buffer configurations as SPA_TYPE_OBJECT_ParamBuffers
Definition: param.h:35
@ SPA_PARAM_BUFFERS_size
size of a data block memory (Int)
Definition: spa/include/spa/param/buffers.h:29
@ SPA_PARAM_BUFFERS_stride
stride of data block memory (Int)
Definition: spa/include/spa/param/buffers.h:30
@ SPA_PARAM_BUFFERS_blocks
number of data blocks per buffer (Int)
Definition: spa/include/spa/param/buffers.h:28
@ SPA_PARAM_BUFFERS_buffers
number of buffers (Int)
Definition: spa/include/spa/param/buffers.h:27
#define SPA_POD_CHOICE_RANGE_Int(def, min, max)
Definition: vararg.h:58
#define SPA_POD_Id(val)
Definition: vararg.h:49
#define spa_pod_builder_add_object(b, type, id,...)
Definition: builder.h:659
static void spa_pod_builder_init(struct spa_pod_builder *builder, void *data, uint32_t size)
Definition: builder.h:87
#define SPA_POD_Int(val)
Definition: vararg.h:54
static int spa_pod_filter(struct spa_pod_builder *b, struct spa_pod **result, const struct spa_pod *pod, const struct spa_pod *filter)
Definition: spa/include/spa/pod/filter.h:431
@ SPA_TYPE_OBJECT_ParamBuffers
Definition: spa/include/spa/utils/type.h:77
@ SPA_TYPE_OBJECT_ParamMeta
Definition: spa/include/spa/utils/type.h:78
#define SPA_MIN(a, b)
Definition: defs.h:147
#define spa_zero(x)
Definition: defs.h:413
#define SPA_ID_INVALID
Definition: defs.h:224
#define SPA_N_ELEMENTS(arr)
Definition: defs.h:125
spa_direction
Definition: defs.h:88
#define SPA_PTROFF(ptr_, offset_, type_)
Return the address (buffer + offset) as pointer of type.
Definition: defs.h:190
@ SPA_DIRECTION_INPUT
Definition: defs.h:89
Definition: properties.h:33
struct spa_dict dict
dictionary of key/values
Definition: properties.h:34
A Buffer.
Definition: buffer/buffer.h:90
struct spa_data * datas
array of data members
Definition: buffer/buffer.h:94
int32_t stride
stride of valid data
Definition: buffer/buffer.h:49
Definition: pod/command.h:29
struct spa_chunk * chunk
valid chunk of memory
Definition: buffer/buffer.h:86
int64_t fd
optional fd for data
Definition: buffer/buffer.h:82
uint32_t mapoffset
offset to map fd at
Definition: buffer/buffer.h:83
void * data
optional data pointer
Definition: buffer/buffer.h:85
uint32_t maxsize
max size of data
Definition: buffer/buffer.h:84
uint32_t type
memory type, one of enum spa_data_type, when allocating memory, the type contains a bitmask of allowe...
Definition: buffer/buffer.h:63
A list of hooks.
Definition: hook.h:320
A hook, contains the structure with functions and the data passed to the functions.
Definition: hook.h:331
IO area to exchange buffers.
Definition: io.h:78
Definition: spa/include/spa/support/loop.h:36
Node callbacks.
Definition: spa/include/spa/node/node.h:232
events from the spa_node.
Definition: spa/include/spa/node/node.h:176
Node methods.
Definition: spa/include/spa/node/node.h:327
Definition: spa/include/spa/node/node.h:41
information about a parameter
Definition: param.h:50
Port information structure.
Definition: spa/include/spa/node/node.h:93
the result of enum_params or port_enum_params.
Definition: spa/include/spa/node/node.h:152
struct spa_pod * param
the result param
Definition: spa/include/spa/node/node.h:156
uint32_t next
next index of iteration
Definition: spa/include/spa/node/node.h:155
uint32_t id
id of parameter
Definition: spa/include/spa/node/node.h:153
Definition: video/raw.h:175
enum spa_video_format format
the format
Definition: video/raw.h:176