rtpmux: no need to ref pad in _chain()
[platform/upstream/gstreamer.git] / gst / rtpmanager / gstrtpmux.h
1 /* RTP muxer element for GStreamer
2  *
3  * gstrtpmux.h:
4  *
5  * Copyright (C) <2007> Nokia Corporation.
6  *   Contact: Zeeshan Ali <zeeshan.ali@nokia.com>
7  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
8  *               2000,2005 Wim Taymans <wim@fluendo.com>
9  *
10  * This library is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Library General Public
12  * License as published by the Free Software Foundation; either
13  * version 2 of the License, or (at your option) any later version.
14  *
15  * This library is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * Library General Public License for more details.
19  *
20  * You should have received a copy of the GNU Library General Public
21  * License along with this library; if not, write to the
22  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23  * Boston, MA 02111-1307, USA.
24  */
25
26 #ifndef __GST_RTP_MUX_H__
27 #define __GST_RTP_MUX_H__
28
29 #include <gst/gst.h>
30
31 G_BEGIN_DECLS
32 #define GST_TYPE_RTP_MUX (gst_rtp_mux_get_type())
33 #define GST_RTP_MUX(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_RTP_MUX, GstRTPMux))
34 #define GST_RTP_MUX_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_RTP_MUX, GstRTPMux))
35 #define GST_RTP_MUX_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_RTP_MUX, GstRTPMuxClass))
36 #define GST_IS_RTP_MUX(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_RTP_MUX))
37 #define GST_IS_RTP_MUX_CLASS(obj) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_RTP_MUX))
38 typedef struct _GstRTPMux GstRTPMux;
39 typedef struct _GstRTPMuxClass GstRTPMuxClass;
40
41
42 typedef struct
43 {
44   gboolean have_clock_base;
45   guint clock_base;
46
47   GstCaps *out_caps;
48
49   GstSegment segment;
50
51   gboolean priority;
52 } GstRTPMuxPadPrivate;
53
54
55 /**
56  * GstRTPMux:
57  *
58  * The opaque #GstRTPMux structure.
59  */
60 struct _GstRTPMux
61 {
62   GstElement element;
63
64   /* pad */
65   GstPad *srcpad;
66
67   guint32 ts_base;
68   guint16 seqnum_base;
69
70   gint32 ts_offset;
71   gint16 seqnum_offset;
72   guint16 seqnum;               /* protected by object lock */
73   guint ssrc;
74   guint current_ssrc;
75
76   gboolean segment_pending;
77 };
78
79 struct _GstRTPMuxClass
80 {
81   GstElementClass parent_class;
82
83   gboolean (*accept_buffer_locked) (GstRTPMux *rtp_mux,
84       GstRTPMuxPadPrivate * padpriv, GstBuffer * buffer);
85 };
86
87
88 GType gst_rtp_mux_get_type (void);
89 gboolean gst_rtp_mux_plugin_init (GstPlugin * plugin);
90
91 G_END_DECLS
92 #endif /* __GST_RTP_MUX_H__ */