factory-uri: add colorspace and fix pt
[platform/upstream/gstreamer.git] / gst / rtsp-server / rtsp-media-factory-uri.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
22 #include "rtsp-media-factory.h"
23
24 #ifndef __GST_RTSP_MEDIA_FACTORY_URI_H__
25 #define __GST_RTSP_MEDIA_FACTORY_URI_H__
26
27 G_BEGIN_DECLS
28
29 /* types for the media factory */
30 #define GST_TYPE_RTSP_MEDIA_FACTORY_URI              (gst_rtsp_media_factory_uri_get_type ())
31 #define GST_IS_RTSP_MEDIA_FACTORY_URI(obj)           (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_RTSP_MEDIA_FACTORY_URI))
32 #define GST_IS_RTSP_MEDIA_FACTORY_URI_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_RTSP_MEDIA_FACTORY_URI))
33 #define GST_RTSP_MEDIA_FACTORY_URI_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_RTSP_MEDIA_FACTORY_URI, GstRTSPMediaFactoryURIClass))
34 #define GST_RTSP_MEDIA_FACTORY_URI(obj)              (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_RTSP_MEDIA_FACTORY_URI, GstRTSPMediaFactoryURI))
35 #define GST_RTSP_MEDIA_FACTORY_URI_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_RTSP_MEDIA_FACTORY_URI, GstRTSPMediaFactoryURIClass))
36 #define GST_RTSP_MEDIA_FACTORY_URI_CAST(obj)         ((GstRTSPMediaFactoryURI*)(obj))
37 #define GST_RTSP_MEDIA_FACTORY_URI_CLASS_CAST(klass) ((GstRTSPMediaFactoryURIClass*)(klass))
38
39 typedef struct _GstRTSPMediaFactoryURI GstRTSPMediaFactoryURI;
40 typedef struct _GstRTSPMediaFactoryURIClass GstRTSPMediaFactoryURIClass;
41
42 /**
43  * GstRTSPMediaFactoryURI:
44  * @uri: the uri
45  *
46  * A media factory that creates a pipeline to play and uri.
47  */
48 struct _GstRTSPMediaFactoryURI {
49   GstRTSPMediaFactory   parent;
50
51   gchar *uri;
52   GstCaps *raw_vcaps;
53   GstCaps *raw_acaps;
54   GList *factories;
55 };
56
57 /**
58  * GstRTSPMediaFactoryURIClass:
59  *
60  * The #GstRTSPMediaFactoryURI class structure.
61  */
62 struct _GstRTSPMediaFactoryURIClass {
63   GstRTSPMediaFactoryClass  parent_class;
64 };
65
66 GType                 gst_rtsp_media_factory_uri_get_type   (void);
67
68 /* creating the factory */
69 GstRTSPMediaFactoryURI * gst_rtsp_media_factory_uri_new     (void);
70
71 /* configuring the factory */
72 void                  gst_rtsp_media_factory_uri_set_uri  (GstRTSPMediaFactoryURI *factory,
73                                                            const gchar *uri);
74 gchar *               gst_rtsp_media_factory_uri_get_uri  (GstRTSPMediaFactoryURI *factory);
75
76 G_END_DECLS
77
78 #endif /* __GST_RTSP_MEDIA_FACTORY_URI_H__ */