Find a file
Wim Taymans fca3e1d85d Remove dynamic types
Do not use dynamic types anymore. The reason is that it's difficult:

- to maintain a shared type database over a network.
- the extra overhead when translating between processes and for
  maintaining the translation tables.
- race conditions in translating in RT-threads, this is a problem
  because we want to make event streams.

We now have simple enums with types and extension points for all
types. This is also nicer to use in general.
We don't need the mapper anymore or pass strings around as types.
There is a parallel type info system to get more info about ids and
enums and their hierarchy. It can also be used for debugging.
2018-08-23 17:47:57 +02:00
doc update docs 2017-09-05 13:35:25 +02:00
man man: add man page for config file 2018-08-17 10:19:20 +02:00
pkgconfig remove spalib 2018-08-14 15:29:25 +02:00
po Update POTFILES.in 2017-09-19 17:42:12 +02:00
spa Remove dynamic types 2018-08-23 17:47:57 +02:00
src Remove dynamic types 2018-08-23 17:47:57 +02:00
.gitignore pinos -> pipewire 2017-05-23 19:15:33 +02:00
_config.yml Set theme jekyll-theme-slate 2017-09-04 19:55:46 +02:00
autogen.sh Add beginnings of jack module 2017-06-26 13:04:47 +02:00
config.h.meson config.h: add version numbers 2018-01-30 14:49:45 +01:00
git-version-gen Initial commit 2015-04-16 16:58:33 +02:00
GPL Initial commit 2015-04-16 16:58:33 +02:00
LGPL Initial commit 2015-04-16 16:58:33 +02:00
LICENSE pinos -> pipewire 2017-05-23 19:15:33 +02:00
Makefile.in Makefile.in: use right build command 2017-09-19 16:04:41 +02:00
meson.build meson: rename options as per meson's style guide 2018-08-17 17:52:19 +02:00
meson_options.txt meson: rename options as per meson's style guide 2018-08-17 17:52:19 +02:00
NEWS Add some NEWS 2018-02-27 14:00:19 +01:00
PROTOCOL Initial commit 2015-04-16 16:58:33 +02:00
README readme: add section on building with make or meson 2017-10-19 22:45:19 +02:00

PipeWire
--------

PipeWire is a server and user space API to deal with multimedia
pipelines. This includes:

  - Making available sources of video (such as from a capture devices or
       application provided streams) and multiplexing this with
       clients.
  - Accessing sources of video for consumption.
  - Generating graphs for audio and video processing.

Nodes in the graph can be implemented as separate processes,
communicating with sockets and exchanging multimedia content using fd
passing.

Building
--------

Pipewire uses the Meson and Ninja build system to compile. If you're not
familiar with these tools, the included "autogen.sh" script will
automatically run the correct meson/ninja commands, and output a Makefile.
It follows that there are two methods to build Pipewire, however both rely
on Meson and Ninja to actually perform the compilation:

$ ./autogen.sh
$ make

or the Meson/Ninja native method:

$ meson build
$ cd build
$ ninja