From f5d01796a861b5b3e926584bed7b6e073595f0d8 Mon Sep 17 00:00:00 2001 From: reimar Date: Sat, 28 Mar 2009 16:09:56 +0000 Subject: 100l, revert r29082, I missed that the vts comparison should be case-insensitive. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29084 b3059339-0415-0410-9bf9-f77b7e298cf2 --- stream/stream_dvd.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/stream/stream_dvd.c b/stream/stream_dvd.c index c383598895..70a94303e6 100644 --- a/stream/stream_dvd.c +++ b/stream/stream_dvd.c @@ -1108,7 +1108,11 @@ static int ifo_stream_open (stream_t *stream, int mode, void *opts, int *file_fo spriv=calloc(1, sizeof(struct stream_priv_s)); spriv->device = strdup(dirname(stream->url)); - if(sscanf(filename, "vts_%02d_", &spriv->title)!=1) + if(!strncasecmp(filename,"vts_",4)) + { + if(sscanf(filename+3, "_%02d_", &spriv->title)!=1) + spriv->title=1; + }else spriv->title=1; free(filename); -- cgit v1.2.3