mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
b09f478e80
https://github.com/mesonbuild/meson With contributions from: Tim-Philipp Müller <tim@centricular.com> Jussi Pakkanen <jpakkane@gmail.com> (original port) Highlights of the features provided are: * Faster builds on Linux (~40-50% faster) * The ability to build with MSVC on Windows * Generate Visual Studio project files * Generate XCode project files * Much faster builds on Windows (on-par with Linux) * Seriously fast configure and building on embedded ... and many more. For more details see: http://blog.nirbheek.in/2016/05/gstreamer-and-meson-new-hope.html http://blog.nirbheek.in/2016/07/building-and-developing-gstreamer-using.html Building with Meson should work on both Linux and Windows, but may need a few more tweaks on other operating systems.
109 lines
2.4 KiB
Meson
109 lines
2.4 KiB
Meson
rtp_sources = [
|
|
'dboolhuff.c',
|
|
'fnv1hash.c',
|
|
'gstrtp.c',
|
|
'gstrtpchannels.c',
|
|
'gstrtpac3depay.c',
|
|
'gstrtpac3pay.c',
|
|
'gstrtpbvdepay.c',
|
|
'gstrtpbvpay.c',
|
|
'gstrtpceltdepay.c',
|
|
'gstrtpceltpay.c',
|
|
'gstrtpdvdepay.c',
|
|
'gstrtpdvpay.c',
|
|
'gstrtpgstdepay.c',
|
|
'gstrtpgstpay.c',
|
|
'gstrtpilbcdepay.c',
|
|
'gstrtpilbcpay.c',
|
|
'gstrtpklvdepay.c',
|
|
'gstrtpklvpay.c',
|
|
'gstrtpmpadepay.c',
|
|
'gstrtpmpapay.c',
|
|
'gstrtpmparobustdepay.c',
|
|
'gstrtpmpvdepay.c',
|
|
'gstrtpmpvpay.c',
|
|
'gstrtpopuspay.c',
|
|
'gstrtpopusdepay.c',
|
|
'gstrtppcmadepay.c',
|
|
'gstrtppcmudepay.c',
|
|
'gstrtppcmupay.c',
|
|
'gstrtppcmapay.c',
|
|
'gstrtpg722depay.c',
|
|
'gstrtpg722pay.c',
|
|
'gstrtpg723depay.c',
|
|
'gstrtpg723pay.c',
|
|
'gstrtpg726pay.c',
|
|
'gstrtpg726depay.c',
|
|
'gstrtpg729pay.c',
|
|
'gstrtpg729depay.c',
|
|
'gstrtpgsmdepay.c',
|
|
'gstrtpgsmpay.c',
|
|
'gstrtpamrdepay.c',
|
|
'gstrtpamrpay.c',
|
|
'gstrtph261depay.c',
|
|
'gstrtph261pay.c',
|
|
'gstrtph263pdepay.c',
|
|
'gstrtph263ppay.c',
|
|
'gstrtph263depay.c',
|
|
'gstrtph263pay.c',
|
|
'gstrtph264depay.c',
|
|
'gstrtph264pay.c',
|
|
'gstrtph265depay.c',
|
|
'gstrtph265pay.c',
|
|
'gstrtpj2kdepay.c',
|
|
'gstrtpj2kpay.c',
|
|
'gstrtpjpegdepay.c',
|
|
'gstrtpjpegpay.c',
|
|
'gstrtpL16depay.c',
|
|
'gstrtpL16pay.c',
|
|
'gstrtpL24depay.c',
|
|
'gstrtpL24pay.c',
|
|
'gstasteriskh263.c',
|
|
'gstrtpmp1sdepay.c',
|
|
'gstrtpmp2tdepay.c',
|
|
'gstrtpmp2tpay.c',
|
|
'gstrtpmp4vdepay.c',
|
|
'gstrtpmp4vpay.c',
|
|
'gstrtpmp4gdepay.c',
|
|
'gstrtpmp4gpay.c',
|
|
'gstrtpmp4adepay.c',
|
|
'gstrtpmp4apay.c',
|
|
'gstrtpqcelpdepay.c',
|
|
'gstrtpqdmdepay.c',
|
|
'gstrtpsbcdepay.c',
|
|
'gstrtpsbcpay.c',
|
|
'gstrtpsirenpay.c',
|
|
'gstrtpsirendepay.c',
|
|
'gstrtpspeexdepay.c',
|
|
'gstrtpspeexpay.c',
|
|
'gstrtpsv3vdepay.c',
|
|
'gstrtptheoradepay.c',
|
|
'gstrtptheorapay.c',
|
|
'gstrtpvorbisdepay.c',
|
|
'gstrtpvorbispay.c',
|
|
'gstrtpvp8depay.c',
|
|
'gstrtpvp8pay.c',
|
|
'gstrtpvp9depay.c',
|
|
'gstrtpvp9pay.c',
|
|
'gstrtpvrawdepay.c',
|
|
'gstrtpvrawpay.c',
|
|
'gstrtpstreampay.c',
|
|
'gstrtpstreamdepay.c',
|
|
'gstrtputils.c',
|
|
]
|
|
|
|
rtp_args = [
|
|
'-Dvp8_norm=gst_rtpvp8_vp8_norm',
|
|
'-Dvp8dx_start_decode=gst_rtpvp8_vp8dx_start_decode',
|
|
'-Dvp8dx_bool_decoder_fill=gst_rtpvp8_vp8dx_bool_decoder_fill',
|
|
]
|
|
|
|
gstrtp = library('gstrtp',
|
|
rtp_sources,
|
|
c_args : gst_plugins_good_args + rtp_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstbase_dep, gstaudio_dep, gstvideo_dep, gsttag_dep,
|
|
gstrtp_dep, gstpbutils_dep, libm],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|