changeset 8452:418b0017a8d2

-rnd --> -shuffle
author diego
date Sun, 15 Dec 2002 04:47:32 +0000
parents fb88ccbc5ccc
children 855b9c55d1b0
files DOCS/mplayer.1 parser-mpcmd.c
diffstat 2 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/DOCS/mplayer.1	Sat Dec 14 17:56:35 2002 +0000
+++ b/DOCS/mplayer.1	Sun Dec 15 04:47:32 2002 +0000
@@ -281,13 +281,13 @@
 .B \-really\-quiet \ \ 
 Display even less output and status messages.
 .TP
-.B \-rnd \ \ 
-Play files in random order.
-.TP
 .B \-sdp
 Specifies that the input file is a SDP ('Session Description Protocol')
 file that describes an RTP session (see http://www.live.com/mplayer/).
 .TP
+.B \-shuffle \ \ 
+Play files in random order.
+.TP
 .B \-skin <skin\ directory> (BETA CODE)
 Load skin from the given directory (WITHOUT path name).
 
@@ -1282,7 +1282,7 @@
 .TP
 .B \-noslices
 Disable drawing video by 16-pixel height slices/\:bands, instead draws the
-while frame in a single run.
+whole frame in a single run.
 May be faster or slower, depending on card/\:cache.
 It has effect only with libmpeg2 and libavcodec codecs.
 .TP
--- a/parser-mpcmd.c	Sat Dec 14 17:56:35 2002 +0000
+++ b/parser-mpcmd.c	Sun Dec 15 04:47:32 2002 +0000
@@ -224,12 +224,12 @@
 	    pt->loop = l;
 	    tmp = 1;
 	  }
-	} else if(strcasecmp(opt,"rnd") == 0) {
+	} else if(strcasecmp(opt,"shuffle") == 0) {
 	  if(last_entry && last_entry->child)
 	    last_entry->flags |= PLAY_TREE_RND;
 	  else
 	    last_parent->flags |= PLAY_TREE_RND;
-	} else if(strcasecmp(opt,"nornd") == 0) {
+	} else if(strcasecmp(opt,"noshuffle") == 0) {
 	  if(last_entry && last_entry->child)
 	    last_entry->flags &= ~PLAY_TREE_RND;
 	  else