mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
d132592423
Fixes https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/issues/415 Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3251>
14 lines
287 B
Meson
14 lines
287 B
Meson
xing_sources = [
|
|
'plugin.c',
|
|
'gstxingmux.c',
|
|
]
|
|
|
|
gstxingmux = library('gstxingmux',
|
|
xing_sources,
|
|
c_args : gst_plugins_good_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstbase_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
plugins += [gstxingmux]
|