(dyn|multi)udpsink: Add properties to specify the bind address and port
[platform/upstream/gstreamer.git] / gst / udp / gstmultiudpsink.h
1 /* GStreamer
2  * Copyright (C) <2005> Wim Taymans <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., 51 Franklin St, Fifth Floor,
17  * Boston, MA 02110-1301, 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 #include <gio/gio.h>
26
27 G_BEGIN_DECLS
28
29 #include "gstudpnetutils.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   GSocketAddress *addr;
44   gchar *host;
45   gint port;
46
47   /* Per-client stats */
48   guint64 bytes_sent;
49   guint64 packets_sent;
50   guint64 connect_time;
51   guint64 disconnect_time;
52 } GstUDPClient;
53
54 /* sends udp packets to multiple host/port pairs.
55  */
56 struct _GstMultiUDPSink {
57   GstBaseSink parent;
58
59   GSocket       *used_socket, *used_socket_v6;
60   GCancellable  *cancellable;
61
62   GMutex         client_lock;
63   GList         *clients;
64
65   GOutputVector *vec;
66   GstMapInfo *map;
67
68   /* properties */
69   guint64        bytes_to_serve;
70   guint64        bytes_served;
71   GSocket       *socket, *socket_v6;
72   gboolean       close_socket;
73
74   gboolean       external_socket;
75
76   gboolean       auto_multicast;
77   gchar         *multi_iface;
78   gint           ttl;
79   gint           ttl_mc;
80   gboolean       loop;
81   gboolean       force_ipv4;
82   gint           qos_dscp;
83
84   gboolean       send_duplicates;
85   gint           buffer_size;
86   gchar         *bind_address;
87   gint           bind_port;
88 };
89
90 struct _GstMultiUDPSinkClass {
91   GstBaseSinkClass parent_class;
92
93   /* element methods */
94   void          (*add)          (GstMultiUDPSink *sink, const gchar *host, gint port);
95   void          (*remove)       (GstMultiUDPSink *sink, const gchar *host, gint port);
96   void          (*clear)        (GstMultiUDPSink *sink);
97   GstStructure* (*get_stats)    (GstMultiUDPSink *sink, const gchar *host, gint port);
98
99   /* signals */
100   void          (*client_added) (GstElement *element, const gchar *host, gint port);
101   void          (*client_removed) (GstElement *element, const gchar *host, gint port);
102 };
103
104 GType gst_multiudpsink_get_type(void);
105
106 void            gst_multiudpsink_add            (GstMultiUDPSink *sink, const gchar *host, gint port);
107 void            gst_multiudpsink_remove         (GstMultiUDPSink *sink, const gchar *host, gint port);
108 void            gst_multiudpsink_clear          (GstMultiUDPSink *sink);
109 GstStructure*   gst_multiudpsink_get_stats      (GstMultiUDPSink *sink, const gchar *host, gint port);
110
111 G_END_DECLS
112
113 #endif /* __GST_MULTIUDPSINK_H__ */