mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 10:31:05 +00:00
fb7d9e26ff
- libgstencodebin.so is now libgstencoding.so - libgstximage.so is now libgstximagesink.so (meson only) https://bugzilla.gnome.org/show_bug.cgi?id=779344
14 lines
366 B
Meson
14 lines
366 B
Meson
encoding_sources = ['gstencodebin.c',
|
|
'gstsmartencoder.c',
|
|
'gststreamcombiner.c',
|
|
'gststreamsplitter.c',
|
|
]
|
|
|
|
gstencoding = library('gstencoding',
|
|
encoding_sources,
|
|
c_args : gst_plugins_base_args,
|
|
include_directories: [configinc, libsinc],
|
|
dependencies : [pbutils_dep, video_dep, gst_base_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|