changeset 22283:bc9e95184521

cosmetics: Fix some common typos, sepErate --> sepArate, deciSSion --> deciSion.
author diego
date Wed, 21 Feb 2007 10:05:46 +0000
parents c773409e6e43
children 83366c8e1928
files DOCS/tech/oggless-xiph-codecs.txt Gui/win32/Changelog TOOLS/subfont-c/font.desc.tail libmpcodecs/vf_mcdeint.c libmpcodecs/vf_remove_logo.c libmpdemux/demux_viv.c libvo/vo_bl.c subopt-helper.c
diffstat 8 files changed, 13 insertions(+), 13 deletions(-) [+]
line wrap: on
line diff
--- a/DOCS/tech/oggless-xiph-codecs.txt	Wed Feb 21 09:25:52 2007 +0000
+++ b/DOCS/tech/oggless-xiph-codecs.txt	Wed Feb 21 10:05:46 2007 +0000
@@ -14,7 +14,7 @@
 
 Minimum container requirments:
 This appendix only explains how to store xiph codecs in containers which 
-support at least one global header per stream, can seperate individual codec
+support at least one global header per stream, can separate individual codec
 packets and in principle support the codec, so for example in the case of
 vorbis that would be variable bitrate and variable number of samples/packet
 Storage in other containers is outside the scope of this appendix
@@ -25,7 +25,7 @@
 If the container can store 3 headers per stream in an unambiguos and ordered
 way then they shall be stored in that way, if OTOH the container is only
 capable to store a single global header then the 3 codec headers shall be
-concatenated without any additional header, footer or seperator between them
+concatenated without any additional header, footer or separator between them
 to recover the 3 headers from such a global header the following procedure
 shall be used:
 
@@ -48,7 +48,7 @@
 Storing packets:
 Each codec packet shall be stored in exactly one "container packet"
 and one "container packet" must not contain more then one codec packet
-"container packet" here means the smallest seperateable unit of data in the
+"container packet" here means the smallest separatable unit of data in the
 container
 
 
@@ -113,12 +113,12 @@
 
 Example and Disscussion of mpeg-ps / mpeg-ts container
 These containers neither support a global header nor provide the neccessary
-packet seperation / framing, so storing xiph codecs in them is outside the 
+packet separation / framing, so storing xiph codecs in them is outside the 
 scope of this appendix
 
 
 Example and Disscussion of wav container
-wav does not provide the neccessary packet seperation / framing, so storing 
+wav does not provide the neccessary packet separation / framing, so storing 
 xiph codecs in it is outside the scope of this appendix
 
 
--- a/Gui/win32/Changelog	Wed Feb 21 09:25:52 2007 +0000
+++ b/Gui/win32/Changelog	Wed Feb 21 10:05:46 2007 +0000
@@ -297,7 +297,7 @@
 pre4
 - URL open
 - use windows native menus
-- Gui runs in a seperate thread now because some controls interupt playback :(
+- Gui runs in a separate thread now because some controls interrupt playback :(
 
 pre 3
 - some of the previous features broken again
--- a/TOOLS/subfont-c/font.desc.tail	Wed Feb 21 09:25:52 2007 +0000
+++ b/TOOLS/subfont-c/font.desc.tail	Wed Feb 21 10:05:46 2007 +0000
@@ -22,7 +22,7 @@
 ; the alpha to get a smooth black outline of the letters, which 
 ; makes them visible even on white areas of the movie.
 ;
-; MPlayer needs at least two seperate 8bit/pixel format bitmap 
+; MPlayer needs at least two separate 8bit/pixel format bitmap
 ; files and a .desc file to be able to use the font. One of the
 ; files is the bitmap the other is the alpha. The .desc (like this
 ; one) gives MPlayer the information needed to convert a bitmap
--- a/libmpcodecs/vf_mcdeint.c	Wed Feb 21 09:25:52 2007 +0000
+++ b/libmpcodecs/vf_mcdeint.c	Wed Feb 21 10:05:46 2007 +0000
@@ -218,7 +218,7 @@
             case 1:
                 avctx_enc->flags |= CODEC_FLAG_4MV;
                 avctx_enc->dia_size=2;
-//                avctx_enc->mb_decision = MB_DECISSION_RD;
+//                avctx_enc->mb_decision = MB_DECISION_RD;
             case 0:
                 avctx_enc->flags |= CODEC_FLAG_QPEL;
             }
--- a/libmpcodecs/vf_remove_logo.c	Wed Feb 21 09:25:52 2007 +0000
+++ b/libmpcodecs/vf_remove_logo.c	Wed Feb 21 10:05:46 2007 +0000
@@ -142,8 +142,8 @@
 /**
  * \brief Stores persistant variables.
  *
- * Variables stored here are kept from frame to frame, and seperate instances of
- * the filter will get their own seperate copies.
+ * Variables stored here are kept from frame to frame, and separate instances of
+ * the filter will get their own separate copies.
  */
 typedef struct
 {
--- a/libmpdemux/demux_viv.c	Wed Feb 21 09:25:52 2007 +0000
+++ b/libmpdemux/demux_viv.c	Wed Feb 21 10:05:46 2007 +0000
@@ -79,7 +79,7 @@
 } vivo_priv_t;
 
 /* parse all possible extra headers */
-/* (audio headers are seperate - mostly with recordtype=3 or 4) */
+/* (audio headers are separate - mostly with recordtype=3 or 4) */
 #define TEXTPARSE_ALL 1
 
 static void vivo_parse_text_header(demuxer_t *demux, int header_len)
--- a/libvo/vo_bl.c	Wed Feb 21 09:25:52 2007 +0000
+++ b/libvo/vo_bl.c	Wed Feb 21 10:05:46 2007 +0000
@@ -424,7 +424,7 @@
 					bl_hosts[no_bl_hosts].port);
 			no_bl_hosts++;
 		} else {
-			mp_msg(MSGT_VO, MSGL_ERR, "bl: syntax error in entry %d in subdevice %s, should be a comma seperated\nlist of host=name:port and file=foo.bml\n", no_bl_hosts, no_bl_files, arg);
+			mp_msg(MSGT_VO, MSGL_ERR, "bl: syntax error in entry %d in subdevice %s, should be a comma separated\nlist of host=name:port and file=foo.bml\n", no_bl_hosts, no_bl_files, arg);
 			return 1;
 		}
 		p = ++q;
--- a/subopt-helper.c	Wed Feb 21 09:25:52 2007 +0000
+++ b/subopt-helper.c	Wed Feb 21 10:05:46 2007 +0000
@@ -108,7 +108,7 @@
           /* type specific code */
           if ( opts[idx].type == OPT_ARG_BOOL )
           {
-            /* Handle OPT_ARG_BOOL seperately so *
+            /* Handle OPT_ARG_BOOL separately so *
              * the others can share code.        */
 
             /* set option to true */