mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-02 09:01:50 -05:00
Remove the monitor API, we can use the device API for it. Make sure we support creating devices (like alsa) from another device (udev). Use new object.id to store the object id in the object properties. Use the port.id/node.id etc to make relations to other objects.
11 lines
447 B
Meson
11 lines
447 B
Meson
v4l2_sources = ['v4l2.c',
|
|
'v4l2-device.c',
|
|
'v4l2-udev.c',
|
|
'v4l2-source.c']
|
|
|
|
v4l2lib = shared_library('spa-v4l2',
|
|
v4l2_sources,
|
|
include_directories : [ spa_inc ],
|
|
dependencies : [ libudev_dep ],
|
|
install : true,
|
|
install_dir : '@0@/spa/v4l2'.format(get_option('libdir')))
|