Blame gst/udp/gstudp.c

Packit 1f69a5
/* GStreamer
Packit 1f69a5
 * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
Packit 1f69a5
 *
Packit 1f69a5
 * This library is free software; you can redistribute it and/or
Packit 1f69a5
 * modify it under the terms of the GNU Library General Public
Packit 1f69a5
 * License as published by the Free Software Foundation; either
Packit 1f69a5
 * version 2 of the License, or (at your option) any later version.
Packit 1f69a5
 *
Packit 1f69a5
 * This library is distributed in the hope that it will be useful,
Packit 1f69a5
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 1f69a5
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 1f69a5
 * Library General Public License for more details.
Packit 1f69a5
 *
Packit 1f69a5
 * You should have received a copy of the GNU Library General Public
Packit 1f69a5
 * License along with this library; if not, write to the
Packit 1f69a5
 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
Packit 1f69a5
 * Boston, MA 02110-1301, USA.
Packit 1f69a5
 */
Packit 1f69a5
Packit 1f69a5
#ifdef HAVE_CONFIG_H
Packit 1f69a5
#include "config.h"
Packit 1f69a5
#endif
Packit 1f69a5
Packit 1f69a5
#include <gst/net/gstnetaddressmeta.h>
Packit 1f69a5
Packit 1f69a5
#include "gstudpsrc.h"
Packit 1f69a5
#include "gstmultiudpsink.h"
Packit 1f69a5
#include "gstudpsink.h"
Packit 1f69a5
#include "gstdynudpsink.h"
Packit 1f69a5
Packit 1f69a5
static gboolean
Packit 1f69a5
plugin_init (GstPlugin * plugin)
Packit 1f69a5
{
Packit 1f69a5
  /* not using GLIB_CHECK_VERSION on purpose, run-time version matters */
Packit 1f69a5
  if (glib_check_version (2, 36, 0) != NULL) {
Packit 1f69a5
    GST_WARNING ("Your GLib version is < 2.36, UDP multicasting support may "
Packit 1f69a5
        "be broken, see https://bugzilla.gnome.org/show_bug.cgi?id=688378");
Packit 1f69a5
  }
Packit 1f69a5
Packit 1f69a5
  /* register info of the netaddress metadata so that we can use it from
Packit 1f69a5
   * multiple threads right away. Note that the plugin loading is always
Packit 1f69a5
   * serialized */
Packit 1f69a5
  gst_net_address_meta_get_info ();
Packit 1f69a5
Packit 1f69a5
  if (!gst_element_register (plugin, "udpsink", GST_RANK_NONE,
Packit 1f69a5
          GST_TYPE_UDPSINK))
Packit 1f69a5
    return FALSE;
Packit 1f69a5
Packit 1f69a5
  if (!gst_element_register (plugin, "multiudpsink", GST_RANK_NONE,
Packit 1f69a5
          GST_TYPE_MULTIUDPSINK))
Packit 1f69a5
    return FALSE;
Packit 1f69a5
Packit 1f69a5
  if (!gst_element_register (plugin, "dynudpsink", GST_RANK_NONE,
Packit 1f69a5
          GST_TYPE_DYNUDPSINK))
Packit 1f69a5
    return FALSE;
Packit 1f69a5
Packit 1f69a5
  if (!gst_element_register (plugin, "udpsrc", GST_RANK_NONE, GST_TYPE_UDPSRC))
Packit 1f69a5
    return FALSE;
Packit 1f69a5
Packit 1f69a5
  return TRUE;
Packit 1f69a5
}
Packit 1f69a5
Packit 1f69a5
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
Packit 1f69a5
    GST_VERSION_MINOR,
Packit 1f69a5
    udp,
Packit 1f69a5
    "transfer data via UDP",
Packit 1f69a5
    plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)