summaryrefslogtreecommitdiffstats
path: root/stream/stream_dvd.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-07-06 19:02:33 +0200
committerwm4 <wm4@nowhere>2014-07-06 19:02:33 +0200
commit1d55547adf37f94be3bec973b59067c474e9d439 (patch)
tree8b75de0e8248ae6b1d3fad8a0869e42e4c4f5f82 /stream/stream_dvd.c
parentde288762222beb1e20883f5d2c890ff7460ba318 (diff)
downloadmpv-1d55547adf37f94be3bec973b59067c474e9d439.tar.bz2
mpv-1d55547adf37f94be3bec973b59067c474e9d439.tar.xz
stream: remove now unused STREAM_CTRL_GET_START_TIME
demux_disc.c takes care of this now.
Diffstat (limited to 'stream/stream_dvd.c')
-rw-r--r--stream/stream_dvd.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/stream/stream_dvd.c b/stream/stream_dvd.c
index 7576dc879b..1dd0324bbb 100644
--- a/stream/stream_dvd.c
+++ b/stream/stream_dvd.c
@@ -532,11 +532,6 @@ 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)/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;