From 4d14a42997154861e541c34d25a26d272fcbd152 Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 3 May 2013 20:11:46 +0200 Subject: stream: add start time reporting Will be needed to override the demuxer's start time reporting. We could be lazy and special-case it since the result is always 0 for the streams that care, but doing it properly is better. --- stream/stream_dvd.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'stream/stream_dvd.c') diff --git a/stream/stream_dvd.c b/stream/stream_dvd.c index 0b85e320ba..5df9b390e7 100644 --- a/stream/stream_dvd.c +++ b/stream/stream_dvd.c @@ -624,6 +624,11 @@ static int control(stream_t *stream,int cmd,void* arg) *((double *)arg) = (double) mp_get_titleset_length(d->vts_file, d->tt_srpt, d->cur_title-1)/1000.0; return 1; } + case STREAM_CTRL_GET_START_TIME: + { + *((double *)arg) = 0; + return 1; + } case STREAM_CTRL_GET_NUM_TITLES: { *((unsigned int *)arg) = d->vmg_file->tt_srpt->nr_of_srpts; -- cgit v1.2.3