From fcd589b12393614d684c890917f9aac794aa325a Mon Sep 17 00:00:00 2001 From: wm4 Date: Wed, 24 Jun 2015 14:18:51 +0200 Subject: 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. --- demux/cue.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'demux/cue.h') 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); -- cgit v1.2.3