X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gst%2Fgstevent.c;h=3ba388a8b7bbd96f19a0c6eb6dc8d2dc9fe7c3db;hb=066b515985897495cae32fca5b7eeeec260c40c9;hp=3bb548039b73e214378d98d5f6eec9281f5b91c6;hpb=5acdc22001033be1310fa9085b44ab79157e6f82;p=platform%2Fupstream%2Fgstreamer.git diff --git a/gst/gstevent.c b/gst/gstevent.c index 3bb5480..3ba388a 100644 --- a/gst/gstevent.c +++ b/gst/gstevent.c @@ -36,19 +36,19 @@ * elements will use gst_pad_send_event() or gst_pad_push_event(). * The event should be unreffed with gst_event_unref() if it has not been sent. * - * Events that have been received can be parsed with their respective + * Events that have been received can be parsed with their respective * gst_event_parse_*() functions. It is valid to pass %NULL for unwanted details. * * Events are passed between elements in parallel to the data stream. Some events * are serialized with buffers, others are not. Some events only travel downstream, - * others only upstream. Some events can travel both upstream and downstream. - * + * others only upstream. Some events can travel both upstream and downstream. + * * The events are used to signal special conditions in the datastream such as * EOS (end of stream) or the start of a new stream-segment. * Events are also used to flush the pipeline of any pending data. * - * Most of the event API is used inside plugins. Applications usually only - * construct and use seek events. + * Most of the event API is used inside plugins. Applications usually only + * construct and use seek events. * To do that gst_event_new_seek() is used to create a seek event. It takes * the needed parameters to specify seeking time and mode. * @@ -72,7 +72,7 @@ * * * - * Last reviewed on 2006-09-6 (0.10.10) + * Last reviewed on 2012-03-28 (0.11.3) */ @@ -84,6 +84,7 @@ #include "gstenumtypes.h" #include "gstutils.h" #include "gstquark.h" +#include "gstvalue.h" GType _gst_event_type = 0; @@ -107,21 +108,28 @@ static GstEventQuarks event_quarks[] = { {GST_EVENT_UNKNOWN, "unknown", 0}, {GST_EVENT_FLUSH_START, "flush-start", 0}, {GST_EVENT_FLUSH_STOP, "flush-stop", 0}, - {GST_EVENT_EOS, "eos", 0}, + {GST_EVENT_STREAM_START, "stream-start", 0}, {GST_EVENT_CAPS, "caps", 0}, + {GST_EVENT_STREAM_CONFIG, "stream-config", 0}, {GST_EVENT_SEGMENT, "segment", 0}, {GST_EVENT_TAG, "tag", 0}, + {GST_EVENT_TOC, "toc", 0}, {GST_EVENT_BUFFERSIZE, "buffersize", 0}, {GST_EVENT_SINK_MESSAGE, "sink-message", 0}, + {GST_EVENT_EOS, "eos", 0}, + {GST_EVENT_SEGMENT_DONE, "segment-done", 0}, + {GST_EVENT_GAP, "gap", 0}, {GST_EVENT_QOS, "qos", 0}, {GST_EVENT_SEEK, "seek", 0}, {GST_EVENT_NAVIGATION, "navigation", 0}, {GST_EVENT_LATENCY, "latency", 0}, {GST_EVENT_STEP, "step", 0}, {GST_EVENT_RECONFIGURE, "reconfigure", 0}, + {GST_EVENT_TOC_SELECT, "toc-select", 0}, {GST_EVENT_CUSTOM_UPSTREAM, "custom-upstream", 0}, {GST_EVENT_CUSTOM_DOWNSTREAM, "custom-downstream", 0}, {GST_EVENT_CUSTOM_DOWNSTREAM_OOB, "custom-downstream-oob", 0}, + {GST_EVENT_CUSTOM_DOWNSTREAM_STICKY, "custom-downstream-sticky", 0}, {GST_EVENT_CUSTOM_BOTH, "custom-both", 0}, {GST_EVENT_CUSTOM_BOTH_OOB, "custom-both-oob", 0}, @@ -198,7 +206,7 @@ gst_event_type_get_flags (GstEventType type) { GstEventTypeFlags ret; - ret = type & ((1 << GST_EVENT_STICKY_SHIFT) - 1); + ret = type & ((1 << GST_EVENT_NUM_SHIFT) - 1); return ret; } @@ -245,6 +253,8 @@ _gst_event_copy (GstEvent * event) GST_EVENT_STRUCTURE (copy) = gst_structure_copy (s); gst_structure_set_parent_refcount (GST_EVENT_STRUCTURE (copy), ©->event.mini_object.refcount); + } else { + GST_EVENT_STRUCTURE (copy) = NULL; } return GST_EVENT_CAST (copy); } @@ -262,20 +272,6 @@ gst_event_init (GstEventImpl * event, gsize size, GstEventType type) GST_EVENT_SEQNUM (event) = gst_util_seqnum_next (); } -static GstEvent * -gst_event_new (GstEventType type) -{ - GstEventImpl *event; - - event = g_slice_new0 (GstEventImpl); - - GST_CAT_DEBUG (GST_CAT_EVENT, "creating new event %p %s %d", event, - gst_event_type_get_name (type), type); - - gst_event_init (event, sizeof (GstEventImpl), type); - - return GST_EVENT_CAST (event); -} /** * gst_event_new_custom: @@ -299,23 +295,30 @@ gst_event_new (GstEventType type) GstEvent * gst_event_new_custom (GstEventType type, GstStructure * structure) { - GstEvent *event; + GstEventImpl *event; + + event = g_slice_new0 (GstEventImpl); + + GST_CAT_DEBUG (GST_CAT_EVENT, "creating new event %p %s %d", event, + gst_event_type_get_name (type), type); - /* structure must not have a parent */ - event = gst_event_new (type); if (structure) { + /* structure must not have a parent */ if (!gst_structure_set_parent_refcount (structure, - &event->mini_object.refcount)) + &event->event.mini_object.refcount)) goto had_parent; - GST_EVENT_STRUCTURE (event) = structure; } - return event; + gst_event_init (event, sizeof (GstEventImpl), type); + + GST_EVENT_STRUCTURE (event) = structure; + + return GST_EVENT_CAST (event); /* ERRORS */ had_parent: { - gst_event_unref (event); + g_slice_free1 (GST_MINI_OBJECT_SIZE (event), event); g_warning ("structure is already owned by another object"); return NULL; } @@ -451,10 +454,6 @@ gst_event_set_seqnum (GstEvent * event, guint32 seqnum) GST_EVENT_SEQNUM (event) = seqnum; } -/* FIXME 0.11: It would be nice to have flush events - * that don't reset the running time in the sinks - */ - /** * gst_event_new_flush_start: * @@ -462,9 +461,9 @@ gst_event_set_seqnum (GstEvent * event, guint32 seqnum) * upstream and downstream and travels out-of-bounds with the dataflow. * * It marks pads as being flushing and will make them return - * #GST_FLOW_WRONG_STATE when used for data flow with gst_pad_push(), - * gst_pad_chain(), gst_pad_alloc_buffer(), gst_pad_get_range() and - * gst_pad_pull_range(). Any event (except a #GST_EVENT_FLUSH_STOP) received + * #GST_FLOW_FLUSHING when used for data flow with gst_pad_push(), + * gst_pad_chain(), gst_pad_get_range() and gst_pad_pull_range(). + * Any event (except a #GST_EVENT_FLUSH_STOP) received * on a flushing pad will return %FALSE immediately. * * Elements should unlock any blocking functions and exit their streaming @@ -478,7 +477,7 @@ gst_event_set_seqnum (GstEvent * event, guint32 seqnum) GstEvent * gst_event_new_flush_start (void) { - return gst_event_new (GST_EVENT_FLUSH_START); + return gst_event_new_custom (GST_EVENT_FLUSH_START, NULL); } /** @@ -539,7 +538,7 @@ gst_event_parse_flush_stop (GstEvent * event, gboolean * reset_time) * * Create a new EOS event. The eos event can only travel downstream * synchronized with the buffer flow. Elements that receive the EOS - * event on a pad can return #GST_FLOW_UNEXPECTED as a #GstFlowReturn + * event on a pad can return #GST_FLOW_EOS as a #GstFlowReturn * when data after the EOS event arrives. * * The EOS event will travel down to the sink elements in the pipeline @@ -556,7 +555,66 @@ gst_event_parse_flush_stop (GstEvent * event, gboolean * reset_time) GstEvent * gst_event_new_eos (void) { - return gst_event_new (GST_EVENT_EOS); + return gst_event_new_custom (GST_EVENT_EOS, NULL); +} + +/** + * gst_event_new_gap: + * @timestamp: the start time (pts) of the gap + * @duration: the duration of the gap + * + * Create a new GAP event. A gap event can be thought of as conceptually + * equivalent to a buffer to signal that there is no data for a certain + * amount of time. This is useful to signal a gap to downstream elements + * which may wait for data, such as muxers or mixers or overlays, especially + * for sparse streams such as subtitle streams. + * + * Returns: (transfer full): the new GAP event. + */ +GstEvent * +gst_event_new_gap (GstClockTime timestamp, GstClockTime duration) +{ + GstEvent *event; + + g_return_val_if_fail (GST_CLOCK_TIME_IS_VALID (timestamp), NULL); + g_return_val_if_fail (GST_CLOCK_TIME_IS_VALID (duration), NULL); + + GST_CAT_TRACE (GST_CAT_EVENT, "creating gap %" GST_TIME_FORMAT " - " + "%" GST_TIME_FORMAT " (duration: %" GST_TIME_FORMAT ")", + GST_TIME_ARGS (timestamp), GST_TIME_ARGS (timestamp + duration), + GST_TIME_ARGS (duration)); + + event = gst_event_new_custom (GST_EVENT_GAP, + gst_structure_new_id (GST_QUARK (EVENT_GAP), + GST_QUARK (TIMESTAMP), GST_TYPE_CLOCK_TIME, timestamp, + GST_QUARK (DURATION), GST_TYPE_CLOCK_TIME, duration, NULL)); + + return event; +} + +/** + * gst_event_parse_gap: + * @event: a #GstEvent of type #GST_EVENT_GAP + * @timestamp: (out) (allow-none): location where to store the + * start time (pts) of the gap, or %NULL + * @duration: (out) (allow-none): location where to store the duration of + * the gap, or %NULL + * + * Extract timestamp and duration from a new GAP event. + */ +void +gst_event_parse_gap (GstEvent * event, GstClockTime * timestamp, + GstClockTime * duration) +{ + GstStructure *structure; + + g_return_if_fail (GST_IS_EVENT (event)); + g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_GAP); + + structure = GST_EVENT_STRUCTURE (event); + gst_structure_id_get (structure, + GST_QUARK (TIMESTAMP), GST_TYPE_CLOCK_TIME, timestamp, + GST_QUARK (DURATION), GST_TYPE_CLOCK_TIME, duration, NULL); } /** @@ -610,6 +668,225 @@ gst_event_parse_caps (GstEvent * event, GstCaps ** caps) } /** + * gst_event_new_stream_config: + * @flags: the stream config flags + * + * Create a new STREAM CONFIG event. The stream config event travels + * downstream synchronized with the buffer flow and contains stream + * configuration information for the stream, such as stream-headers + * or setup-data. It is optional and should be sent after the CAPS + * event. + * + * Returns: (transfer full): the new STREAM CONFIG event. + */ +GstEvent * +gst_event_new_stream_config (GstStreamConfigFlags flags) +{ + GstEvent *event; + + GST_CAT_INFO (GST_CAT_EVENT, "creating stream info event, flags=0x%x", flags); + + event = gst_event_new_custom (GST_EVENT_STREAM_CONFIG, + gst_structure_new_id (GST_QUARK (EVENT_STREAM_CONFIG), + GST_QUARK (FLAGS), GST_TYPE_STREAM_CONFIG_FLAGS, flags, NULL)); + + return event; +} + +/** + * gst_event_parse_stream_config: + * @event: The event to parse + * @flags: (out): a pointer to a variable to store the stream config flags + * + * Get the stream config flags from @event. + */ +void +gst_event_parse_stream_config (GstEvent * event, GstStreamConfigFlags * flags) +{ + GstStructure *structure; + + g_return_if_fail (GST_IS_EVENT (event)); + g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_STREAM_CONFIG); + + structure = GST_EVENT_STRUCTURE (event); + if (G_LIKELY (flags != NULL)) { + *flags = + g_value_get_enum (gst_structure_id_get_value (structure, + GST_QUARK (FLAGS))); + } +} + +/** + * gst_event_set_stream_config_setup_data: + * @event: a stream config event + * @buf: a #GstBuffer with setup data + * + * Set setup data on the stream info event to signal out of bound setup data + * to downstream elements. Unlike stream headers, setup data contains data + * that is required to interpret the data stream, but is not valid as-is + * inside the data stream and thus can't just be prepended to or inserted + * into the data stream. + */ +void +gst_event_set_stream_config_setup_data (GstEvent * event, GstBuffer * buf) +{ + GstStructure *s; + + g_return_if_fail (GST_IS_EVENT (event)); + g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_STREAM_CONFIG); + g_return_if_fail (GST_IS_BUFFER (buf) && gst_buffer_get_size (buf) > 0); + + s = GST_EVENT_STRUCTURE (event); + gst_structure_id_set (s, GST_QUARK (SETUP_DATA), GST_TYPE_BUFFER, buf, NULL); +} + +/** + * gst_event_parse_stream_config_setup_data: + * @event: a stream config event + * @buf: (out) (transfer none): location where to store the #GstBuffer with setup data + * + * Extracts the setup data buffer from the stream info event. Will store + * %NULL in @buf if the event contains no setup data. The buffer returned + * will remain valid as long as @event remains valid. The caller should + * acquire a reference to to @buf if needed. + * + * Returns: TRUE if @event contained setup data and @buf has been set, + * otherwise FALSE. + */ +gboolean +gst_event_parse_stream_config_setup_data (GstEvent * event, GstBuffer ** buf) +{ + const GValue *val; + GstStructure *s; + + g_return_val_if_fail (GST_IS_EVENT (event), FALSE); + g_return_val_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_STREAM_CONFIG, + FALSE); + g_return_val_if_fail (buf != NULL, FALSE); + + s = GST_EVENT_STRUCTURE (event); + val = gst_structure_id_get_value (s, GST_QUARK (SETUP_DATA)); + if (val != NULL) + *buf = g_value_get_boxed (val); + else + *buf = NULL; + + return (*buf != NULL); +} + +/** + * gst_event_add_stream_config_header: + * @event: a stream config event + * @buf: a #GstBuffer with stream header data + * + * Adds a stream header to the stream info event to signal stream headers to + * to downstream elements such as multifilesink, tcpserversink etc. Stream + * headers can be and should usually be prepended to the data stream at any + * point in the stream (which requires a streamable format), e.g. to a new + * client connecting, or when starting a new file segment. stream header + * buffers will all be used together in the order they were added to the + * stream config event. Stream headers are sent as buffers at the beginning + * of the data flow in addition to the stream config event. Elements that + * care about stream headers need to make sure that they don't insert or + * interpret these header buffers twice if they interpret them. + */ +void +gst_event_add_stream_config_header (GstEvent * event, GstBuffer * buf) +{ + GstStructure *s; + GValue buf_val = { 0, }; + GValue *val; + + g_return_if_fail (GST_IS_EVENT (event)); + g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_STREAM_CONFIG); + g_return_if_fail (GST_IS_BUFFER (buf) && gst_buffer_get_size (buf) > 0); + + g_value_init (&buf_val, GST_TYPE_BUFFER); + g_value_set_boxed (&buf_val, buf); + + s = GST_EVENT_STRUCTURE (event); + val = (GValue *) gst_structure_id_get_value (s, GST_QUARK (STREAM_HEADERS)); + if (val == NULL) { + GValue new_array = { 0, }; + + g_value_init (&new_array, GST_TYPE_ARRAY); + gst_value_array_append_value (&new_array, &buf_val); + gst_structure_id_take_value (s, GST_QUARK (STREAM_HEADERS), &new_array); + } else { + gst_value_array_append_value (val, &buf_val); + } + g_value_unset (&buf_val); +} + +/** + * gst_event_get_n_stream_config_headers: + * @event: a stream config event + * + * Extract the number of stream header buffers. + * + * Returns: the number of stream header buffers attached to the stream info + * @event. + */ +guint +gst_event_get_n_stream_config_headers (GstEvent * event) +{ + const GValue *val; + GstStructure *s; + guint num = 0; + + g_return_val_if_fail (GST_IS_EVENT (event), 0); + g_return_val_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_STREAM_CONFIG, 0); + + s = GST_EVENT_STRUCTURE (event); + val = gst_structure_id_get_value (s, GST_QUARK (STREAM_HEADERS)); + + if (val != NULL) + num = gst_value_array_get_size (val); + + return num; +} + +/** + * gst_event_parse_nth_stream_config_header: + * @event: a stream config event + * @index: number of the stream header to retrieve + * @buf: (out) (transfer none): location where to store the n-th stream + * header #GstBuffer + * + * Retrieves the n-th stream header buffer attached to the stream config + * event and stores it in @buf. Will store %NULL in @buf if there is no such + * stream header. + * + * Returns: TRUE if @event contained a stream header at @index and @buf has + * been set, otherwise FALSE. + */ +gboolean +gst_event_parse_nth_stream_config_header (GstEvent * event, guint index, + GstBuffer ** buf) +{ + const GValue *val, *buf_val; + GstStructure *s; + GstBuffer *ret = NULL; + + g_return_val_if_fail (GST_IS_EVENT (event), FALSE); + g_return_val_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_STREAM_CONFIG, + FALSE); + g_return_val_if_fail (buf != NULL, FALSE); + + s = GST_EVENT_STRUCTURE (event); + val = gst_structure_id_get_value (s, GST_QUARK (STREAM_HEADERS)); + + if (val != NULL) { + buf_val = gst_value_array_get_value (val, index); + if (buf_val != NULL) + ret = g_value_get_boxed (buf_val); + } + + *buf = ret; + return (ret != NULL); +} + +/** * gst_event_new_segment: * @segment: (transfer none): a #GstSegment * @@ -653,6 +930,9 @@ gst_event_new_segment (const GstSegment * segment) GstEvent *event; g_return_val_if_fail (segment != NULL, NULL); + g_return_val_if_fail (segment->rate != 0.0, NULL); + g_return_val_if_fail (segment->applied_rate != 0.0, NULL); + g_return_val_if_fail (segment->format != GST_FORMAT_UNDEFINED, NULL); GST_CAT_INFO (GST_CAT_EVENT, "creating segment event %" GST_SEGMENT_FORMAT, segment); @@ -712,19 +992,30 @@ gst_event_copy_segment (GstEvent * event, GstSegment * segment) /** * gst_event_new_tag: + * @name: (transfer none): the name of the event * @taglist: (transfer full): metadata list. The event will take ownership * of the taglist. * * Generates a metadata tag event from the given @taglist. * + * Since the TAG event has the %GST_EVENT_TYPE_STICKY_MULTI flag set, the + * @name will be used to keep track of multiple tag events. + * * Returns: (transfer full): a new #GstEvent */ GstEvent * -gst_event_new_tag (GstTagList * taglist) +gst_event_new_tag (const gchar * name, GstTagList * taglist) { + GstStructure *s; + GValue val = G_VALUE_INIT; + g_return_val_if_fail (taglist != NULL, NULL); - return gst_event_new_custom (GST_EVENT_TAG, (GstStructure *) taglist); + s = gst_structure_new_empty (name); + g_value_init (&val, GST_TYPE_TAG_LIST); + g_value_take_boxed (&val, taglist); + gst_structure_id_take_value (s, GST_QUARK (TAGLIST), &val); + return gst_event_new_custom (GST_EVENT_TAG, s); } /** @@ -740,11 +1031,16 @@ gst_event_new_tag (GstTagList * taglist) void gst_event_parse_tag (GstEvent * event, GstTagList ** taglist) { + const GValue *val; + g_return_if_fail (GST_IS_EVENT (event)); g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_TAG); + val = gst_structure_id_get_value (GST_EVENT_STRUCTURE (event), + GST_QUARK (TAGLIST)); + if (taglist) - *taglist = (GstTagList *) GST_EVENT_STRUCTURE (event); + *taglist = (GstTagList *) g_value_get_boxed (val); } /* buffersize event */ @@ -972,13 +1268,13 @@ gst_event_parse_qos (GstEvent * event, GstQOSType * type, * from the newly configured start position. * * For negative rates, playback will start from the newly configured stop - * position (if any). If the stop position if updated, it must be different from - * -1 for negative rates. + * position (if any). If the stop position is updated, it must be different from + * -1 (#GST_CLOCK_TIME_NONE) for negative rates. * * It is not possible to seek relative to the current playback position, to do * this, PAUSE the pipeline, query the current playback position with * #GST_QUERY_POSITION and update the playback segment current position with a - * #GST_SEEK_TYPE_SET to the desired position. + * #GST_SEEK_TYPE_SET to the desired position. * * Returns: (transfer full): a new seek event. */ @@ -1259,19 +1555,22 @@ gst_event_new_reconfigure (void) /** * gst_event_new_sink_message: + * @name: a name for the event * @msg: (transfer none): the #GstMessage to be posted * * Create a new sink-message event. The purpose of the sink-message event is * to instruct a sink to post the message contained in the event synchronized * with the stream. * + * @name is used to store multiple sticky events on one pad. + * * Returns: (transfer full): a new #GstEvent * * Since: 0.10.26 */ /* FIXME 0.11: take ownership of msg for consistency? */ GstEvent * -gst_event_new_sink_message (GstMessage * msg) +gst_event_new_sink_message (const gchar * name, GstMessage * msg) { GstEvent *event; GstStructure *structure; @@ -1280,7 +1579,7 @@ gst_event_new_sink_message (GstMessage * msg) GST_CAT_INFO (GST_CAT_EVENT, "creating sink-message event"); - structure = gst_structure_new_id (GST_QUARK (EVENT_SINK_MESSAGE), + structure = gst_structure_new_id (g_quark_from_string (name), GST_QUARK (MESSAGE), GST_TYPE_MESSAGE, msg, NULL); event = gst_event_new_custom (GST_EVENT_SINK_MESSAGE, structure); @@ -1310,3 +1609,135 @@ gst_event_parse_sink_message (GstEvent * event, GstMessage ** msg) GST_MESSAGE (g_value_dup_boxed (gst_structure_id_get_value (structure, GST_QUARK (MESSAGE)))); } + +/** + * gst_event_new_stream_start + * + * Create a new STREAM_START event. The stream start event can only + * travel downstream synchronized with the buffer flow. It is expected + * to be the first event that is sent for a new stream. + * + * Source elements, demuxers and other elements that create new streams + * are supposed to send this event as the first event of a new stream. It + * should not be send after a flushing seek or in similar situations + * and is used to mark the beginning of a new logical stream. Elements + * combining multiple streams must ensure that this event is only forwarded + * downstream once and not for every single input stream. + * + * Returns: (transfer full): the new STREAM_START event. + */ +GstEvent * +gst_event_new_stream_start (void) +{ + return gst_event_new_custom (GST_EVENT_STREAM_START, NULL); +} + +/** + * gst_event_new_toc: + * @name: a name for the event + * @toc: #GstToc structure. + * @updated: whether @toc was updated or not. + * + * Generate a TOC event from the given @toc. The purpose of the TOC event is to + * inform elements that some kind of the TOC was found. + * + * Returns: a new #GstEvent. + * + * Since: 0.10.37 + */ +GstEvent * +gst_event_new_toc (GstToc * toc, gboolean updated) +{ + GstStructure *toc_struct; + + g_return_val_if_fail (toc != NULL, NULL); + + GST_CAT_INFO (GST_CAT_EVENT, "creating toc event"); + + toc_struct = __gst_toc_to_structure (toc); + + if (G_LIKELY (toc_struct != NULL)) { + __gst_toc_structure_set_updated (toc_struct, updated); + return gst_event_new_custom (GST_EVENT_TOC, toc_struct); + } else + return NULL; +} + +/** + * gst_event_parse_toc: + * @event: a TOC event. + * @toc: (out): pointer to #GstToc structure. + * @updated: (out): pointer to store TOC updated flag. + * + * Parse a TOC @event and store the results in the given @toc and @updated locations. + * + * Since: 0.10.37 + */ +void +gst_event_parse_toc (GstEvent * event, GstToc ** toc, gboolean * updated) +{ + const GstStructure *structure; + + g_return_if_fail (event != NULL); + g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_TOC); + g_return_if_fail (toc != NULL); + + structure = gst_event_get_structure (event); + *toc = __gst_toc_from_structure (structure); + + if (updated != NULL) + *updated = __gst_toc_structure_get_updated (structure); +} + +/** + * gst_event_new_toc_select: + * @uid: UID in the TOC to start playback from. + * + * Generate a TOC select event with the given @uid. The purpose of the + * TOC select event is to start playback based on the TOC's entry with the + * given @uid. + * + * Returns: a new #GstEvent. + * + * Since: 0.10.37 + */ +GstEvent * +gst_event_new_toc_select (const gchar * uid) +{ + GstStructure *structure; + + g_return_val_if_fail (uid != NULL, NULL); + + GST_CAT_INFO (GST_CAT_EVENT, "creating toc select event for UID: %s", uid); + + structure = gst_structure_new_id (GST_QUARK (EVENT_TOC_SELECT), + GST_QUARK (UID), G_TYPE_STRING, uid, NULL); + + return gst_event_new_custom (GST_EVENT_TOC_SELECT, structure); +} + +/** + * gst_event_parse_toc_select: + * @event: a TOC select event. + * @uid: (out): storage for the selection UID. + * + * Parse a TOC select @event and store the results in the given @uid location. + * + * Since: 0.10.37 + */ +void +gst_event_parse_toc_select (GstEvent * event, gchar ** uid) +{ + const GstStructure *structure; + const GValue *val; + + g_return_if_fail (event != NULL); + g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_TOC_SELECT); + + structure = gst_event_get_structure (event); + val = gst_structure_id_get_value (structure, GST_QUARK (UID)); + + if (uid != NULL) + *uid = g_strdup (g_value_get_string (val)); + +}