Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
[platform/upstream/gstreamer.git] / gst / udp / gstdynudpsink.h
1 /* GStreamer
2  * Copyright (C) <2005> Philippe Khalaf <burger@speedy.org>
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 #ifndef __GST_DYNUDPSINK_H__
21 #define __GST_DYNUDPSINK_H__
22
23 #include <gst/gst.h>
24 #include <gst/base/gstbasesink.h>
25
26 G_BEGIN_DECLS
27
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <unistd.h>
31 #include <errno.h>
32 #include <string.h>
33 #include <sys/time.h>
34 #include <sys/types.h>
35 #include <netinet/in.h>
36 #include <netdb.h>
37 #include <sys/socket.h>
38 #include <sys/wait.h>
39 #include <fcntl.h>
40 #include <arpa/inet.h>
41 #include "gstudp.h"
42
43 #define GST_TYPE_DYNUDPSINK             (gst_dynudpsink_get_type())
44 #define GST_DYNUDPSINK(obj)             (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_DYNUDPSINK,GstDynUDPSink))
45 #define GST_DYNUDPSINK_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_DYNUDPSINK,GstDynUDPSinkClass))
46 #define GST_IS_DYNUDPSINK(obj)          (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_DYNUDPSINK))
47 #define GST_IS_DYNUDPSINK_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_DYNUDPSINK))
48
49 typedef struct _GstDynUDPSink GstDynUDPSink;
50 typedef struct _GstDynUDPSinkClass GstDynUDPSinkClass;
51
52
53 /* sends udp packets to host/port pairs contained in the GstNetBuffer received.
54  */
55 struct _GstDynUDPSink {
56   GstBaseSink parent;
57
58   int sock;
59 };
60
61 struct _GstDynUDPSinkClass {
62   GstBaseSinkClass parent_class;
63
64   /* element methods */
65   GValueArray*  (*get_stats)    (GstDynUDPSink *sink, const gchar *host, gint port);
66
67   /* signals */
68 };
69
70 GType gst_dynudpsink_get_type(void);
71
72 GValueArray*    gst_dynudpsink_get_stats        (GstDynUDPSink *sink, const gchar *host, gint port);
73
74 G_END_DECLS
75
76 #endif /* __GST_DYNUDPSINK_H__ */