[MPlayer-cvslog] r22301 - in trunk: 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
diego
subversion at mplayerhq.hu
Wed Feb 21 11:05:47 CET 2007
Author: diego
Date: Wed Feb 21 11:05:46 2007
New Revision: 22301
Modified:
trunk/DOCS/tech/oggless-xiph-codecs.txt
trunk/Gui/win32/Changelog
trunk/TOOLS/subfont-c/font.desc.tail
trunk/libmpcodecs/vf_mcdeint.c
trunk/libmpcodecs/vf_remove_logo.c
trunk/libmpdemux/demux_viv.c
trunk/libvo/vo_bl.c
trunk/subopt-helper.c
Log:
cosmetics: Fix some common typos, sepErate --> sepArate, deciSSion --> deciSion.
Modified: trunk/DOCS/tech/oggless-xiph-codecs.txt
==============================================================================
--- trunk/DOCS/tech/oggless-xiph-codecs.txt (original)
+++ trunk/DOCS/tech/oggless-xiph-codecs.txt Wed Feb 21 11:05:46 2007
@@ -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
Modified: trunk/Gui/win32/Changelog
==============================================================================
--- trunk/Gui/win32/Changelog (original)
+++ trunk/Gui/win32/Changelog Wed Feb 21 11:05:46 2007
@@ -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
Modified: trunk/TOOLS/subfont-c/font.desc.tail
==============================================================================
--- trunk/TOOLS/subfont-c/font.desc.tail (original)
+++ trunk/TOOLS/subfont-c/font.desc.tail Wed Feb 21 11:05:46 2007
@@ -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
Modified: trunk/libmpcodecs/vf_mcdeint.c
==============================================================================
--- trunk/libmpcodecs/vf_mcdeint.c (original)
+++ trunk/libmpcodecs/vf_mcdeint.c Wed Feb 21 11:05:46 2007
@@ -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;
}
Modified: trunk/libmpcodecs/vf_remove_logo.c
==============================================================================
--- trunk/libmpcodecs/vf_remove_logo.c (original)
+++ trunk/libmpcodecs/vf_remove_logo.c Wed Feb 21 11:05:46 2007
@@ -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
{
Modified: trunk/libmpdemux/demux_viv.c
==============================================================================
--- trunk/libmpdemux/demux_viv.c (original)
+++ trunk/libmpdemux/demux_viv.c Wed Feb 21 11:05:46 2007
@@ -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)
Modified: trunk/libvo/vo_bl.c
==============================================================================
--- trunk/libvo/vo_bl.c (original)
+++ trunk/libvo/vo_bl.c Wed Feb 21 11:05:46 2007
@@ -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;
Modified: trunk/subopt-helper.c
==============================================================================
--- trunk/subopt-helper.c (original)
+++ trunk/subopt-helper.c Wed Feb 21 11:05:46 2007
@@ -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 */
More information about the MPlayer-cvslog
mailing list