mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-20 06:59:58 -05:00
Track the elapsed time between buffers and try to keep the buffer fill level constant by changing the rate of the stream. See #4374
35 lines
850 B
Meson
35 lines
850 B
Meson
pipewire_gst_sources = [
|
|
'gstpipewire.c',
|
|
'gstpipewirecore.c',
|
|
'gstpipewireclock.c',
|
|
'gstpipewireformat.c',
|
|
'gstpipewirepool.c',
|
|
'gstpipewiresink.c',
|
|
'gstpipewiresrc.c',
|
|
'gstpipewirestream.c',
|
|
]
|
|
|
|
if get_option('gstreamer-device-provider').allowed()
|
|
pipewire_gst_sources += [ 'gstpipewiredeviceprovider.c' ]
|
|
endif
|
|
|
|
pipewire_gst_headers = [
|
|
'gstpipewireclock.h',
|
|
'gstpipewirecore.h',
|
|
'gstpipewiredeviceprovider.h',
|
|
'gstpipewireformat.h',
|
|
'gstpipewirepool.h',
|
|
'gstpipewiresink.h',
|
|
'gstpipewiresrc.h',
|
|
'gstpipewirestream.h',
|
|
]
|
|
|
|
pipewire_gst = shared_library('gstpipewire',
|
|
pipewire_gst_sources,
|
|
include_directories : [ configinc ],
|
|
dependencies : [ spa_dep, gst_dep, pipewire_dep, mathlib ],
|
|
install : true,
|
|
install_dir : '@0@/gstreamer-1.0'.format(get_option('libdir')),
|
|
)
|
|
|
|
plugins = [pipewire_gst]
|