mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 12:51:16 +00:00
6a4425e46a
Removing some copy pasted code Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2970>
16 lines
399 B
Meson
16 lines
399 B
Meson
gst_plugins_rtp_sources = [
|
|
'plugin.c',
|
|
'gstrtpsink.c',
|
|
'gstrtpsrc.c',
|
|
'gstrtp-utils.c',
|
|
]
|
|
|
|
gstrtp = library('gstrtpmanagerbad',
|
|
gst_plugins_rtp_sources,
|
|
dependencies: [gst_dep, gstbase_dep, gstrtp_dep, gstnet_dep, gstcontroller_dep, gio_dep],
|
|
include_directories: [configinc],
|
|
install: true,
|
|
c_args: gst_plugins_bad_args,
|
|
install_dir: plugins_install_dir,
|
|
)
|
|
plugins += [gstrtp]
|