Allow setting a custom media factory for a server
[platform/upstream/gstreamer.git] / gst / rtsp-server / rtsp-media-factory.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 <gst/rtsp/gstrtspurl.h>
23
24 #include "rtsp-media.h"
25
26 #ifndef __GST_RTSP_MEDIA_FACTORY_H__
27 #define __GST_RTSP_MEDIA_FACTORY_H__
28
29 G_BEGIN_DECLS
30
31 #define GST_TYPE_RTSP_MEDIA_FACTORY              (gst_rtsp_media_get_type ())
32 #define GST_IS_RTSP_MEDIA_FACTORY(obj)           (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_RTSP_MEDIA_FACTORY))
33 #define GST_IS_RTSP_MEDIA_FACTORY_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_RTSP_MEDIA_FACTORY))
34 #define GST_RTSP_MEDIA_FACTORY_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_RTSP_MEDIA_FACTORY, GstRTSPMediaFactoryClass))
35 #define GST_RTSP_MEDIA_FACTORY(obj)              (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_RTSP_MEDIA_FACTORY, GstRTSPMediaFactory))
36 #define GST_RTSP_MEDIA_FACTORY_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_RTSP_MEDIA_FACTORY, GstRTSPMediaFactoryClass))
37 #define GST_RTSP_MEDIA_FACTORY_CAST(obj)         ((GstRTSPMediaFactory*)(obj))
38 #define GST_RTSP_MEDIA_FACTORY_CLASS_CAST(klass) ((GstRTSPMediaFactoryClass*)(klass))
39
40 typedef struct _GstRTSPMediaFactory GstRTSPMediaFactory;
41 typedef struct _GstRTSPMediaFactoryClass GstRTSPMediaFactoryClass;
42
43 /**
44  * GstRTSPMediaFactory:
45  *
46  * Creates a #GstRTSPMedia object for a given url.
47  */
48 struct _GstRTSPMediaFactory {
49   GObject       parent;
50 };
51
52 struct _GstRTSPMediaFactoryClass {
53   GObjectClass  parent_class;
54
55   GstRTSPMedia * (*create_media)  (GstRTSPMediaFactory *factory, const gchar *url);
56 };
57
58 GType                 gst_rtsp_media_factory_get_type     (void);
59
60 /* creating a factory */
61 GstRTSPMediaFactory * gst_rtsp_media_factory_new          (void);
62
63 /* creating a media */
64 GstRTSPMedia *        gst_rtsp_media_factory_create       (GstRTSPMediaFactory *factory, const gchar *url);
65
66
67 /* managing media GTypes to a path */
68 void                  gst_rtsp_media_factory_add          (GstRTSPMediaFactory *factory, const gchar *path,
69                                                            GType type);
70 void                  gst_rtsp_media_factory_remove       (GstRTSPMediaFactory *factory, const gchar *path,
71                                                            GType type);
72
73 G_END_DECLS
74
75 #endif /* __GST_RTSP_MEDIA_FACTORY_H__ */