~ubuntu-branches/ubuntu/quantal/gst-plugins-bad-multiverse0.10/quantal

« back to all changes in this revision

Viewing changes to gst/rtpmanager/gstrtpsession.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2007-05-03 19:52:54 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20070503195254-4dovmz251nut3yrt
Tags: 0.10.4+cvs20070502-1
* New CVS snapshot.
* debian/rules,
  debian/build-deps.in:
  + Update build dependencies.
* debian/gstreamer-plugins-bad-multiverse.install:
  + Add x264 plugin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* GStreamer
 
2
 * Copyright (C) <2007> 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_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
  GstPad        *recv_rtcp_sink;
 
47
  GstPad        *send_rtp_sink;
 
48
 
 
49
  GstPad        *recv_rtp_src;
 
50
  GstPad        *sync_src;
 
51
  GstPad        *send_rtp_src;
 
52
  GstPad        *send_rtcp_src;
 
53
 
 
54
  GstRTPSessionPrivate *priv;
 
55
};
 
56
 
 
57
struct _GstRTPSessionClass {
 
58
  GstElementClass parent_class;
 
59
 
 
60
  /* signals */
 
61
  GstCaps* (*request_pt_map) (GstRTPSession *sess, guint pt);
 
62
};
 
63
 
 
64
GType gst_rtp_session_get_type (void);
 
65
 
 
66
#endif /* __GST_RTP_SESSION_H__ */