media: disconnect from signal handlers in unprepare()
[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., 51 Franklin St, Fifth Floor,
17  * Boston, MA 02110-1301, 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 typedef struct _GstRTSPMediaFactoryURIPrivate GstRTSPMediaFactoryURIPrivate;
42
43 /**
44  * GstRTSPMediaFactoryURI:
45  *
46  * A media factory that creates a pipeline to play and uri.
47  */
48 struct _GstRTSPMediaFactoryURI {
49   GstRTSPMediaFactory   parent;
50
51   GstRTSPMediaFactoryURIPrivate *priv;
52 };
53
54 /**
55  * GstRTSPMediaFactoryURIClass:
56  *
57  * The #GstRTSPMediaFactoryURI class structure.
58  */
59 struct _GstRTSPMediaFactoryURIClass {
60   GstRTSPMediaFactoryClass  parent_class;
61 };
62
63 GType                 gst_rtsp_media_factory_uri_get_type   (void);
64
65 /* creating the factory */
66 GstRTSPMediaFactoryURI * gst_rtsp_media_factory_uri_new     (void);
67
68 /* configuring the factory */
69 void                  gst_rtsp_media_factory_uri_set_uri  (GstRTSPMediaFactoryURI *factory,
70                                                            const gchar *uri);
71 gchar *               gst_rtsp_media_factory_uri_get_uri  (GstRTSPMediaFactoryURI *factory);
72
73 G_END_DECLS
74
75 #endif /* __GST_RTSP_MEDIA_FACTORY_URI_H__ */