rtpmanagerbad: allow creation of elements at initialisation
[platform/upstream/gstreamer.git] / gst / rtp / gstrtpsrc.h
1 /* GStreamer
2  * Copyright (C) 2019 Marc Leeman <marc.leeman@gmail.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_RTP_SRC_H__
21 #define __GST_RTP_SRC_H__
22
23 #include <gio/gio.h>
24 #include <gst/gst.h>
25
26 G_BEGIN_DECLS
27 #define GST_TYPE_RTP_SRC \
28   (gst_rtp_src_get_type())
29 #define GST_RTP_SRC(obj) \
30   (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_RTP_SRC, GstRtpSrc))
31 #define GST_RTP_SRC_CAST(obj) \
32   ((GstRtpSrc *) obj)
33 #define GST_RTP_SRC_CLASS(klass) \
34   (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_RTP_SRC, GstRtpSrcClass))
35 #define GST_IS_RTP_SRC(obj) \
36   (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_RTP_SRC))
37 #define GST_IS_RTP_SRC_CLASS(klass) \
38   (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_RTP_SRC))
39
40 typedef struct _GstRtpSrc GstRtpSrc;
41 typedef struct _GstRtpSrcClass GstRtpSrcClass;
42
43 struct _GstRtpSrc
44 {
45   GstBin parent;
46
47   /* Properties */
48   GstUri *uri;
49
50   gint ttl;
51   gint ttl_mc;
52   gchar *encoding_name;
53
54   /* Internal elements */
55   GstElement *rtpbin;
56   GstElement *rtp_src;
57   GstElement *rtcp_src;
58   GstElement *rtcp_sink;
59
60   gulong rtcp_recv_probe;
61   gulong rtcp_send_probe;
62   GSocketAddress *rtcp_send_addr;
63
64   GMutex lock;
65 };
66
67 struct _GstRtpSrcClass
68 {
69   GstBinClass parent;
70 };
71
72 GType gst_rtp_src_get_type (void);
73
74 G_END_DECLS
75 #endif /* __GST_RTP_SRC_H__ */