• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1rtmp2_sources = [
2  'gstrtmp2.c',
3  'gstrtmp2element.c',
4  'gstrtmp2locationhandler.c',
5  'gstrtmp2sink.c',
6  'gstrtmp2src.c',
7  'rtmp/amf.c',
8  'rtmp/rtmpchunkstream.c',
9  'rtmp/rtmpclient.c',
10  'rtmp/rtmpconnection.c',
11  'rtmp/rtmphandshake.c',
12  'rtmp/rtmpmessage.c',
13  'rtmp/rtmputils.c',
14]
15
16gstrtmp2 = library('gstrtmp2',
17  rtmp2_sources,
18  c_args : gst_plugins_bad_args,
19  include_directories : [configinc, libsinc],
20  dependencies : [gstbase_dep, gio_dep, libm],
21  install : true,
22  install_dir : plugins_install_dir,
23)
24pkgconfig.generate(gstrtmp2, install_dir : plugins_pkgconfig_install_dir)
25plugins += [gstrtmp2]
26