mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
18 lines
447 B
Meson
18 lines
447 B
Meson
|
videoconvertscale_sources = [
|
||
|
'gstvideoconvert.c',
|
||
|
'gstvideoconvertscale.c',
|
||
|
'gstvideoconvertscaleplugin.c',
|
||
|
'gstvideoscale.c',
|
||
|
]
|
||
|
|
||
|
gstvideoconvertscale = library('gstvideoconvertscale',
|
||
|
videoconvertscale_sources,
|
||
|
c_args : gst_plugins_base_args,
|
||
|
include_directories: [configinc, libsinc],
|
||
|
dependencies : [video_dep, gst_dep, gst_base_dep],
|
||
|
install : true,
|
||
|
install_dir : plugins_install_dir,
|
||
|
)
|
||
|
|
||
|
plugins += [gstvideoconvertscale]
|