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 gchar *multi_iface; 54 GstCaps *caps; 55 56 /* Internal elements */ 57 GstElement *rtpbin; 58 GstElement *rtp_src; 59 GstElement *rtcp_src; 60 GstElement *rtcp_sink; 61 62 gulong rtcp_recv_probe; 63 gulong rtcp_send_probe; 64 GSocketAddress *rtcp_send_addr; 65 66 GMutex lock; 67 }; 68 69 struct _GstRtpSrcClass 70 { 71 GstBinClass parent; 72 }; 73 74 GType gst_rtp_src_get_type (void); 75 GST_ELEMENT_REGISTER_DECLARE (rtpsrc); 76 77 G_END_DECLS 78 #endif /* __GST_RTP_SRC_H__ */ 79