udp: log WARNING debug message if UDP multicast is likely to be broken

This commit is contained in:
Tim-Philipp Müller 2013-04-27 11:24:38 +01:00
parent 4273eccace
commit 7ccb387e85

View file

@ -31,6 +31,12 @@
static gboolean
plugin_init (GstPlugin * plugin)
{
/* not using GLIB_CHECK_VERSION on purpose, run-time version matters */
if (glib_check_version (2, 36, 0) != NULL) {
GST_WARNING ("Your GLib version is < 2.36, UDP multicasting support may "
"be broken, see https://bugzilla.gnome.org/show_bug.cgi?id=688378");
}
/* register info of the netaddress metadata so that we can use it from
* multiple threads right away. Note that the plugin loading is always
* serialized */