mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
udp: Remove unused enum type
This commit is contained in:
parent
a957457cc1
commit
afb284e3a9
6 changed files with 0 additions and 59 deletions
|
@ -1,18 +1,5 @@
|
|||
plugin_LTLIBRARIES = libgstudp.la
|
||||
|
||||
# variables used for enum/marshal generation
|
||||
glib_enum_headers = gstudp.h
|
||||
glib_enum_define = GST_UDP
|
||||
glib_gen_prefix = gst_udp
|
||||
glib_gen_basename = gstudp
|
||||
|
||||
include $(top_srcdir)/common/gst-glib-gen.mak
|
||||
|
||||
built_sources = gstudp-enumtypes.c
|
||||
built_headers = gstudp-enumtypes.h
|
||||
|
||||
BUILT_SOURCES = $(built_sources) $(built_headers)
|
||||
|
||||
libgstudp_la_SOURCES = gstudp.c gstudpsrc.c gstudpsink.c gstmultiudpsink.c gstdynudpsink.c gstudpnetutils.c
|
||||
|
||||
libgstudp_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_NET_CFLAGS) $(GST_CFLAGS) $(GIO_CFLAGS)
|
||||
|
@ -20,9 +7,6 @@ libgstudp_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(GST_NET_LIBS)
|
|||
libgstudp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstudp_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
nodist_libgstudp_la_SOURCES = \
|
||||
$(built_sources)
|
||||
|
||||
noinst_HEADERS = gstudpsink.h gstudpsrc.h gstudp.h gstmultiudpsink.h gstdynudpsink.h gstudpnetutils.h
|
||||
|
||||
EXTRA_DIST = README
|
||||
|
|
|
@ -27,7 +27,6 @@
|
|||
G_BEGIN_DECLS
|
||||
|
||||
#include "gstudpnetutils.h"
|
||||
#include "gstudp.h"
|
||||
|
||||
#define GST_TYPE_DYNUDPSINK (gst_dynudpsink_get_type())
|
||||
#define GST_DYNUDPSINK(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_DYNUDPSINK,GstDynUDPSink))
|
||||
|
|
|
@ -27,7 +27,6 @@
|
|||
G_BEGIN_DECLS
|
||||
|
||||
#include "gstudpnetutils.h"
|
||||
#include "gstudp.h"
|
||||
|
||||
#define GST_TYPE_MULTIUDPSINK (gst_multiudpsink_get_type())
|
||||
#define GST_MULTIUDPSINK(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_MULTIUDPSINK,GstMultiUDPSink))
|
||||
|
|
|
@ -1,39 +0,0 @@
|
|||
/* GStreamer
|
||||
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Library General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Library General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Library General Public
|
||||
* License along with this library; if not, write to the
|
||||
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
||||
* Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#include "gstudp-enumtypes.h"
|
||||
#include <glib.h>
|
||||
|
||||
#ifndef __GST_UDP_H__
|
||||
#define __GST_UDP_H__
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
typedef enum
|
||||
{
|
||||
CONTROL_ZERO,
|
||||
CONTROL_NONE,
|
||||
CONTROL_UDP,
|
||||
CONTROL_TCP
|
||||
} GstUDPControl;
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __GST_UDP_H__ */
|
||||
|
|
@ -26,7 +26,6 @@
|
|||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
#include "gstudp.h"
|
||||
#include "gstudpnetutils.h"
|
||||
|
||||
#define GST_TYPE_UDPSINK (gst_udpsink_get_type())
|
||||
|
|
|
@ -28,7 +28,6 @@
|
|||
G_BEGIN_DECLS
|
||||
|
||||
#include "gstudpnetutils.h"
|
||||
#include "gstudp.h"
|
||||
|
||||
#define GST_TYPE_UDPSRC \
|
||||
(gst_udpsrc_get_type())
|
||||
|
|
Loading…
Reference in a new issue