mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 11:29:55 +00:00
eb2dae8fd6
- libgstgtksink.so -> libgstgtk.so - libgstteletextdec.so -> libgstteletex.so - libgstcamerabin2.so -> libgstcamerabin.so - libgstonvif.so -> libgstrtponvif.so (meson only) - sdp -> sdpelem (avoid clash with libgstsdp) - gstsiren -> siren - libgstkmssink.so -> libgstkms.so https://bugzilla.gnome.org/show_bug.cgi?id=779344
14 lines
317 B
Meson
14 lines
317 B
Meson
onvif_sources = [
|
|
'gstrtponvif.c',
|
|
'gstrtponvifparse.c',
|
|
'gstrtponviftimestamp.c',
|
|
]
|
|
|
|
gstrtponvif = library('gstrtponvif',
|
|
onvif_sources,
|
|
c_args : gst_plugins_bad_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstrtp_dep, gstbase_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|