(1) Caps nego are now dynamic, the Application developer now have choices: udp,...
[platform/upstream/gst-plugins-good.git] / gst / udp / gstudpsrc.h
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20
21 #ifndef __GST_UDPSRC_H__
22 #define __GST_UDPSRC_H__
23
24 #include <config.h>
25 #include <gst/gst.h>
26
27 #ifdef __cplusplus
28 extern "C" {
29 #endif /* __cplusplus */
30
31 #include <errno.h>
32 #include <string.h>
33 #include <sys/types.h>
34 #include <netdb.h>
35 #include <sys/socket.h>
36 #include <fcntl.h>
37 #include "gstudp.h"
38
39 #define GST_TYPE_UDPSRC \
40   (gst_udpsrc_get_type())
41 #define GST_UDPSRC(obj) \
42   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_UDPSRC,GstUDPSrc))
43 #define GST_UDPSRC_CLASS(klass) \
44   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_UDPSRC,GstUDPSrc))
45 #define GST_IS_UDPSRC(obj) \
46   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_UDPSRC))
47 #define GST_IS_UDPSRC_CLASS(obj) \
48   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_UDPSRC))
49
50 typedef struct _GstUDPSrc GstUDPSrc;
51 typedef struct _GstUDPSrcClass GstUDPSrcClass;
52
53 typedef enum {
54   GST_UDPSRC_OPEN             = GST_ELEMENT_FLAG_LAST,
55
56   GST_UDPSRC_FLAG_LAST        = GST_ELEMENT_FLAG_LAST + 2,
57 } GstUDPSrcFlags;
58
59 struct _GstUDPSrc {
60   GstElement element;
61
62   /* pads */
63   GstPad *sinkpad,*srcpad;
64
65   int port;
66   int sock;
67   int control_sock;
68   Gst_UDP_Control control;
69   struct sockaddr_in myaddr;
70 };
71
72 struct _GstUDPSrcClass {
73   GstElementClass parent_class;
74 };
75
76 GType gst_udpsrc_get_type(void);
77
78
79 #ifdef __cplusplus
80 }
81 #endif /* __cplusplus */
82
83
84 #endif /* __GST_UDPSRC_H__ */