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., 51 Franklin St, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
21 #include <gst/rtsp/gstrtsprange.h>
22 #include <gst/rtsp/gstrtspurl.h>
23 #include <gst/net/gstnet.h>
25 #ifndef __GST_RTSP_MEDIA_H__
26 #define __GST_RTSP_MEDIA_H__
30 /* types for the media */
31 #define GST_TYPE_RTSP_MEDIA (gst_rtsp_media_get_type ())
32 #define GST_IS_RTSP_MEDIA(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_RTSP_MEDIA))
33 #define GST_IS_RTSP_MEDIA_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_RTSP_MEDIA))
34 #define GST_RTSP_MEDIA_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_RTSP_MEDIA, GstRTSPMediaClass))
35 #define GST_RTSP_MEDIA(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_RTSP_MEDIA, GstRTSPMedia))
36 #define GST_RTSP_MEDIA_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_RTSP_MEDIA, GstRTSPMediaClass))
37 #define GST_RTSP_MEDIA_CAST(obj) ((GstRTSPMedia*)(obj))
38 #define GST_RTSP_MEDIA_CLASS_CAST(klass) ((GstRTSPMediaClass*)(klass))
40 typedef struct _GstRTSPMedia GstRTSPMedia;
41 typedef struct _GstRTSPMediaClass GstRTSPMediaClass;
42 typedef struct _GstRTSPMediaPrivate GstRTSPMediaPrivate;
44 #include "rtsp-stream.h"
45 #include "rtsp-thread-pool.h"
46 #include "rtsp-permissions.h"
47 #include "rtsp-address-pool.h"
51 * @GST_RTSP_MEDIA_STATUS_UNPREPARED: media pipeline not prerolled
52 * @GST_RTSP_MEDIA_STATUS_UNPREPARING: media pipeline is busy doing a clean
54 * @GST_RTSP_MEDIA_STATUS_PREPARING: media pipeline is prerolling
55 * @GST_RTSP_MEDIA_STATUS_PREPARED: media pipeline is prerolled
56 * @GST_RTSP_MEDIA_STATUS_ERROR: media pipeline is in error
58 * The state of the media pipeline.
61 GST_RTSP_MEDIA_STATUS_UNPREPARED = 0,
62 GST_RTSP_MEDIA_STATUS_UNPREPARING = 1,
63 GST_RTSP_MEDIA_STATUS_PREPARING = 2,
64 GST_RTSP_MEDIA_STATUS_PREPARED = 3,
65 GST_RTSP_MEDIA_STATUS_ERROR = 4
71 * A class that contains the GStreamer element along with a list of
72 * #GstRTSPStream objects that can produce data.
74 * This object is usually created from a #GstRTSPMediaFactory.
76 struct _GstRTSPMedia {
80 GstRTSPMediaPrivate *priv;
85 * @handle_message: handle a message
86 * @unprepare: the default implementation sets the pipeline's state
87 * to GST_STATE_NULL and removes all elements.
88 * @convert_range: convert a range to the given unit
89 * @query_position: query the current posision in the pipeline
90 * @query_stop: query when playback will stop
92 * The RTSP media class
94 struct _GstRTSPMediaClass {
95 GObjectClass parent_class;
98 gboolean (*handle_message) (GstRTSPMedia *media, GstMessage *message);
99 gboolean (*unprepare) (GstRTSPMedia *media);
100 gboolean (*convert_range) (GstRTSPMedia *media, GstRTSPTimeRange *range,
101 GstRTSPRangeUnit unit);
102 gboolean (*query_position) (GstRTSPMedia *media, gint64 *position);
103 gboolean (*query_stop) (GstRTSPMedia *media, gint64 *stop);
106 void (*new_stream) (GstRTSPMedia *media, GstRTSPStream * stream);
107 void (*removed_stream) (GstRTSPMedia *media, GstRTSPStream * stream);
109 void (*prepared) (GstRTSPMedia *media);
110 void (*unprepared) (GstRTSPMedia *media);
112 void (*new_state) (GstRTSPMedia *media, GstState state);
115 GType gst_rtsp_media_get_type (void);
117 /* creating the media */
118 GstRTSPMedia * gst_rtsp_media_new (GstElement *element);
119 GstElement * gst_rtsp_media_get_element (GstRTSPMedia *media);
121 void gst_rtsp_media_take_pipeline (GstRTSPMedia *media, GstPipeline *pipeline);
123 GstRTSPMediaStatus gst_rtsp_media_get_status (GstRTSPMedia *media);
125 void gst_rtsp_media_set_permissions (GstRTSPMedia *media,
126 GstRTSPPermissions *permissions);
127 GstRTSPPermissions * gst_rtsp_media_get_permissions (GstRTSPMedia *media);
129 void gst_rtsp_media_set_shared (GstRTSPMedia *media, gboolean shared);
130 gboolean gst_rtsp_media_is_shared (GstRTSPMedia *media);
132 void gst_rtsp_media_set_reusable (GstRTSPMedia *media, gboolean reusable);
133 gboolean gst_rtsp_media_is_reusable (GstRTSPMedia *media);
135 void gst_rtsp_media_set_protocols (GstRTSPMedia *media, GstRTSPLowerTrans protocols);
136 GstRTSPLowerTrans gst_rtsp_media_get_protocols (GstRTSPMedia *media);
138 void gst_rtsp_media_set_eos_shutdown (GstRTSPMedia *media, gboolean eos_shutdown);
139 gboolean gst_rtsp_media_is_eos_shutdown (GstRTSPMedia *media);
141 void gst_rtsp_media_set_address_pool (GstRTSPMedia *media, GstRTSPAddressPool *pool);
142 GstRTSPAddressPool * gst_rtsp_media_get_address_pool (GstRTSPMedia *media);
144 void gst_rtsp_media_set_buffer_size (GstRTSPMedia *media, guint size);
145 guint gst_rtsp_media_get_buffer_size (GstRTSPMedia *media);
147 void gst_rtsp_media_use_time_provider (GstRTSPMedia *media, gboolean time_provider);
148 gboolean gst_rtsp_media_is_time_provider (GstRTSPMedia *media);
149 GstNetTimeProvider * gst_rtsp_media_get_time_provider (GstRTSPMedia *media,
150 const gchar *address, guint16 port);
152 /* prepare the media for playback */
153 gboolean gst_rtsp_media_prepare (GstRTSPMedia *media, GstRTSPThread *thread);
154 gboolean gst_rtsp_media_unprepare (GstRTSPMedia *media);
156 /* creating streams */
157 void gst_rtsp_media_collect_streams (GstRTSPMedia *media);
158 GstRTSPStream * gst_rtsp_media_create_stream (GstRTSPMedia *media,
159 GstElement *payloader,
162 /* dealing with the media */
163 GstClock * gst_rtsp_media_get_clock (GstRTSPMedia *media);
164 GstClockTime gst_rtsp_media_get_base_time (GstRTSPMedia *media);
166 guint gst_rtsp_media_n_streams (GstRTSPMedia *media);
167 GstRTSPStream * gst_rtsp_media_get_stream (GstRTSPMedia *media, guint idx);
168 GstRTSPStream * gst_rtsp_media_find_stream (GstRTSPMedia *media, const gchar * control);
170 gboolean gst_rtsp_media_seek (GstRTSPMedia *media, GstRTSPTimeRange *range);
171 gchar * gst_rtsp_media_get_range_string (GstRTSPMedia *media,
173 GstRTSPRangeUnit unit);
175 gboolean gst_rtsp_media_set_state (GstRTSPMedia *media, GstState state,
176 GPtrArray *transports);
177 void gst_rtsp_media_set_pipeline_state (GstRTSPMedia * media,
182 #endif /* __GST_RTSP_MEDIA_H__ */