/* GStreamer * (c) 2010, 2012 Alexander Saprykin * * gsttoc.h: generic TOC API declaration * * 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. */ #ifndef __GST_TOC_H__ #define __GST_TOC_H__ #include #include #include #include #include G_BEGIN_DECLS #define GST_TYPE_TOC (gst_toc_get_type ()) #define GST_TYPE_TOC_ENTRY (gst_toc_entry_get_type ()) typedef struct _GstTocEntry GstTocEntry; typedef struct _GstToc GstToc; /** * GstTocEntryType: * @GST_TOC_ENTRY_TYPE_ANGLE: entry is an angle (i.e. an alternative) * @GST_TOC_ENTRY_TYPE_VERSION: entry is a version (i.e. alternative) * @GST_TOC_ENTRY_TYPE_EDITION: entry is an edition (i.e. alternative) * @GST_TOC_ENTRY_TYPE_INVALID: invalid entry type value * @GST_TOC_ENTRY_TYPE_TITLE: entry is a title (i.e. a part of a sequence) * @GST_TOC_ENTRY_TYPE_TRACK: entry is a track (i.e. a part of a sequence) * @GST_TOC_ENTRY_TYPE_CHAPTER: entry is a chapter (i.e. a part of a sequence) * * The different types of TOC entries (see #GstTocEntry). * * There are two types of TOC entries: alternatives or parts in a sequence. */ typedef enum { GST_TOC_ENTRY_TYPE_ANGLE = -3, GST_TOC_ENTRY_TYPE_VERSION = -2, GST_TOC_ENTRY_TYPE_EDITION = -1, GST_TOC_ENTRY_TYPE_INVALID = 0, GST_TOC_ENTRY_TYPE_TITLE = 1, GST_TOC_ENTRY_TYPE_TRACK = 2, GST_TOC_ENTRY_TYPE_CHAPTER = 3, } GstTocEntryType; #define GST_TOC_ENTRY_TYPE_IS_ALTERNATIVE(entry_type) (entry_type < 0) #define GST_TOC_ENTRY_TYPE_IS_SEQUENCE(entry_type) (entry_type > 0) /** * GstTocEntry: * @uid: unique (for a whole TOC) id of the entry. This value should be persistent and * should not be changed while updating TOC. @uid should be handled as "opaque" value * without meaning (e.g. applications should not assume the /editionX/chapterY/chapter/Z structure, * other demuxers could do something else), it should help to track updates of certain entries. * @type: #GstTocEntryType of this entry. * @subentries: (element-type GstTocEntry): list of #GstTocEntry * children. * @pads: (element-type GstPad): list of #GstPad objects, related to * this #GstTocEntry. * @tags: tags related to this entry. * @info: extra information related to this entry. * * Definition of TOC entry structure. */ struct _GstTocEntry { GstMiniObject mini_object; gchar *uid; GstTocEntryType type; GList *subentries; GList *pads; GstTagList *tags; GstStructure *info; /*< private >*/ gpointer _gst_reserved[GST_PADDING]; }; /* FIXME: pad member should be GstPad type, but that's * impossible due to recursive includes */ /** * GstToc: * @entries: (element-type GstTocEntry): list of #GstTocEntry entries * of the TOC. * @tags: tags related to the whole TOC. * @info: extra information related to the TOC. * * Definition of TOC structure. */ struct _GstToc { GstMiniObject mini_object; GList *entries; GstTagList *tags; GstStructure *info; /*< private >*/ gpointer _gst_reserved[GST_PADDING]; }; /* functions to return type structures */ GType gst_toc_get_type (void); GType gst_toc_entry_get_type (void); /* functions to create, ref and unref/free TOCs */ GstToc * gst_toc_new (void); #define gst_toc_ref(toc) (GstToc*)gst_mini_object_ref(GST_MINI_OBJECT_CAST(toc)) #define gst_toc_unref(toc) gst_mini_object_unref(GST_MINI_OBJECT_CAST(toc)) #define gst_toc_copy(toc) (GstToc*)gst_mini_object_copy(GST_MINI_OBJECT_CAST(toc)) #define gst_toc_make_writable(toc) (GstToc*)gst_mini_object_make_writable(GST_MINI_OBJECT_CAST(toc)) /* functions to create, ref and unref/free TOC entries */ GstTocEntry * gst_toc_entry_new (GstTocEntryType type, const gchar *uid); GstTocEntry * gst_toc_entry_new_with_pad (GstTocEntryType type, const gchar *uid, GstPad * pad); #define gst_toc_entry_ref(entry) (GstTocEntry*)gst_mini_object_ref(GST_MINI_OBJECT_CAST(entry)) #define gst_toc_entry_unref(entry) gst_mini_object_unref(GST_MINI_OBJECT_CAST(entry)) #define gst_toc_entry_copy(entry) (GstTocEntry*)gst_mini_object_copy(GST_MINI_OBJECT_CAST(entry)) #define gst_toc_entry_make_writable(entry) (GstTocEntry*)gst_mini_object_make_writable(GST_MINI_OBJECT_CAST(entry)) GstTocEntry * gst_toc_find_entry (const GstToc *toc, const gchar *uid); GstTocEntryType gst_toc_entry_get_entry_type (GstTocEntry * entry); gboolean gst_toc_entry_is_alternative (GstTocEntry * entry); gboolean gst_toc_entry_is_sequence (GstTocEntry * entry); void gst_toc_entry_set_start_stop (GstTocEntry *entry, gint64 start, gint64 stop); gboolean gst_toc_entry_get_start_stop (const GstTocEntry *entry, gint64 *start, gint64 *stop); const gchar * gst_toc_entry_type_get_nick (GstTocEntryType type); G_END_DECLS #endif /* __GST_TOC_H__ */