summaryrefslogtreecommitdiffstats
path: root/parser-mpcmd.c
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-11-11 09:03:39 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-11-11 09:03:39 +0000
commit92ac5a8c209ba823330a53da69551d1a9fa6091a (patch)
tree7e47f385fc1376b91b0d26f371a94003ad780aa4 /parser-mpcmd.c
parent977c12c62886060895cb83ad82ef71b7c302d5f6 (diff)
downloadmpv-92ac5a8c209ba823330a53da69551d1a9fa6091a.tar.bz2
mpv-92ac5a8c209ba823330a53da69551d1a9fa6091a.tar.xz
Support the range syntax (like dvd://2-5) also for dvdnav.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29892 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'parser-mpcmd.c')
-rw-r--r--parser-mpcmd.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/parser-mpcmd.c b/parser-mpcmd.c
index ed1dbf29ce..c16148bc8b 100644
--- a/parser-mpcmd.c
+++ b/parser-mpcmd.c
@@ -70,7 +70,7 @@ m_config_parse_mp_command_line(m_config_t *config, int argc, char **argv)
{
int i,j,start_title=-1,end_title=-1;
char *opt,*splitpos=NULL;
- char entbuf[10];
+ char entbuf[15];
int no_more_opts = 0;
int opt_exit = 0; // flag indicating whether mplayer should exit without playing anything
play_tree_t *last_parent, *last_entry = NULL, *root;
@@ -215,15 +215,17 @@ m_config_parse_mp_command_line(m_config_t *config, int argc, char **argv)
}
else /* filename */
{
+ int is_dvdnav = strstr(argv[i],"dvdnav://") != NULL;
play_tree_t* entry = play_tree_new();
mp_msg(MSGT_CFGPARSER, MSGL_DBG2,"Adding file %s\n",argv[i]);
// if required expand DVD filename entries like dvd://1-3 into component titles
- if ( strstr(argv[i],"dvd://") != NULL )
+ if ( strstr(argv[i],"dvd://") != NULL || is_dvdnav)
{
- splitpos=strstr(argv[i]+6,"-");
+ int offset = is_dvdnav ? 9 : 6;
+ splitpos=strstr(argv[i]+offset,"-");
if(splitpos != NULL)
{
- start_title=strtol(argv[i]+6,NULL,10);
+ start_title=strtol(argv[i]+offset,NULL,10);
if (start_title<0) { //entries like dvd://-2 start title implied 1
end_title=abs(start_title);
start_title=1;
@@ -237,7 +239,7 @@ m_config_parse_mp_command_line(m_config_t *config, int argc, char **argv)
{
if (j!=start_title)
entry=play_tree_new();
- snprintf(entbuf,9,"dvd://%d",j);
+ snprintf(entbuf,sizeof(entbuf),is_dvdnav ? "dvdnav://%d" : "dvd://%d",j);
play_tree_add_file(entry,entbuf);
add_entry(&last_parent,&last_entry,entry);
last_entry = entry;