summaryrefslogtreecommitdiffstats
path: root/stream/stream_vcd.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_vcd.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_vcd.c')
-rw-r--r--stream/stream_vcd.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/stream/stream_vcd.c b/stream/stream_vcd.c
index e06e381f59..0dae3731fb 100644
--- a/stream/stream_vcd.c
+++ b/stream/stream_vcd.c
@@ -91,6 +91,7 @@ static int seek(stream_t *s,off_t newpos) {
static int control(stream_t *stream, int cmd, void *arg) {
struct stream_priv_s *p = stream->priv;
switch(cmd) {
+ case STREAM_CTRL_GET_NUM_TITLES:
case STREAM_CTRL_GET_NUM_CHAPTERS:
{
mp_vcd_priv_t *vcd = vcd_read_toc(stream->fd);