summaryrefslogtreecommitdiffstats
path: root/stream/stream_dvd.c
diff options
context:
space:
mode:
authormplayer-svn <svn@mplayerhq.hu>2011-12-31 12:20:08 +0000
committerwm4 <wm4@nowhere>2012-08-03 01:43:03 +0200
commit98f15b645ff1d10a914c004d0b076916a5f1f094 (patch)
tree61cccc0937d86a1f06a01d874a9d33f52603c438 /stream/stream_dvd.c
parente97d658bdee7b1ebb1e62fcf8d79b150bd40213f (diff)
downloadmpv-98f15b645ff1d10a914c004d0b076916a5f1f094.tar.bz2
mpv-98f15b645ff1d10a914c004d0b076916a5f1f094.tar.xz
stream: add new stream control command STREAM_CTRL_GET_NUM_TITLES
This provides the total number of titles (aka tracks) of CDs / VCDs / DVDs. Additionally, add a titles property to the get_property slave command. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@34474 b3059339-0415-0410-9bf9-f77b7e298cf2 Author: ib
Diffstat (limited to 'stream/stream_dvd.c')
-rw-r--r--stream/stream_dvd.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/stream/stream_dvd.c b/stream/stream_dvd.c
index 2121e78ccc..b9ffafed8f 100644
--- a/stream/stream_dvd.c
+++ b/stream/stream_dvd.c
@@ -621,6 +621,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_NUM_TITLES:
+ {
+ *((unsigned int *)arg) = d->vmg_file->tt_srpt->nr_of_srpts;
+ return 1;
+ }
case STREAM_CTRL_GET_NUM_CHAPTERS:
{
int r;