~oah-dev/oah/gst-plugins-bad

« back to all changes in this revision

Viewing changes to gst/rtpmanager/gstrtpsession.h

  • Committer: Haakon Sporsheim
  • Date: 2009-03-12 13:52:03 UTC
  • Revision ID: haakon.sporsheim@tandberg.com-20090312135203-i5k294hgkushb0mt
Initial import of git repository: git://anongit.freedesktop.org/gstreamer/gst-plugins-bad (tag: RELEASE-0_10_10)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* GStreamer
 
2
 * Copyright (C) <2007> Wim Taymans <wim.taymans@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., 59 Temple Place - Suite 330,
 
17
 * Boston, MA 02111-1307, USA.
 
18
 */
 
19
 
 
20
#ifndef __GST_RTP_SESSION_H__
 
21
#define __GST_RTP_SESSION_H__
 
22
 
 
23
#include <gst/gst.h>
 
24
 
 
25
#define GST_TYPE_RTP_SESSION \
 
26
  (gst_rtp_session_get_type())
 
27
#define GST_RTP_SESSION(obj) \
 
28
  (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_RTP_SESSION,GstRtpSession))
 
29
#define GST_RTP_SESSION_CLASS(klass) \
 
30
  (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_RTP_SESSION,GstRtpSessionClass))
 
31
#define GST_IS_RTP_SESSION(obj) \
 
32
  (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_RTP_SESSION))
 
33
#define GST_IS_RTP_SESSION_CLASS(klass) \
 
34
  (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_RTP_SESSION))
 
35
#define GST_RTP_SESSION_CAST(obj) ((GstRtpSession *)(obj))
 
36
 
 
37
typedef struct _GstRtpSession GstRtpSession;
 
38
typedef struct _GstRtpSessionClass GstRtpSessionClass;
 
39
typedef struct _GstRtpSessionPrivate GstRtpSessionPrivate;
 
40
 
 
41
struct _GstRtpSession {
 
42
  GstElement     element;
 
43
 
 
44
  /*< private >*/
 
45
  GstPad        *recv_rtp_sink;
 
46
  GstSegment     recv_rtp_seg;
 
47
  GstPad        *recv_rtcp_sink;
 
48
  GstPad        *send_rtp_sink;
 
49
  GstSegment     send_rtp_seg;
 
50
 
 
51
  GstPad        *recv_rtp_src;
 
52
  GstPad        *sync_src;
 
53
  GstPad        *send_rtp_src;
 
54
  GstPad        *send_rtcp_src;
 
55
 
 
56
  GstRtpSessionPrivate *priv;
 
57
};
 
58
 
 
59
struct _GstRtpSessionClass {
 
60
  GstElementClass parent_class;
 
61
 
 
62
  /* signals */
 
63
  GstCaps* (*request_pt_map) (GstRtpSession *sess, guint pt);
 
64
  void     (*clear_pt_map)   (GstRtpSession *sess);
 
65
 
 
66
  void     (*on_new_ssrc)       (GstRtpSession *sess, guint32 ssrc);
 
67
  void     (*on_ssrc_collision) (GstRtpSession *sess, guint32 ssrc);
 
68
  void     (*on_ssrc_validated) (GstRtpSession *sess, guint32 ssrc);
 
69
  void     (*on_ssrc_active)    (GstRtpSession *sess, guint32 ssrc);
 
70
  void     (*on_ssrc_sdes)      (GstRtpSession *sess, guint32 ssrc);
 
71
  void     (*on_bye_ssrc)       (GstRtpSession *sess, guint32 ssrc);
 
72
  void     (*on_bye_timeout)    (GstRtpSession *sess, guint32 ssrc);
 
73
  void     (*on_timeout)        (GstRtpSession *sess, guint32 ssrc);
 
74
  void     (*on_sender_timeout) (GstRtpSession *sess, guint32 ssrc);
 
75
};
 
76
 
 
77
GType gst_rtp_session_get_type (void);
 
78
 
 
79
void gst_rtp_session_set_ssrc (GstRtpSession *sess, guint32 ssrc);
 
80
 
 
81
#endif /* __GST_RTP_SESSION_H__ */