mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 17:09:48 +00:00
6a4425e46a
Removing some copy pasted code Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2970>
20 lines
460 B
Meson
20 lines
460 B
Meson
inter_sources = [
|
|
'gstinteraudiosink.c',
|
|
'gstinteraudiosrc.c',
|
|
'gstintersubsink.c',
|
|
'gstintersubsrc.c',
|
|
'gstintervideosink.c',
|
|
'gstintervideosrc.c',
|
|
'gstinter.c',
|
|
'gstintersurface.c',
|
|
]
|
|
|
|
gstinter = library('gstinter',
|
|
inter_sources,
|
|
c_args : gst_plugins_bad_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstaudio_dep, gstvideo_dep, gstbase_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
plugins += [gstinter]
|