summaryrefslogtreecommitdiff
path: root/src/tracker-extract/tracker-cue-sheet.h
blob: efe0b46d0eebe882603f68c0f4c6194456db7d90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*
 * Copyright (C) 2011, ARQ Media <sam.thursfield@codethink.co.uk>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA  02110-1301, USA.
 *
 * Author: Sam Thursfield <sam.thursfield@codethink.co.uk>
 */

#ifndef __TRACKER_EXTRACT_CUE_SHEET_H__
#define __TRACKER_EXTRACT_CUE_SHEET_H__

#include <glib.h>
#include <gst/gst.h>
#include <gst/tag/tag.h>

G_BEGIN_DECLS

typedef struct {
	/* Values in seconds */
	gdouble start;
	gdouble duration;
	GstTagList *tag_list;
} TrackerTocEntry;

typedef struct {
	GstTagList *tag_list;
	GList *entry_list;
} TrackerToc;

void        tracker_toc_free            (TrackerToc  *toc);
TrackerToc *tracker_toc_new             (void);

void        tracker_toc_add_entry       (TrackerToc *toc,
                                         GstTagList *tags,
                                         gdouble     start,
                                         gdouble     duration);

TrackerToc *tracker_cue_sheet_parse     (const gchar *cue_sheet);
TrackerToc *tracker_cue_sheet_parse_uri (const gchar *uri);

G_END_DECLS

#endif /* __TRACKER_EXTRACT_CUE_SHEET_H__ */