2012-03-14 16:01:51 +00:00
|
|
|
/* GStreamer
|
|
|
|
* (c) 2010, 2012 Alexander Saprykin <xelfium@gmail.com>
|
|
|
|
*
|
|
|
|
* gsttoc.c: GstToc initialization and parsing/creation
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SECTION:gsttoc
|
|
|
|
* @short_description: Generic table of contents support
|
2012-07-03 16:45:05 +00:00
|
|
|
* @see_also: #GstStructure, #GstEvent, #GstMessage, #GstQuery
|
2012-03-14 16:01:51 +00:00
|
|
|
*
|
|
|
|
* #GstToc functions are used to create/free #GstToc and #GstTocEntry structures.
|
|
|
|
* Also they are used to convert #GstToc into #GstStructure and vice versa.
|
|
|
|
*
|
|
|
|
* #GstToc lets you to inform other elements in pipeline or application that playing
|
|
|
|
* source has some kind of table of contents (TOC). These may be chapters, editions,
|
|
|
|
* angles or other types. For example: DVD chapters, Matroska chapters or cue sheet
|
|
|
|
* TOC. Such TOC will be useful for applications to display instead of just a
|
|
|
|
* playlist.
|
|
|
|
*
|
|
|
|
* Using TOC is very easy. Firstly, create #GstToc structure which represents root
|
|
|
|
* contents of the source. You can also attach TOC-specific tags to it. Then fill
|
|
|
|
* it with #GstTocEntry entries by appending them to #GstToc.entries #GstTocEntry.subentries
|
|
|
|
* lists. You should use GST_TOC_ENTRY_TYPE_CHAPTER for generic TOC entry and
|
|
|
|
* GST_TOC_ENTRY_TYPE_EDITION for the entries which are considered to be alternatives
|
|
|
|
* (like DVD angles, Matroska editions and so on).
|
|
|
|
*
|
|
|
|
* Note that root level of the TOC can contain only either editions or chapters. You
|
|
|
|
* should not mix them together at the same level. Otherwise you will get serialization
|
|
|
|
* /deserialization errors. Make sure that no one of the entries has negative start and
|
|
|
|
* stop values.
|
|
|
|
*
|
|
|
|
* Please, use #GstToc.info and #GstTocEntry.info fields in that way: create a #GstStructure,
|
|
|
|
* put all info related to your element there and put this structure into the info field under
|
|
|
|
* the name of your element. Some fields in the info structure can be used for internal purposes,
|
|
|
|
* so you should use it in the way described above to not to overwrite already existent fields.
|
|
|
|
*
|
|
|
|
* Use gst_event_new_toc() to create a new TOC #GstEvent, and gst_event_parse_toc() to
|
|
|
|
* parse received TOC event. Use gst_event_new_toc_select() to create a new TOC select #GstEvent,
|
|
|
|
* and gst_event_parse_toc_select() to parse received TOC select event. The same rule for
|
|
|
|
* the #GstMessage: gst_message_new_toc() to create new TOC #GstMessage, and
|
|
|
|
* gst_message_parse_toc() to parse received TOC message. Also you can create a new TOC query
|
|
|
|
* with gst_query_new_toc(), set it with gst_query_set_toc() and parse it with
|
|
|
|
* gst_query_parse_toc().
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "gst_private.h"
|
|
|
|
#include "gstenumtypes.h"
|
|
|
|
#include "gsttaglist.h"
|
|
|
|
#include "gststructure.h"
|
|
|
|
#include "gstvalue.h"
|
|
|
|
#include "gsttoc.h"
|
|
|
|
#include "gstpad.h"
|
2012-05-20 16:48:55 +00:00
|
|
|
#include "gstquark.h"
|
2012-03-14 16:01:51 +00:00
|
|
|
|
2012-07-03 16:45:05 +00:00
|
|
|
struct _GstTocEntry
|
|
|
|
{
|
|
|
|
GstMiniObject mini_object;
|
|
|
|
|
|
|
|
gchar *uid;
|
|
|
|
GstTocEntryType type;
|
|
|
|
GstClockTime start, stop;
|
|
|
|
GList *subentries;
|
|
|
|
GstTagList *tags;
|
|
|
|
|
|
|
|
/*< private > */
|
|
|
|
gpointer _gst_reserved[GST_PADDING];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstToc
|
|
|
|
{
|
|
|
|
GstMiniObject mini_object;
|
|
|
|
|
|
|
|
GList *entries;
|
|
|
|
GstTagList *tags;
|
|
|
|
|
|
|
|
/*< private > */
|
|
|
|
gpointer _gst_reserved[GST_PADDING];
|
|
|
|
};
|
|
|
|
|
2012-06-24 19:08:33 +00:00
|
|
|
#undef gst_toc_copy
|
|
|
|
static GstToc *gst_toc_copy (const GstToc * toc);
|
|
|
|
static void gst_toc_free (GstToc * toc);
|
|
|
|
#undef gst_toc_entry_copy
|
|
|
|
static GstTocEntry *gst_toc_entry_copy (const GstTocEntry * toc);
|
|
|
|
static void gst_toc_entry_free (GstTocEntry * toc);
|
|
|
|
|
|
|
|
GST_DEFINE_MINI_OBJECT_TYPE (GstToc, gst_toc);
|
|
|
|
GST_DEFINE_MINI_OBJECT_TYPE (GstTocEntry, gst_toc_entry);
|
2012-05-20 22:48:29 +00:00
|
|
|
|
2012-03-14 16:01:51 +00:00
|
|
|
/**
|
|
|
|
* gst_toc_new:
|
|
|
|
*
|
2012-06-24 19:08:33 +00:00
|
|
|
* Create a new #GstToc structure.
|
2012-03-14 16:01:51 +00:00
|
|
|
*
|
2012-06-24 19:08:33 +00:00
|
|
|
* Returns: (transfer full): newly allocated #GstToc structure, free it
|
|
|
|
* with gst_toc_unref().
|
2012-03-14 16:01:51 +00:00
|
|
|
*
|
|
|
|
* Since: 0.10.37
|
|
|
|
*/
|
|
|
|
GstToc *
|
|
|
|
gst_toc_new (void)
|
|
|
|
{
|
|
|
|
GstToc *toc;
|
|
|
|
|
|
|
|
toc = g_slice_new0 (GstToc);
|
2012-06-24 19:08:33 +00:00
|
|
|
|
2012-07-04 14:38:15 +00:00
|
|
|
gst_mini_object_init (GST_MINI_OBJECT_CAST (toc), 0, GST_TYPE_TOC,
|
2012-06-24 19:08:33 +00:00
|
|
|
(GstMiniObjectCopyFunction) gst_toc_copy, NULL,
|
|
|
|
(GstMiniObjectFreeFunction) gst_toc_free);
|
|
|
|
|
2012-04-02 20:09:07 +00:00
|
|
|
toc->tags = gst_tag_list_new_empty ();
|
2012-03-14 16:01:51 +00:00
|
|
|
|
|
|
|
return toc;
|
|
|
|
}
|
|
|
|
|
2012-07-03 16:45:05 +00:00
|
|
|
/**
|
|
|
|
* gst_toc_set_tags:
|
|
|
|
* @toc: A #GstToc instance
|
|
|
|
* @tags: (allow-none) (transfer full): A #GstTagList or %NULL
|
|
|
|
*
|
|
|
|
* Set a #GstTagList with tags for the complete @toc.
|
|
|
|
*
|
|
|
|
* Since: 0.10.37
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_toc_set_tags (GstToc * toc, GstTagList * tags)
|
|
|
|
{
|
|
|
|
g_return_if_fail (toc != NULL);
|
|
|
|
g_return_if_fail (gst_mini_object_is_writable (GST_MINI_OBJECT_CAST (toc)));
|
|
|
|
|
|
|
|
if (toc->tags)
|
|
|
|
gst_tag_list_unref (toc->tags);
|
|
|
|
toc->tags = tags;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_toc_merge_tags:
|
|
|
|
* @toc: A #GstToc instance
|
|
|
|
* @tags: (allow-none): A #GstTagList or %NULL
|
|
|
|
* @mode: A #GstTagMergeMode
|
|
|
|
*
|
|
|
|
* Merge @tags into the existing tags of @toc using @mode.
|
|
|
|
*
|
|
|
|
* Since: 0.10.37
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_toc_merge_tags (GstToc * toc, GstTagList * tags, GstTagMergeMode mode)
|
|
|
|
{
|
|
|
|
g_return_if_fail (toc != NULL);
|
|
|
|
g_return_if_fail (gst_mini_object_is_writable (GST_MINI_OBJECT_CAST (toc)));
|
|
|
|
|
|
|
|
if (!toc->tags) {
|
|
|
|
toc->tags = gst_tag_list_ref (tags);
|
|
|
|
} else {
|
|
|
|
GstTagList *tmp = gst_tag_list_merge (toc->tags, tags, mode);
|
|
|
|
gst_tag_list_unref (toc->tags);
|
|
|
|
toc->tags = tmp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_toc_get_tags:
|
|
|
|
* @toc: A #GstToc instance
|
|
|
|
*
|
|
|
|
* Gets the tags for @toc.
|
|
|
|
*
|
|
|
|
* Returns: (transfer none): A #GstTagList for @entry
|
|
|
|
*
|
|
|
|
* Since: 0.10.37
|
|
|
|
*/
|
|
|
|
GstTagList *
|
|
|
|
gst_toc_get_tags (const GstToc * toc)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (toc != NULL, NULL);
|
|
|
|
|
|
|
|
return toc->tags;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_toc_append_entry:
|
|
|
|
* @toc: A #GstToc instance
|
|
|
|
* @entry: (transfer full): A #GstTocEntry
|
|
|
|
*
|
|
|
|
* Appends the #GstTocEntry @entry to @toc.
|
|
|
|
*
|
|
|
|
* Since: 0.10.37
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_toc_append_entry (GstToc * toc, GstTocEntry * entry)
|
|
|
|
{
|
|
|
|
g_return_if_fail (toc != NULL);
|
|
|
|
g_return_if_fail (gst_mini_object_is_writable (GST_MINI_OBJECT_CAST (toc)));
|
|
|
|
|
|
|
|
toc->entries = g_list_append (toc->entries, entry);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_toc_get_entries:
|
|
|
|
* @toc: A #GstToc instance
|
|
|
|
*
|
|
|
|
* Gets the list of #GstTocEntry of @toc.
|
|
|
|
*
|
|
|
|
* Returns: (transfer none) (element-type Gst.TocEntry): A #GList of #GstTocEntry for @entry
|
|
|
|
*
|
|
|
|
* Since: 0.10.37
|
|
|
|
*/
|
|
|
|
GList *
|
|
|
|
gst_toc_get_entries (const GstToc * toc)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (toc != NULL, NULL);
|
|
|
|
|
|
|
|
return toc->entries;
|
|
|
|
}
|
|
|
|
|
2012-06-24 19:08:33 +00:00
|
|
|
static GstTocEntry *
|
2012-07-03 16:45:05 +00:00
|
|
|
gst_toc_entry_new_internal (GstTocEntryType type, const gchar * uid)
|
2012-06-24 19:08:33 +00:00
|
|
|
{
|
|
|
|
GstTocEntry *entry;
|
|
|
|
|
|
|
|
entry = g_slice_new0 (GstTocEntry);
|
|
|
|
|
2012-07-04 14:38:15 +00:00
|
|
|
gst_mini_object_init (GST_MINI_OBJECT_CAST (entry), 0, GST_TYPE_TOC_ENTRY,
|
2012-06-24 19:08:33 +00:00
|
|
|
(GstMiniObjectCopyFunction) gst_toc_entry_copy, NULL,
|
|
|
|
(GstMiniObjectFreeFunction) gst_toc_entry_free);
|
|
|
|
|
|
|
|
entry->uid = g_strdup (uid);
|
|
|
|
entry->type = type;
|
2012-07-03 16:45:05 +00:00
|
|
|
entry->tags = NULL;
|
|
|
|
entry->start = entry->stop = GST_CLOCK_TIME_NONE;
|
2012-06-24 19:08:33 +00:00
|
|
|
|
|
|
|
return entry;
|
|
|
|
}
|
|
|
|
|
2012-03-14 16:01:51 +00:00
|
|
|
/**
|
|
|
|
* gst_toc_entry_new:
|
|
|
|
* @type: entry type.
|
|
|
|
* @uid: unique ID (UID) in the whole TOC.
|
|
|
|
*
|
|
|
|
* Create new #GstTocEntry structure.
|
|
|
|
*
|
2012-06-24 19:08:33 +00:00
|
|
|
* Returns: newly allocated #GstTocEntry structure, free it with gst_toc_entry_unref().
|
2012-03-14 16:01:51 +00:00
|
|
|
*
|
|
|
|
* Since: 0.10.37
|
|
|
|
*/
|
|
|
|
GstTocEntry *
|
|
|
|
gst_toc_entry_new (GstTocEntryType type, const gchar * uid)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (uid != NULL, NULL);
|
|
|
|
|
2012-07-03 16:45:05 +00:00
|
|
|
return gst_toc_entry_new_internal (type, uid);
|
2012-03-14 16:01:51 +00:00
|
|
|
}
|
|
|
|
|
2012-06-24 19:08:33 +00:00
|
|
|
static void
|
2012-03-14 16:01:51 +00:00
|
|
|
gst_toc_free (GstToc * toc)
|
|
|
|
{
|
2012-06-24 19:08:33 +00:00
|
|
|
g_list_foreach (toc->entries, (GFunc) gst_mini_object_unref, NULL);
|
2012-03-14 16:01:51 +00:00
|
|
|
g_list_free (toc->entries);
|
|
|
|
|
|
|
|
if (toc->tags != NULL)
|
2012-05-27 23:08:18 +00:00
|
|
|
gst_tag_list_unref (toc->tags);
|
2012-03-14 16:01:51 +00:00
|
|
|
|
|
|
|
g_slice_free (GstToc, toc);
|
|
|
|
}
|
|
|
|
|
2012-06-24 19:08:33 +00:00
|
|
|
static void
|
2012-03-14 16:01:51 +00:00
|
|
|
gst_toc_entry_free (GstTocEntry * entry)
|
|
|
|
{
|
|
|
|
g_return_if_fail (entry != NULL);
|
|
|
|
|
2012-06-24 19:08:33 +00:00
|
|
|
g_list_foreach (entry->subentries, (GFunc) gst_mini_object_unref, NULL);
|
2012-03-14 16:01:51 +00:00
|
|
|
g_list_free (entry->subentries);
|
|
|
|
|
|
|
|
g_free (entry->uid);
|
|
|
|
|
|
|
|
if (entry->tags != NULL)
|
2012-05-27 23:08:18 +00:00
|
|
|
gst_tag_list_unref (entry->tags);
|
2012-03-14 16:01:51 +00:00
|
|
|
|
|
|
|
g_slice_free (GstTocEntry, entry);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_toc_check_entry_for_uid (const GstTocEntry * entry, const gchar * uid)
|
|
|
|
{
|
|
|
|
GList *cur;
|
|
|
|
|
|
|
|
g_return_val_if_fail (entry != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (uid != NULL, FALSE);
|
|
|
|
|
|
|
|
if (g_strcmp0 (entry->uid, uid) == 0)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
cur = entry->subentries;
|
|
|
|
while (cur != NULL) {
|
|
|
|
if (gst_toc_check_entry_for_uid (cur->data, uid))
|
|
|
|
return TRUE;
|
|
|
|
cur = cur->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_toc_find_entry:
|
|
|
|
* @toc: #GstToc to search in.
|
|
|
|
* @uid: UID to find #GstTocEntry with.
|
|
|
|
*
|
|
|
|
* Find #GstTocEntry with given @uid in the @toc.
|
|
|
|
*
|
|
|
|
* Returns: #GstTocEntry with specified @uid from the @toc, or NULL if not found.
|
|
|
|
*
|
|
|
|
* Since: 0.10.37
|
|
|
|
*/
|
|
|
|
GstTocEntry *
|
|
|
|
gst_toc_find_entry (const GstToc * toc, const gchar * uid)
|
|
|
|
{
|
|
|
|
GList *cur;
|
|
|
|
|
|
|
|
g_return_val_if_fail (toc != NULL, NULL);
|
|
|
|
g_return_val_if_fail (uid != NULL, NULL);
|
|
|
|
|
|
|
|
cur = toc->entries;
|
|
|
|
while (cur != NULL) {
|
|
|
|
if (gst_toc_check_entry_for_uid (cur->data, uid))
|
|
|
|
return cur->data;
|
|
|
|
cur = cur->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_toc_entry_copy:
|
|
|
|
* @entry: #GstTocEntry to copy.
|
|
|
|
*
|
|
|
|
* Copy #GstTocEntry with all subentries (deep copy).
|
|
|
|
*
|
|
|
|
* Returns: newly allocated #GstTocEntry in case of success, NULL otherwise;
|
2012-06-24 19:08:33 +00:00
|
|
|
* free it when done with gst_toc_entry_unref().
|
2012-03-14 16:01:51 +00:00
|
|
|
*
|
|
|
|
* Since: 0.10.37
|
|
|
|
*/
|
2012-06-24 19:08:33 +00:00
|
|
|
static GstTocEntry *
|
2012-03-14 16:01:51 +00:00
|
|
|
gst_toc_entry_copy (const GstTocEntry * entry)
|
|
|
|
{
|
|
|
|
GstTocEntry *ret, *sub;
|
2012-04-10 10:11:26 +00:00
|
|
|
GstTagList *list;
|
2012-07-03 16:45:05 +00:00
|
|
|
GList *cur;
|
2012-03-14 16:01:51 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (entry != NULL, NULL);
|
|
|
|
|
|
|
|
ret = gst_toc_entry_new (entry->type, entry->uid);
|
|
|
|
|
2012-07-03 16:45:05 +00:00
|
|
|
ret->start = entry->start;
|
|
|
|
ret->stop = entry->stop;
|
2012-03-14 16:01:51 +00:00
|
|
|
|
2012-04-10 10:11:26 +00:00
|
|
|
if (GST_IS_TAG_LIST (entry->tags)) {
|
|
|
|
list = gst_tag_list_copy (entry->tags);
|
2012-07-03 16:45:05 +00:00
|
|
|
if (ret->tags)
|
|
|
|
gst_tag_list_unref (ret->tags);
|
2012-04-10 10:11:26 +00:00
|
|
|
ret->tags = list;
|
|
|
|
}
|
2012-03-14 16:01:51 +00:00
|
|
|
|
|
|
|
cur = entry->subentries;
|
|
|
|
while (cur != NULL) {
|
|
|
|
sub = gst_toc_entry_copy (cur->data);
|
|
|
|
|
|
|
|
if (sub != NULL)
|
|
|
|
ret->subentries = g_list_prepend (ret->subentries, sub);
|
|
|
|
|
|
|
|
cur = cur->next;
|
|
|
|
}
|
|
|
|
ret->subentries = g_list_reverse (ret->subentries);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_toc_copy:
|
|
|
|
* @toc: #GstToc to copy.
|
|
|
|
*
|
|
|
|
* Copy #GstToc with all subentries (deep copy).
|
|
|
|
*
|
|
|
|
* Returns: newly allocated #GstToc in case of success, NULL otherwise;
|
|
|
|
* free it when done with gst_toc_free().
|
|
|
|
*
|
|
|
|
* Since: 0.10.37
|
|
|
|
*/
|
2012-06-24 19:08:33 +00:00
|
|
|
static GstToc *
|
2012-03-14 16:01:51 +00:00
|
|
|
gst_toc_copy (const GstToc * toc)
|
|
|
|
{
|
|
|
|
GstToc *ret;
|
|
|
|
GstTocEntry *entry;
|
|
|
|
GList *cur;
|
2012-04-10 10:11:26 +00:00
|
|
|
GstTagList *list;
|
2012-03-14 16:01:51 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (toc != NULL, NULL);
|
|
|
|
|
|
|
|
ret = gst_toc_new ();
|
|
|
|
|
2012-04-10 10:11:26 +00:00
|
|
|
if (GST_IS_TAG_LIST (toc->tags)) {
|
|
|
|
list = gst_tag_list_copy (toc->tags);
|
2012-05-27 23:08:18 +00:00
|
|
|
gst_tag_list_unref (ret->tags);
|
2012-04-10 10:11:26 +00:00
|
|
|
ret->tags = list;
|
|
|
|
}
|
2012-03-14 16:01:51 +00:00
|
|
|
|
|
|
|
cur = toc->entries;
|
|
|
|
while (cur != NULL) {
|
|
|
|
entry = gst_toc_entry_copy (cur->data);
|
|
|
|
|
|
|
|
if (entry != NULL)
|
|
|
|
ret->entries = g_list_prepend (ret->entries, entry);
|
|
|
|
|
|
|
|
cur = cur->next;
|
|
|
|
}
|
|
|
|
ret->entries = g_list_reverse (ret->entries);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-07-03 16:45:05 +00:00
|
|
|
* gst_toc_entry_set_start_stop_times:
|
2012-03-14 16:01:51 +00:00
|
|
|
* @entry: #GstTocEntry to set values.
|
|
|
|
* @start: start value to set.
|
|
|
|
* @stop: stop value to set.
|
|
|
|
*
|
|
|
|
* Set @start and @stop values for the @entry.
|
|
|
|
*
|
|
|
|
* Since: 0.10.37
|
|
|
|
*/
|
|
|
|
void
|
2012-07-03 16:45:05 +00:00
|
|
|
gst_toc_entry_set_start_stop_times (GstTocEntry * entry, gint64 start,
|
|
|
|
gint64 stop)
|
2012-03-14 16:01:51 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (entry != NULL);
|
|
|
|
|
2012-07-03 16:45:05 +00:00
|
|
|
entry->start = start;
|
|
|
|
entry->stop = stop;
|
2012-03-14 16:01:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-07-03 16:45:05 +00:00
|
|
|
* gst_toc_entry_get_start_stop_times:
|
2012-03-14 16:01:51 +00:00
|
|
|
* @entry: #GstTocEntry to get values from.
|
|
|
|
* @start: (out): the storage for the start value, leave #NULL if not need.
|
|
|
|
* @stop: (out): the storage for the stop value, leave #NULL if not need.
|
|
|
|
*
|
|
|
|
* Get start and stop values from the @entry and write them into appropriate storages.
|
|
|
|
*
|
|
|
|
* Returns: TRUE if all non-NULL storage pointers were filled with appropriate values,
|
|
|
|
* FALSE otherwise.
|
|
|
|
*
|
|
|
|
* Since: 0.10.37
|
|
|
|
*/
|
|
|
|
gboolean
|
2012-07-03 16:45:05 +00:00
|
|
|
gst_toc_entry_get_start_stop_times (const GstTocEntry * entry, gint64 * start,
|
2012-03-14 16:01:51 +00:00
|
|
|
gint64 * stop)
|
|
|
|
{
|
|
|
|
gboolean ret = TRUE;
|
|
|
|
|
|
|
|
g_return_val_if_fail (entry != NULL, FALSE);
|
|
|
|
|
2012-07-03 16:45:05 +00:00
|
|
|
if (start != NULL)
|
|
|
|
*start = entry->start;
|
|
|
|
if (stop != NULL)
|
|
|
|
*stop = entry->stop;
|
2012-03-14 16:01:51 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-05-15 11:48:35 +00:00
|
|
|
/**
|
2012-05-15 14:38:30 +00:00
|
|
|
* gst_toc_entry_type_get_nick:
|
2012-05-15 11:48:35 +00:00
|
|
|
* @type: a #GstTocEntryType.
|
|
|
|
*
|
|
|
|
* Converts @type to a string representation.
|
|
|
|
*
|
2012-06-25 22:17:32 +00:00
|
|
|
* Returns: Returns a human-readable string for @type. This string is
|
|
|
|
* only for debugging purpose and should not be displayed in a user
|
|
|
|
* interface.
|
2012-05-15 11:48:35 +00:00
|
|
|
*/
|
|
|
|
const gchar *
|
2012-05-15 14:38:30 +00:00
|
|
|
gst_toc_entry_type_get_nick (GstTocEntryType type)
|
2012-05-15 11:48:35 +00:00
|
|
|
{
|
2012-06-25 22:17:32 +00:00
|
|
|
switch (type) {
|
|
|
|
case GST_TOC_ENTRY_TYPE_ANGLE:
|
|
|
|
return "angle";
|
|
|
|
case GST_TOC_ENTRY_TYPE_VERSION:
|
|
|
|
return "version";
|
|
|
|
case GST_TOC_ENTRY_TYPE_EDITION:
|
|
|
|
return "edition";
|
|
|
|
case GST_TOC_ENTRY_TYPE_TITLE:
|
|
|
|
return "title";
|
|
|
|
case GST_TOC_ENTRY_TYPE_TRACK:
|
|
|
|
return "track";
|
|
|
|
case GST_TOC_ENTRY_TYPE_CHAPTER:
|
|
|
|
return "chapter";
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return "invalid";
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_toc_entry_get_entry_type:
|
|
|
|
* @entry: a #GstTocEntry
|
|
|
|
*
|
|
|
|
* Returns: @entry's entry type
|
|
|
|
*/
|
|
|
|
GstTocEntryType
|
2012-07-03 16:45:05 +00:00
|
|
|
gst_toc_entry_get_entry_type (const GstTocEntry * entry)
|
2012-06-25 22:17:32 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (entry != NULL, GST_TOC_ENTRY_TYPE_INVALID);
|
|
|
|
|
|
|
|
return entry->type;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_toc_entry_is_alternative:
|
|
|
|
* @entry: a #GstTocEntry
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if @entry's type is an alternative type, otherwise %FALSE
|
|
|
|
*/
|
|
|
|
gboolean
|
2012-07-03 16:45:05 +00:00
|
|
|
gst_toc_entry_is_alternative (const GstTocEntry * entry)
|
2012-06-25 22:17:32 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (entry != NULL, FALSE);
|
2012-05-15 11:48:35 +00:00
|
|
|
|
2012-06-25 22:17:32 +00:00
|
|
|
return GST_TOC_ENTRY_TYPE_IS_ALTERNATIVE (entry->type);
|
2012-05-15 11:48:35 +00:00
|
|
|
}
|
|
|
|
|
2012-06-25 22:17:32 +00:00
|
|
|
/**
|
|
|
|
* gst_toc_entry_is_sequence:
|
|
|
|
* @entry: a #GstTocEntry
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if @entry's type is a sequence type, otherwise %FALSE
|
|
|
|
*/
|
|
|
|
gboolean
|
2012-07-03 16:45:05 +00:00
|
|
|
gst_toc_entry_is_sequence (const GstTocEntry * entry)
|
2012-06-25 22:17:32 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (entry != NULL, FALSE);
|
|
|
|
|
|
|
|
return GST_TOC_ENTRY_TYPE_IS_SEQUENCE (entry->type);
|
|
|
|
}
|
2012-07-03 16:45:05 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_toc_entry_get_uid:
|
|
|
|
* @entry: A #GstTocEntry instance
|
|
|
|
*
|
|
|
|
* Gets the UID of @entry.
|
|
|
|
*
|
|
|
|
* Returns: (transfer none): The UID of @entry
|
|
|
|
*
|
|
|
|
* Since: 0.10.37
|
|
|
|
*/
|
|
|
|
const gchar *
|
|
|
|
gst_toc_entry_get_uid (const GstTocEntry * entry)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (entry != NULL, NULL);
|
|
|
|
|
|
|
|
return entry->uid;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_toc_entry_append_sub_entry:
|
|
|
|
* @entry: A #GstTocEntry instance
|
|
|
|
* @subentry: (transfer full): A #GstTocEntry
|
|
|
|
*
|
|
|
|
* Appends the #GstTocEntry @subentry to @entry.
|
|
|
|
*
|
|
|
|
* Since: 0.10.37
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_toc_entry_append_sub_entry (GstTocEntry * entry, GstTocEntry * subentry)
|
|
|
|
{
|
|
|
|
g_return_if_fail (entry != NULL);
|
|
|
|
g_return_if_fail (subentry != NULL);
|
|
|
|
g_return_if_fail (gst_mini_object_is_writable (GST_MINI_OBJECT_CAST (entry)));
|
|
|
|
|
|
|
|
entry->subentries = g_list_append (entry->subentries, subentry);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_toc_entry_get_uid:
|
|
|
|
* @entry: A #GstTocEntry instance
|
|
|
|
*
|
|
|
|
* Gets the sub-entries of @entry.
|
|
|
|
*
|
|
|
|
* Returns: (transfer none) (element-type Gst.TocEntry): A #GList of #GstTocEntry of @entry
|
|
|
|
*
|
|
|
|
* Since: 0.10.37
|
|
|
|
*/
|
|
|
|
GList *
|
|
|
|
gst_toc_entry_get_sub_entries (const GstTocEntry * entry)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (entry != NULL, NULL);
|
|
|
|
|
|
|
|
return entry->subentries;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_toc_entry_set_tags:
|
|
|
|
* @entry: A #GstTocEntry instance
|
|
|
|
* @tags: (allow-none) (transfer full): A #GstTagList or %NULL
|
|
|
|
*
|
|
|
|
* Set a #GstTagList with tags for the complete @entry.
|
|
|
|
*
|
|
|
|
* Since: 0.10.37
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_toc_entry_set_tags (GstTocEntry * entry, GstTagList * tags)
|
|
|
|
{
|
|
|
|
g_return_if_fail (entry != NULL);
|
|
|
|
g_return_if_fail (gst_mini_object_is_writable (GST_MINI_OBJECT_CAST (entry)));
|
|
|
|
|
|
|
|
if (entry->tags)
|
|
|
|
gst_tag_list_unref (entry->tags);
|
|
|
|
entry->tags = tags;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_toc_entry_merge_tags:
|
|
|
|
* @entry: A #GstTocEntry instance
|
|
|
|
* @tags: (allow-none): A #GstTagList or %NULL
|
|
|
|
* @mode: A #GstTagMergeMode
|
|
|
|
*
|
|
|
|
* Merge @tags into the existing tags of @entry using @mode.
|
|
|
|
*
|
|
|
|
* Since: 0.10.37
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_toc_entry_merge_tags (GstTocEntry * entry, GstTagList * tags,
|
|
|
|
GstTagMergeMode mode)
|
|
|
|
{
|
|
|
|
g_return_if_fail (entry != NULL);
|
|
|
|
g_return_if_fail (gst_mini_object_is_writable (GST_MINI_OBJECT_CAST (entry)));
|
|
|
|
|
|
|
|
if (!entry->tags) {
|
|
|
|
entry->tags = gst_tag_list_ref (tags);
|
|
|
|
} else {
|
|
|
|
GstTagList *tmp = gst_tag_list_merge (entry->tags, tags, mode);
|
|
|
|
gst_tag_list_unref (entry->tags);
|
|
|
|
entry->tags = tmp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_toc_entry_get_tags:
|
|
|
|
* @entry: A #GstTocEntry instance
|
|
|
|
*
|
|
|
|
* Gets the tags for @entry.
|
|
|
|
*
|
|
|
|
* Returns: (transfer none): A #GstTagList for @entry
|
|
|
|
*
|
|
|
|
* Since: 0.10.37
|
|
|
|
*/
|
|
|
|
GstTagList *
|
|
|
|
gst_toc_entry_get_tags (const GstTocEntry * entry)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (entry != NULL, NULL);
|
|
|
|
|
|
|
|
return entry->tags;
|
|
|
|
}
|