3 * Copyright (C) 2015 Centricular Ltd
4 * @author: Edward Hervey <edward@centricular.com>
5 * @author: Jan Schmidt <jan@centricular.com>
7 * gststreams.c: GstStream and GstStreamCollection object and methods
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public
11 * License as published by the Free Software Foundation; either
12 * version 2 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Library General Public License for more details.
19 * You should have received a copy of the GNU Library General Public
20 * License along with this library; if not, write to the
21 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
22 * Boston, MA 02110-1301, USA.
30 * @short_description: Base class for stream objects
32 * A #GstStream is a high-level object defining a stream of data which is, or
33 * can be, present in a #GstPipeline.
35 * It is defined by a unique identifier, a "Stream ID". A #GstStream does not
36 * automatically imply the stream is present within a pipeline or element.
38 * Any element that can introduce new streams in a pipeline should create the
39 * appropriate #GstStream object, and can convey that object via the
40 * %GST_EVENT_STREAM_START event and/or the #GstStreamCollection.
42 * Elements that do not modify the nature of the stream can add extra information
43 * on it (such as enrich the #GstCaps, or #GstTagList). This is typically done
44 * by parsing elements.
49 #include "gst_private.h"
51 #include "gstenumtypes.h"
53 #include "gststreams.h"
55 GST_DEBUG_CATEGORY_STATIC (streams_debug);
56 #define GST_CAT_DEFAULT streams_debug
58 struct _GstStreamPrivate
66 /* stream signals and properties */
83 static GParamSpec *gst_stream_pspecs[PROP_LAST] = { 0 };
86 static guint gst_stream_signals[LAST_SIGNAL] = { 0 };
89 static void gst_stream_finalize (GObject * object);
91 static void gst_stream_set_property (GObject * object, guint prop_id,
92 const GValue * value, GParamSpec * pspec);
93 static void gst_stream_get_property (GObject * object, guint prop_id,
94 GValue * value, GParamSpec * pspec);
98 GST_DEBUG_CATEGORY_INIT (streams_debug, "streams", GST_DEBUG_BOLD, \
99 "debugging info for the stream and stream collection objects"); \
103 #define gst_stream_parent_class parent_class
104 G_DEFINE_TYPE_WITH_CODE (GstStream, gst_stream, GST_TYPE_OBJECT,
105 G_ADD_PRIVATE (GstStream) _do_init);
108 gst_stream_class_init (GstStreamClass * klass)
110 GObjectClass *gobject_class;
112 gobject_class = (GObjectClass *) klass;
114 gobject_class->set_property = gst_stream_set_property;
115 gobject_class->get_property = gst_stream_get_property;
118 * GstStream:stream-id:
120 * The unique identifier of the #GstStream. Can only be set at construction
123 g_object_class_install_property (gobject_class, PROP_STREAM_ID,
124 g_param_spec_string ("stream-id", "Stream ID",
125 "The stream ID of the stream",
127 G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
132 * The #GstStreamFlags of the #GstStream. Can only be set at construction time.
134 gst_stream_pspecs[PROP_STREAM_FLAGS] =
135 g_param_spec_flags ("stream-flags", "Stream Flags", "The stream flags",
136 GST_TYPE_STREAM_FLAGS, GST_STREAM_FLAG_NONE,
137 G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS);
138 g_object_class_install_property (gobject_class, PROP_STREAM_FLAGS,
139 gst_stream_pspecs[PROP_STREAM_FLAGS]);
142 * GstStream:stream-type:
144 * The #GstStreamType of the #GstStream. Can only be set at construction time.
146 gst_stream_pspecs[PROP_STREAM_TYPE] =
147 g_param_spec_flags ("stream-type", "Stream Type", "The type of stream",
148 GST_TYPE_STREAM_TYPE, GST_STREAM_TYPE_UNKNOWN,
149 G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS);
150 g_object_class_install_property (gobject_class, PROP_STREAM_TYPE,
151 gst_stream_pspecs[PROP_STREAM_TYPE]);
156 * The #GstCaps of the #GstStream.
158 gst_stream_pspecs[PROP_CAPS] =
159 g_param_spec_boxed ("caps", "Caps", "The caps of the stream",
160 GST_TYPE_CAPS, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
161 g_object_class_install_property (gobject_class, PROP_CAPS,
162 gst_stream_pspecs[PROP_CAPS]);
167 * The #GstTagList of the #GstStream.
169 gst_stream_pspecs[PROP_TAGS] =
170 g_param_spec_boxed ("tags", "Tags", "The tags of the stream",
171 GST_TYPE_TAG_LIST, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
172 g_object_class_install_property (gobject_class, PROP_TAGS,
173 gst_stream_pspecs[PROP_TAGS]);
175 gobject_class->finalize = gst_stream_finalize;
179 gst_stream_init (GstStream * stream)
181 stream->priv = gst_stream_get_instance_private (stream);
182 stream->priv->type = GST_STREAM_TYPE_UNKNOWN;
186 gst_stream_finalize (GObject * object)
188 GstStream *stream = GST_STREAM_CAST (object);
190 gst_mini_object_replace ((GstMiniObject **) & stream->priv->tags,
191 (GstMiniObject *) NULL);
192 gst_caps_replace (&stream->priv->caps, NULL);
193 g_free ((gchar *) stream->stream_id);
195 G_OBJECT_CLASS (parent_class)->finalize (object);
200 * @stream_id: (allow-none): the id for the new stream. If %NULL,
201 * a new one will be automatically generated
202 * @caps: (allow-none) (transfer none): the #GstCaps of the stream
203 * @type: the #GstStreamType of the stream
204 * @flags: the #GstStreamFlags of the stream
206 * Create a new #GstStream for the given @stream_id, @caps, @type
209 * Returns: (transfer full): The new #GstStream
214 gst_stream_new (const gchar * stream_id, GstCaps * caps, GstStreamType type,
215 GstStreamFlags flags)
219 stream = g_object_new (GST_TYPE_STREAM, "stream-id", stream_id, "caps", caps,
220 "stream-type", type, "stream-flags", flags, NULL);
222 /* Clear floating flag */
223 gst_object_ref_sink (stream);
229 gst_stream_set_stream_id (GstStream * stream, const gchar * stream_id)
231 g_return_if_fail (GST_IS_STREAM (stream));
233 GST_OBJECT_LOCK (stream);
234 g_assert (stream->stream_id == NULL);
236 stream->stream_id = g_strdup (stream_id);
238 /* Create a random stream_id if NULL */
239 GST_FIXME_OBJECT (stream, "Creating random stream-id, consider "
240 "implementing a deterministic way of creating a stream-id");
242 g_strdup_printf ("%08x%08x%08x%08x", g_random_int (), g_random_int (),
243 g_random_int (), g_random_int ());
246 GST_OBJECT_UNLOCK (stream);
250 * gst_stream_get_stream_id:
251 * @stream: a #GstStream
253 * Returns the stream ID of @stream.
255 * Returns: (transfer none) (nullable): the stream ID of @stream. Only valid
256 * during the lifetime of @stream.
261 gst_stream_get_stream_id (GstStream * stream)
263 g_return_val_if_fail (GST_IS_STREAM (stream), NULL);
265 return stream->stream_id;
269 * gst_stream_set_stream_flags:
270 * @stream: a #GstStream
271 * @flags: the flags to set on @stream
273 * Set the @flags for the @stream.
278 gst_stream_set_stream_flags (GstStream * stream, GstStreamFlags flags)
280 g_return_if_fail (GST_IS_STREAM (stream));
282 GST_OBJECT_LOCK (stream);
283 stream->priv->flags = flags;
284 GST_OBJECT_UNLOCK (stream);
286 g_object_notify_by_pspec (G_OBJECT (stream),
287 gst_stream_pspecs[PROP_STREAM_FLAGS]);
291 * gst_stream_get_stream_flags:
292 * @stream: a #GstStream
294 * Retrieve the current stream flags for @stream
296 * Returns: The #GstStreamFlags for @stream
301 gst_stream_get_stream_flags (GstStream * stream)
305 g_return_val_if_fail (GST_IS_STREAM (stream), GST_STREAM_FLAG_NONE);
307 GST_OBJECT_LOCK (stream);
308 res = stream->priv->flags;
309 GST_OBJECT_UNLOCK (stream);
315 * gst_stream_set_stream_type:
316 * @stream: a #GstStream
317 * @stream_type: the type to set on @stream
319 * Set the stream type of @stream
324 gst_stream_set_stream_type (GstStream * stream, GstStreamType stream_type)
326 g_return_if_fail (GST_IS_STREAM (stream));
328 GST_OBJECT_LOCK (stream);
329 stream->priv->type = stream_type;
330 GST_OBJECT_UNLOCK (stream);
332 g_object_notify_by_pspec (G_OBJECT (stream),
333 gst_stream_pspecs[PROP_STREAM_TYPE]);
337 * gst_stream_get_stream_type:
338 * @stream: a #GstStream
340 * Retrieve the stream type for @stream
342 * Returns: The #GstStreamType for @stream
347 gst_stream_get_stream_type (GstStream * stream)
351 g_return_val_if_fail (GST_IS_STREAM (stream), GST_STREAM_TYPE_UNKNOWN);
353 GST_OBJECT_LOCK (stream);
354 res = stream->priv->type;
355 GST_OBJECT_UNLOCK (stream);
361 * gst_stream_set_tags:
362 * @stream: a #GstStream
363 * @tags: (transfer none) (allow-none): a #GstTagList
365 * Set the tags for the #GstStream
370 gst_stream_set_tags (GstStream * stream, GstTagList * tags)
372 gboolean notify = FALSE;
374 g_return_if_fail (GST_IS_STREAM (stream));
376 GST_OBJECT_LOCK (stream);
377 if (stream->priv->tags == NULL || tags == NULL
378 || !gst_tag_list_is_equal (stream->priv->tags, tags)) {
379 gst_mini_object_replace ((GstMiniObject **) & stream->priv->tags,
380 (GstMiniObject *) tags);
383 GST_OBJECT_UNLOCK (stream);
386 g_object_notify_by_pspec (G_OBJECT (stream), gst_stream_pspecs[PROP_TAGS]);
390 * gst_stream_get_tags:
391 * @stream: a #GstStream
393 * Retrieve the tags for @stream, if any
395 * Returns: (transfer full) (nullable): The #GstTagList for @stream
400 gst_stream_get_tags (GstStream * stream)
402 GstTagList *res = NULL;
404 g_return_val_if_fail (GST_IS_STREAM (stream), NULL);
406 GST_OBJECT_LOCK (stream);
407 if (stream->priv->tags)
408 res = gst_tag_list_ref (stream->priv->tags);
409 GST_OBJECT_UNLOCK (stream);
415 * gst_stream_set_caps:
416 * @stream: a #GstStream
417 * @caps: (transfer none) (allow-none): a #GstCaps
419 * Set the caps for the #GstStream
424 gst_stream_set_caps (GstStream * stream, GstCaps * caps)
426 gboolean notify = FALSE;
428 g_return_if_fail (GST_IS_STREAM (stream));
430 GST_OBJECT_LOCK (stream);
431 if (stream->priv->caps == NULL || (caps
432 && !gst_caps_is_equal (stream->priv->caps, caps))) {
433 gst_caps_replace (&stream->priv->caps, caps);
436 GST_OBJECT_UNLOCK (stream);
439 g_object_notify_by_pspec (G_OBJECT (stream), gst_stream_pspecs[PROP_CAPS]);
444 * gst_stream_get_caps:
445 * @stream: a #GstStream
447 * Retrieve the caps for @stream, if any
449 * Returns: (transfer full) (nullable): The #GstCaps for @stream
454 gst_stream_get_caps (GstStream * stream)
458 g_return_val_if_fail (GST_IS_STREAM (stream), NULL);
460 GST_OBJECT_LOCK (stream);
461 if (stream->priv->caps)
462 res = gst_caps_ref (stream->priv->caps);
463 GST_OBJECT_UNLOCK (stream);
469 gst_stream_set_property (GObject * object, guint prop_id,
470 const GValue * value, GParamSpec * pspec)
474 stream = GST_STREAM_CAST (object);
478 gst_stream_set_stream_id (stream, g_value_get_string (value));
480 case PROP_STREAM_FLAGS:
481 GST_OBJECT_LOCK (stream);
482 stream->priv->flags = g_value_get_flags (value);
483 GST_OBJECT_UNLOCK (stream);
485 case PROP_STREAM_TYPE:
486 GST_OBJECT_LOCK (stream);
487 stream->priv->type = g_value_get_flags (value);
488 GST_OBJECT_UNLOCK (stream);
491 GST_OBJECT_LOCK (stream);
492 gst_mini_object_replace ((GstMiniObject **) & stream->priv->tags,
493 (GstMiniObject *) g_value_get_boxed (value));
494 GST_OBJECT_UNLOCK (stream);
497 GST_OBJECT_LOCK (stream);
498 gst_mini_object_replace ((GstMiniObject **) & stream->priv->caps,
499 (GstMiniObject *) g_value_get_boxed (value));
500 GST_OBJECT_UNLOCK (stream);
503 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
509 gst_stream_get_property (GObject * object, guint prop_id,
510 GValue * value, GParamSpec * pspec)
514 stream = GST_STREAM_CAST (object);
518 g_value_set_string (value, gst_stream_get_stream_id (stream));
520 case PROP_STREAM_FLAGS:
521 g_value_set_flags (value, gst_stream_get_stream_flags (stream));
523 case PROP_STREAM_TYPE:
524 g_value_set_flags (value, gst_stream_get_stream_type (stream));
527 g_value_take_boxed (value, gst_stream_get_tags (stream));
530 g_value_take_boxed (value, gst_stream_get_caps (stream));
533 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
539 * gst_stream_type_get_name:
540 * @stype: a #GstStreamType
542 * Get a descriptive string for a given #GstStreamType
544 * Returns: (nullable): A string describing the stream type
549 gst_stream_type_get_name (GstStreamType stype)
551 /* FIXME : Make this more flexible */
553 case GST_STREAM_TYPE_UNKNOWN:
555 case GST_STREAM_TYPE_AUDIO:
557 case GST_STREAM_TYPE_VIDEO:
559 case GST_STREAM_TYPE_CONTAINER:
561 case GST_STREAM_TYPE_TEXT: