mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-14 04:16:35 +00:00
2faeb7d394
Call gst_aggregator_selected_samples() after filling the queues (but before preparing frames). Implement GstAggregator.peek_next_sample. Add an example that demonstrates usage of the new API in combination with the existing buffer-consumed signal. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/merge_requests/728>
11 lines
333 B
Meson
11 lines
333 B
Meson
executable('crossfade', 'crossfade.c',
|
|
include_directories: [configinc],
|
|
c_args: ['-DHAVE_CONFIG_H'],
|
|
dependencies: [gst_controller_dep, gst_dep],
|
|
install: false)
|
|
|
|
executable('signals', 'signals.c',
|
|
include_directories: [configinc],
|
|
c_args: ['-DHAVE_CONFIG_H'],
|
|
dependencies: [gst_dep, gst_base_dep],
|
|
install: false)
|