multiudpsink: add multicast-iface property
[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., 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 #include <gio/gio.h>
26
27 G_BEGIN_DECLS
28
29 #include "gstudpnetutils.h"
30 #include "gstudp.h"
31
32 #define GST_TYPE_MULTIUDPSINK            (gst_multiudpsink_get_type())
33 #define GST_MULTIUDPSINK(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_MULTIUDPSINK,GstMultiUDPSink))
34 #define GST_MULTIUDPSINK_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_MULTIUDPSINK,GstMultiUDPSinkClass))
35 #define GST_IS_MULTIUDPSINK(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_MULTIUDPSINK))
36 #define GST_IS_MULTIUDPSINK_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_MULTIUDPSINK))
37
38 typedef struct _GstMultiUDPSink GstMultiUDPSink;
39 typedef struct _GstMultiUDPSinkClass GstMultiUDPSinkClass;
40
41 typedef struct {
42   gint refcount;
43
44   GSocketAddress *addr;
45   gchar *host;
46   gint port;
47
48   /* Per-client stats */
49   guint64 bytes_sent;
50   guint64 packets_sent;
51   guint64 connect_time;
52   guint64 disconnect_time;
53 } GstUDPClient;
54
55 /* sends udp packets to multiple host/port pairs.
56  */
57 struct _GstMultiUDPSink {
58   GstBaseSink parent;
59
60   GSocket       *used_socket;
61   GCancellable  *cancellable;
62
63   GMutex         client_lock;
64   GList         *clients;
65
66   /* properties */
67   guint64        bytes_to_serve;
68   guint64        bytes_served;
69   GSocket       *socket;
70   gboolean       close_socket;
71
72   gboolean       external_socket;
73
74   gboolean       auto_multicast;
75   gchar         *multi_iface;
76   gint           ttl;
77   gint           ttl_mc;
78   gboolean       loop;
79   gboolean       force_ipv4;
80   gint           qos_dscp;
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   GstStructure* (*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 GstStructure*   gst_multiudpsink_get_stats      (GstMultiUDPSink *sink, const gchar *host, gint port);
106
107 G_END_DECLS
108
109 #endif /* __GST_MULTIUDPSINK_H__ */