Tizen 2.0 Release
[framework/multimedia/gst-plugins-good0.10.git] / gst / udp / gstmultiudpsink.h
1 /* GStreamer
2  * Copyright (C) <2005> Wim Taymand <wim@fluendo.com>
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_MULTIUDPSINK_H__
21 #define __GST_MULTIUDPSINK_H__
22
23 #include <gst/gst.h>
24 #include <gst/base/gstbasesink.h>
25
26 G_BEGIN_DECLS
27
28 #include "gstudpnetutils.h"
29 #include "gstudp.h"
30
31 #define GST_TYPE_MULTIUDPSINK            (gst_multiudpsink_get_type())
32 #define GST_MULTIUDPSINK(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_MULTIUDPSINK,GstMultiUDPSink))
33 #define GST_MULTIUDPSINK_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_MULTIUDPSINK,GstMultiUDPSinkClass))
34 #define GST_IS_MULTIUDPSINK(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_MULTIUDPSINK))
35 #define GST_IS_MULTIUDPSINK_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_MULTIUDPSINK))
36
37 typedef struct _GstMultiUDPSink GstMultiUDPSink;
38 typedef struct _GstMultiUDPSinkClass GstMultiUDPSinkClass;
39
40 typedef struct {
41   gint refcount;
42
43   int *sock;
44
45   struct sockaddr_storage theiraddr;
46
47   gchar *host;
48   gint port;
49
50   /* Per-client stats */
51   guint64 bytes_sent;
52   guint64 packets_sent;
53   guint64 connect_time;
54   guint64 disconnect_time;
55 } GstUDPClient;
56
57 /* sends udp packets to multiple host/port pairs.
58  */
59 struct _GstMultiUDPSink {
60   GstBaseSink parent;
61
62   int sock;
63
64   GMutex        *client_lock;
65   GList         *clients;
66
67   /* properties */
68   guint64        bytes_to_serve;
69   guint64        bytes_served;
70   int            sockfd;
71   gboolean       closefd;
72
73   gboolean       externalfd;
74
75   gboolean       auto_multicast;
76   gint           ttl;
77   gint           ttl_mc;
78   gboolean       loop;
79   gint           qos_dscp;
80   guint16        ss_family;
81
82   gboolean       send_duplicates;
83   gint           buffer_size;
84 };
85
86 struct _GstMultiUDPSinkClass {
87   GstBaseSinkClass parent_class;
88
89   /* element methods */
90   void          (*add)          (GstMultiUDPSink *sink, const gchar *host, gint port);
91   void          (*remove)       (GstMultiUDPSink *sink, const gchar *host, gint port);
92   void          (*clear)        (GstMultiUDPSink *sink);
93   GValueArray*  (*get_stats)    (GstMultiUDPSink *sink, const gchar *host, gint port);
94
95   /* signals */
96   void          (*client_added) (GstElement *element, const gchar *host, gint port);
97   void          (*client_removed) (GstElement *element, const gchar *host, gint port);
98 };
99
100 GType gst_multiudpsink_get_type(void);
101
102 void            gst_multiudpsink_add            (GstMultiUDPSink *sink, const gchar *host, gint port);
103 void            gst_multiudpsink_remove         (GstMultiUDPSink *sink, const gchar *host, gint port);
104 void            gst_multiudpsink_clear          (GstMultiUDPSink *sink);
105 GValueArray*    gst_multiudpsink_get_stats      (GstMultiUDPSink *sink, const gchar *host, gint port);
106
107 G_END_DECLS
108
109 #endif /* __GST_MULTIUDPSINK_H__ */