summaryrefslogtreecommitdiffstats
path: root/demux/cue.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-06-24 14:18:51 +0200
committerwm4 <wm4@nowhere>2015-06-24 14:18:51 +0200
commitfcd589b12393614d684c890917f9aac794aa325a (patch)
tree4f878d0389f1baaffa718305966737ccdf5de38b /demux/cue.h
parentae2873f72e90c948da1ed32af3e30e0cd6cef409 (diff)
downloadmpv-fcd589b12393614d684c890917f9aac794aa325a.tar.bz2
mpv-fcd589b12393614d684c890917f9aac794aa325a.tar.xz
demux: get rid of some bstr things
Change the demuxer_add_attachment() and demuxer_add_chapter() signatures to take char* instead of bstr, and everything which depends on it.
Diffstat (limited to 'demux/cue.h')
-rw-r--r--demux/cue.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/demux/cue.h b/demux/cue.h
index f58ca79fe5..5645dd01ab 100644
--- a/demux/cue.h
+++ b/demux/cue.h
@@ -30,9 +30,9 @@ struct cue_file {
struct cue_track {
double pregap_start; // corresponds to INDEX 00
double start; // corresponds to INDEX 01
- struct bstr filename;
+ char *filename;
int source;
- struct bstr title;
+ char *title;
};
bool mp_probe_cue(struct bstr data);