2019-11-05 13:52:55 +00:00
|
|
|
rtmp2_sources = [
|
|
|
|
'gstrtmp2.c',
|
2021-02-25 14:22:15 +00:00
|
|
|
'gstrtmp2element.c',
|
2019-11-05 13:52:55 +00:00
|
|
|
'gstrtmp2locationhandler.c',
|
|
|
|
'gstrtmp2sink.c',
|
|
|
|
'gstrtmp2src.c',
|
|
|
|
'rtmp/amf.c',
|
|
|
|
'rtmp/rtmpchunkstream.c',
|
|
|
|
'rtmp/rtmpclient.c',
|
|
|
|
'rtmp/rtmpconnection.c',
|
|
|
|
'rtmp/rtmphandshake.c',
|
|
|
|
'rtmp/rtmpmessage.c',
|
|
|
|
'rtmp/rtmputils.c',
|
|
|
|
]
|
|
|
|
|
|
|
|
gstrtmp2 = library('gstrtmp2',
|
|
|
|
rtmp2_sources,
|
|
|
|
c_args : gst_plugins_bad_args,
|
|
|
|
include_directories : [configinc, libsinc],
|
|
|
|
dependencies : [gstbase_dep, gio_dep, libm],
|
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir,
|
|
|
|
)
|
|
|
|
pkgconfig.generate(gstrtmp2, install_dir : plugins_pkgconfig_install_dir)
|
|
|
|
plugins += [gstrtmp2]
|