Make the server handle arbitrary pipelines
[platform/upstream/gstreamer.git] / gst / rtsp-server / rtsp-media.h
1 /* GStreamer
2  * Copyright (C) 2008 Wim Taymans <wim.taymans at 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 #include <gst/gst.h>
21 #include <gst/rtsp/gstrtspurl.h>
22
23 #ifndef __GST_RTSP_MEDIA_H__
24 #define __GST_RTSP_MEDIA_H__
25
26 G_BEGIN_DECLS
27
28 /* types for the media bin */
29 #define GST_TYPE_RTSP_MEDIA_BIN              (gst_rtsp_media_bin_get_type ())
30 #define GST_IS_RTSP_MEDIA_BIN(obj)           (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_RTSP_MEDIA_BIN))
31 #define GST_IS_RTSP_MEDIA_BIN_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_RTSP_MEDIA_BIN))
32 #define GST_RTSP_MEDIA_BIN_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_RTSP_MEDIA_BIN, GstRTSPMediaBinClass))
33 #define GST_RTSP_MEDIA_BIN(obj)              (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_RTSP_MEDIA_BIN, GstRTSPMediaBin))
34 #define GST_RTSP_MEDIA_BIN_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_RTSP_MEDIA_BIN, GstRTSPMediaBinClass))
35 #define GST_RTSP_MEDIA_BIN_CAST(obj)         ((GstRTSPMediaBin*)(obj))
36 #define GST_RTSP_MEDIA_BIN_CLASS_CAST(klass) ((GstRTSPMediaBinClass*)(klass))
37
38 typedef struct _GstRTSPMediaStream GstRTSPMediaStream;
39 typedef struct _GstRTSPMediaBin GstRTSPMediaBin;
40 typedef struct _GstRTSPMediaBinClass GstRTSPMediaBinClass;
41
42 /**
43  * GstRTSPMediaStream:
44  *
45  * @idx: the stream index
46  * @element: the toplevel element
47  * @srcpad: the srcpad of the stream
48  * @payloader: the payloader of the formattt
49  * @caps_sig: the signal id for detecting caps
50  * @caps: the caps of the stream
51  *
52  * The definition of a media stream. The streams are identified by @id.
53  */
54 struct _GstRTSPMediaStream {
55   GstRTSPMediaBin *mediabin;
56
57   guint       idx;
58
59   GstElement *element;
60   GstPad     *srcpad;
61   GstElement *payloader;
62   gulong      caps_sig;
63   GstCaps    *caps;
64 };
65
66 /**
67  * GstRTSPMediaBin:
68  * @media: the owner #GstRTSPMedia
69  *
70  * A class that contains the elements to handle the media
71  * provided by @media.
72  */
73 struct _GstRTSPMediaBin {
74   GObject       parent;
75
76   GstElement   *element;
77   GArray       *streams;
78 };
79
80 struct _GstRTSPMediaBinClass {
81   GObjectClass  parent_class;
82 };
83
84 GType                 gst_rtsp_media_bin_get_type         (void);
85
86 /* dealing with the media bin */
87 guint                 gst_rtsp_media_bin_n_streams        (GstRTSPMediaBin *bin);
88 GstRTSPMediaStream *  gst_rtsp_media_bin_get_stream       (GstRTSPMediaBin *bin, guint idx);
89
90 G_END_DECLS
91
92 #endif /* __GST_RTSP_MEDIA_H__ */