#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:398
 
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:187
 
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:415
 
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:454
 
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:275
 
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:161
 
#define PW_KEY_CORE_DAEMON
If the core is listening for connections.
Definition: src/pipewire/keys.h:122
 
#define PW_KEY_LINK_INPUT_NODE
input node id of a link
Definition: src/pipewire/keys.h:316
 
#define PW_KEY_LINK_OUTPUT_NODE
output node id of a link
Definition: src/pipewire/keys.h:320
 
#define PW_TYPE_INTERFACE_Link
Definition: link.h:57
 
#define PW_VERSION_LINK
Definition: link.h:60
 
#define pw_loop_iterate(l,...)
Definition: src/pipewire/loop.h:72
 
#define pw_loop_invoke(l,...)
Definition: src/pipewire/loop.h:67
 
struct pw_main_loop * pw_main_loop_new(const struct spa_dict *props)
Create a new main loop.
Definition: main-loop.c:80
 
int pw_main_loop_quit(struct pw_main_loop *loop)
Quit a main loop.
Definition: main-loop.c:125
 
void pw_main_loop_destroy(struct pw_main_loop *loop)
Destroy a loop.
Definition: main-loop.c:90
 
int pw_main_loop_run(struct pw_main_loop *loop)
Run a main loop.
Definition: main-loop.c:139
 
struct pw_loop * pw_main_loop_get_loop(struct pw_main_loop *loop)
Get the loop implementation.
Definition: main-loop.c:113
 
#define PW_TYPE_INTERFACE_Node
Definition: src/pipewire/node.h:55
 
#define PW_VERSION_NODE
Definition: src/pipewire/node.h:58
 
void pw_init(int *argc, char **argv[])
Initialize PipeWire.
Definition: pipewire.c:578
 
void pw_deinit(void)
Deinitialize PipeWire.
Definition: pipewire.c:686
 
void pw_properties_free(struct pw_properties *properties)
Free a properties object.
Definition: properties.c:368
 
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:102
 
void pw_properties_clear(struct pw_properties *properties)
Clear a properties object.
Definition: properties.c:281
 
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:169
 
void pw_proxy_destroy(struct pw_proxy *proxy)
destroy a proxy
Definition: proxy.c:231
 
@ SPA_META_Header
struct spa_meta_header
Definition: meta.h:47
 
@ SPA_DATA_MemFd
generic fd, mmap to get to memory
Definition: buffer/buffer.h:54
 
@ SPA_DATA_MemPtr
pointer to memory, the data field in struct spa_data is set.
Definition: buffer/buffer.h:52
 
@ SPA_DATA_DmaBuf
fd to dmabuf memory
Definition: buffer/buffer.h:55
 
static int spa_debug_format(int indent, const struct spa_type_info *info, const struct spa_pod *format)
Definition: debug/format.h:226
 
#define SPA_KEY_FACTORY_NAME
the name of a factory
Definition: plugin.h:222
 
#define SPA_KEY_LIBRARY_NAME
the name of a library.
Definition: plugin.h:231
 
static void spa_hook_list_join(struct spa_hook_list *list, struct spa_hook_list *save)
Definition: hook.h:423
 
static void spa_hook_list_init(struct spa_hook_list *list)
Initialize a hook list to the empty list.
Definition: hook.h:361
 
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:409
 
#define SPA_INTERFACE_INIT(_type, _version, _funcs, _data)
Initialize a spa_interface.
Definition: hook.h:177
 
#define SPA_NAME_API_V4L2_SOURCE
a v4l2 Node interface for capturing
Definition: names.h:180
 
#define SPA_PORT_CHANGE_MASK_FLAGS
Definition: spa/include/spa/node/node.h:115
 
#define spa_node_emit_port_info(hooks,...)
Definition: spa/include/spa/node/utils.h:138
 
#define SPA_PORT_INFO_INIT()
Definition: spa/include/spa/node/node.h:159
 
#define SPA_TYPE_INTERFACE_Node
Definition: spa/include/spa/node/node.h:57
 
#define SPA_STATUS_NEED_DATA
Definition: io.h:102
 
#define SPA_VERSION_NODE
Definition: spa/include/spa/node/node.h:60
 
#define SPA_PORT_CHANGE_MASK_PARAMS
Definition: spa/include/spa/node/node.h:121
 
#define SPA_RESULT_TYPE_NODE_PARAMS
Definition: spa/include/spa/node/node.h:164
 
#define spa_node_emit_result(hooks,...)
Definition: spa/include/spa/node/utils.h:139
 
#define SPA_VERSION_NODE_METHODS
Definition: spa/include/spa/node/node.h:351
 
@ SPA_IO_Buffers
area to exchange buffers, struct spa_io_buffers
Definition: io.h:58
 
#define SPA_PARAM_INFO_WRITE
Definition: param.h:78
 
#define SPA_PARAM_INFO_READ
Definition: param.h:76
 
#define SPA_PARAM_INFO_READWRITE
Definition: param.h:80
 
static int spa_format_video_raw_parse(const struct spa_pod *format, struct spa_video_info_raw *info)
Definition: video/raw-utils.h:47
 
#define SPA_PARAM_INFO(id, flags)
Definition: param.h:90
 
@ SPA_PARAM_META_size
the expected maximum size the meta (Int)
Definition: spa/include/spa/param/buffers.h:59
 
@ SPA_PARAM_META_type
the metadata, one of enum spa_meta_type (Id enum spa_meta_type)
Definition: spa/include/spa/param/buffers.h:58
 
@ SPA_PARAM_Format
configured format as SPA_TYPE_OBJECT_Format
Definition: param.h:54
 
@ SPA_PARAM_Meta
allowed metadata for buffers as SPA_TYPE_OBJECT_ParamMeta
Definition: param.h:56
 
@ SPA_PARAM_EnumFormat
available formats as SPA_TYPE_OBJECT_Format
Definition: param.h:53
 
@ SPA_PARAM_Buffers
buffer configurations as SPA_TYPE_OBJECT_ParamBuffers
Definition: param.h:55
 
@ SPA_PARAM_BUFFERS_size
size of a data block memory (Int)
Definition: spa/include/spa/param/buffers.h:49
 
@ SPA_PARAM_BUFFERS_stride
stride of data block memory (Int)
Definition: spa/include/spa/param/buffers.h:50
 
@ SPA_PARAM_BUFFERS_blocks
number of data blocks per buffer (Int)
Definition: spa/include/spa/param/buffers.h:48
 
@ SPA_PARAM_BUFFERS_buffers
number of buffers (Int)
Definition: spa/include/spa/param/buffers.h:47
 
#define SPA_POD_CHOICE_RANGE_Int(def, min, max)
Definition: vararg.h:78
 
#define SPA_POD_Id(val)
Definition: vararg.h:69
 
#define spa_pod_builder_add_object(b, type, id,...)
Definition: builder.h:679
 
static void spa_pod_builder_init(struct spa_pod_builder *builder, void *data, uint32_t size)
Definition: builder.h:107
 
#define SPA_POD_Int(val)
Definition: vararg.h:74
 
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:451
 
@ SPA_TYPE_OBJECT_ParamBuffers
Definition: spa/include/spa/utils/type.h:97
 
@ SPA_TYPE_OBJECT_ParamMeta
Definition: spa/include/spa/utils/type.h:98
 
#define SPA_MIN(a, b)
Definition: defs.h:167
 
#define spa_zero(x)
Definition: defs.h:433
 
#define SPA_ID_INVALID
Definition: defs.h:244
 
#define SPA_N_ELEMENTS(arr)
Definition: defs.h:145
 
spa_direction
Definition: defs.h:108
 
#define SPA_PTROFF(ptr_, offset_, type_)
Return the address (buffer + offset) as pointer of type.
Definition: defs.h:210
 
@ SPA_DIRECTION_INPUT
Definition: defs.h:109
 
Definition: properties.h:53
 
struct spa_dict dict
dictionary of key/values
Definition: properties.h:54
 
A Buffer.
Definition: buffer/buffer.h:109
 
struct spa_data * datas
array of data members
Definition: buffer/buffer.h:113
 
int32_t stride
stride of valid data
Definition: buffer/buffer.h:68
 
Definition: pod/command.h:49
 
struct spa_chunk * chunk
valid chunk of memory
Definition: buffer/buffer.h:105
 
int64_t fd
optional fd for data
Definition: buffer/buffer.h:101
 
uint32_t mapoffset
offset to map fd at
Definition: buffer/buffer.h:102
 
void * data
optional data pointer
Definition: buffer/buffer.h:104
 
uint32_t maxsize
max size of data
Definition: buffer/buffer.h:103
 
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:82
 
A list of hooks.
Definition: hook.h:340
 
A hook, contains the structure with functions and the data passed to the functions.
Definition: hook.h:351
 
IO area to exchange buffers.
Definition: io.h:98
 
Definition: spa/include/spa/support/loop.h:56
 
Node callbacks.
Definition: spa/include/spa/node/node.h:252
 
events from the spa_node.
Definition: spa/include/spa/node/node.h:196
 
Node methods.
Definition: spa/include/spa/node/node.h:347
 
Definition: spa/include/spa/node/node.h:61
 
information about a parameter
Definition: param.h:70
 
Port information structure.
Definition: spa/include/spa/node/node.h:113
 
the result of enum_params or port_enum_params.
Definition: spa/include/spa/node/node.h:172
 
struct spa_pod * param
the result param
Definition: spa/include/spa/node/node.h:176
 
uint32_t next
next index of iteration
Definition: spa/include/spa/node/node.h:175
 
uint32_t id
id of parameter
Definition: spa/include/spa/node/node.h:173
 
Definition: video/raw.h:195
 
enum spa_video_format format
the format
Definition: video/raw.h:196