mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
0acb3d87bb
This is useful e.g. if audio buffers should be exactly the duration of a video frame, or if a audio buffers should never be too large because of latency constraints. The element is taking a fractional buffer duration, to allow working with e.g. 1001/30000 as output duration and it accumulates rounding errors in the buffer durations and compensates for them by making some buffers one sample larger than the others. https://bugzilla.gnome.org/show_bug.cgi?id=774689
12 lines
313 B
Meson
12 lines
313 B
Meson
audiobuffersplit_sources = [
|
|
'gstaudiobuffersplit.c',
|
|
]
|
|
|
|
gstaudiobuffersplit = library('gstaudiobuffersplit',
|
|
audiobuffersplit_sources,
|
|
c_args : gst_plugins_bad_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstbase_dep, gstaudio_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|