pipewire/src/gst/meson.build
Wim Taymans 9419a12e74 gst: add rate control to the sink
Track the elapsed time between buffers and try to keep the buffer fill
level constant by changing the rate of the stream.

See #4374
2024-12-03 12:11:47 +01:00

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]