2 * Copyright (C) 2008 Wim Taymans <wim.taymans at gmail.com>
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.
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.
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.
22 #include "rtsp-media-factory.h"
24 #ifndef __GST_RTSP_MEDIA_FACTORY_URI_H__
25 #define __GST_RTSP_MEDIA_FACTORY_URI_H__
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))
39 typedef struct _GstRTSPMediaFactoryURI GstRTSPMediaFactoryURI;
40 typedef struct _GstRTSPMediaFactoryURIClass GstRTSPMediaFactoryURIClass;
43 * GstRTSPMediaFactoryURI:
46 * A media factory that creates a pipeline to play and uri.
48 struct _GstRTSPMediaFactoryURI {
49 GstRTSPMediaFactory parent;
62 * GstRTSPMediaFactoryURIClass:
64 * The #GstRTSPMediaFactoryURI class structure.
66 struct _GstRTSPMediaFactoryURIClass {
67 GstRTSPMediaFactoryClass parent_class;
70 GType gst_rtsp_media_factory_uri_get_type (void);
72 /* creating the factory */
73 GstRTSPMediaFactoryURI * gst_rtsp_media_factory_uri_new (void);
75 /* configuring the factory */
76 void gst_rtsp_media_factory_uri_set_uri (GstRTSPMediaFactoryURI *factory,
78 gchar * gst_rtsp_media_factory_uri_get_uri (GstRTSPMediaFactoryURI *factory);
82 #endif /* __GST_RTSP_MEDIA_FACTORY_URI_H__ */