summaryrefslogtreecommitdiffstats
path: root/demux/cue.h
diff options
context:
space:
mode:
Diffstat (limited to 'demux/cue.h')
-rw-r--r--demux/cue.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/demux/cue.h b/demux/cue.h
index 5645dd01ab..cf4b4c1a08 100644
--- a/demux/cue.h
+++ b/demux/cue.h
@@ -25,6 +25,7 @@
struct cue_file {
struct cue_track *tracks;
int num_tracks;
+ struct mp_tags *tags;
};
struct cue_track {
@@ -32,7 +33,7 @@ struct cue_track {
double start; // corresponds to INDEX 01
char *filename;
int source;
- char *title;
+ struct mp_tags *tags;
};
bool mp_probe_cue(struct bstr data);