[MPlayer-cvslog] r25517 - in trunk: DOCS/tech/formats.txt DOCS/tech/mirrors/mirror_howto.txt DOCS/tech/playtree m_option.c playtree.c
diego
subversion at mplayerhq.hu
Sun Dec 23 22:22:02 CET 2007
Author: diego
Date: Sun Dec 23 22:22:02 2007
New Revision: 25517
Log:
typo: begining --> beginning
Modified:
trunk/DOCS/tech/formats.txt
trunk/DOCS/tech/mirrors/mirror_howto.txt
trunk/DOCS/tech/playtree
trunk/m_option.c
trunk/playtree.c
Modified: trunk/DOCS/tech/formats.txt
==============================================================================
--- trunk/DOCS/tech/formats.txt (original)
+++ trunk/DOCS/tech/formats.txt Sun Dec 23 22:22:02 2007
@@ -113,7 +113,7 @@
and has more flexible stream options (including network stuff) like ASF.
Headers: header can be placed at the beginning or at the end of file.
- About half of my files has it at the begining, others has it at the end.
+ About half of my files have it at the beginning, others have it at the end.
Broken files are only playable if they have header at the beginning!
Codecs: any codecs allowed, both CBR and VBR.
Modified: trunk/DOCS/tech/mirrors/mirror_howto.txt
==============================================================================
--- trunk/DOCS/tech/mirrors/mirror_howto.txt (original)
+++ trunk/DOCS/tech/mirrors/mirror_howto.txt Sun Dec 23 22:22:02 2007
@@ -78,7 +78,7 @@ Using a lock file is recommended but not
generation is handled by `mktemp` which is available from
http://www.mktemp.org/mktemp/ .
-The script contains a few configuration variables at the begining that
+The script contains a few configuration variables at the beginning that
can and should be set:
PATH: The $PATH to be used within the script (recommended).
LOCK: The full path to the lock file to be used (/var/lock/mplayer-mirror-lock
@@ -137,7 +137,7 @@ DO NOT send the private key to the mirro
The public key should be placed in the ~/.ssh/authorized_keys file of the
user running the updates. To restrict the ssh key to only one command place
-the following directives at the begining of the line with the key:
+the following directives at the beginning of the line with the key:
from="*.mplayerhq.hu",command="<path_to_update_mplayer_rsync>"
e.g.:
---
Modified: trunk/DOCS/tech/playtree
==============================================================================
--- trunk/DOCS/tech/playtree (original)
+++ trunk/DOCS/tech/playtree Sun Dec 23 22:22:02 2007
@@ -87,7 +87,7 @@ PLAY_TREE_ITER_ERROR : obvious
PLAY_TREE_ITER_ENTRY : we are now on an entry
PLAY_TREE_ITER_NODE : we are now on a node
PLAY_TREE_ITER_END : we are now at end
-(( Note : I must add a PLAY_TREE_ITER_BEGINING for the begining. Don't know
+(( Note : I must add a PLAY_TREE_ITER_BEGINNING for the beginning. Don't know
what it will return in a such case. PLAY_TREE_ITER_ERROR ? ))
There is also play_tree_iter_up_step which can be used to break a loop or skip
Modified: trunk/m_option.c
==============================================================================
--- trunk/m_option.c (original)
+++ trunk/m_option.c Sun Dec 23 22:22:02 2007
@@ -661,7 +661,7 @@ const m_option_type_t m_option_type_stri
"A list of strings separated by ','\n"
"Option with a name ending in an * permits using the following suffix: \n"
"\t-add: Add the given parameters at the end of the list.\n"
- "\t-pre: Add the given parameters at the begining of the list.\n"
+ "\t-pre: Add the given parameters at the beginning of the list.\n"
"\t-del: Remove the entry at the given indices.\n"
"\t-clr: Clear the list.\n"
"e.g: -vf-add flip,mirror -vf-del 2,5\n",
Modified: trunk/playtree.c
==============================================================================
--- trunk/playtree.c (original)
+++ trunk/playtree.c Sun Dec 23 22:22:02 2007
@@ -169,7 +169,7 @@ play_tree_remove(play_tree_t* pt, int fr
assert(pt->prev->next == pt);
#endif
pt->prev->next = NULL;
- } // Begining of list
+ } // Beginning of list
else if(pt->next) {
#ifdef MP_DEBUG
assert(pt->next->prev == pt);
More information about the MPlayer-cvslog
mailing list