]> git.sesse.net Git - vlc/commitdiff
* Spelling fixes.
authorSam Hocevar <sam@videolan.org>
Sat, 28 Aug 2004 11:29:48 +0000 (11:29 +0000)
committerSam Hocevar <sam@videolan.org>
Sat, 28 Aug 2004 11:29:48 +0000 (11:29 +0000)
14 files changed:
debian/changelog
doc/mad/DESIGN
doc/skins/skins-howto.txt
include/vlc_block_helper.h
modules/access/satellite/access.c
modules/demux/avi/avi.c
modules/video_output/directx/directx.c
modules/video_output/directx/glwin32.c
modules/video_output/ggi.c
modules/video_output/opengl.c
modules/video_output/sdl.c
src/input/input.c
src/stream_output/stream_output.c
src/video_output/video_output.c

index f62b0f7ba97fdaa3fd330ce9c325bf4e4f628674..a98bbb706b628843ec76b5dc862ae7dba0356394 100644 (file)
@@ -838,7 +838,7 @@ vlc (0.1.99d) unstable; urgency=low
   * the YUV transformations are now plugins as well
   * alternative symlinks like gvlc, fbvlc are now created at compile time
   * borrowed libmpeg2's GPLed MMX YUV transformations (16 and 32 bits)
-  * fixed an endianness problem which occured on iMacs
+  * fixed an endianness problem which occurred on iMacs
 
  -- Samuel Hocevar <sam@via.ecp.fr>  Wed, 12 Jul 2000 01:24:40 +0200
 
index 12035ba312cdd036a1421f4626e2ccd2a90ce796..637def8c5e12e7fa9603dec86d5477d42f62577c 100644 (file)
@@ -20,7 +20,7 @@ libmad_input  : called when input data is needed
 libmad_output  : called whenever a frame has been decoded
 libmad_header  : called upon decoding of only a frame header
 libmad_messages : libmad messages
-libmad_error   : called whenever an error occured during the decoding process
+libmad_error   : called whenever an error occurred during the decoding process
 
 Design: (ASCII art)
 =======
index 9336fea3473924fa075fb52664e6709b75ae3346..99780fd3775da8a105f3d4af9da2650f66347683 100644 (file)
@@ -262,7 +262,7 @@ OK, let's go for an enumeration of the different tags and theor attributes :
      - scroll: if set to 'true', the text will scroll if it does not fit into
        the 'scrollspace'.
        Default is "true".
-     - scrollspace: size in pixel between two occurences of the text when
+     - scrollspace: size in pixel between two occurrences of the text when
        scrolling.
        Default is "20".
      - display: this value is a bit special, it allows to have a text
index 69e5b464004ef5d04c3e7e88224ba9efabd71211..034739f469203de23c988ec02c1d0e423412e306 100644 (file)
@@ -2,7 +2,7 @@
  * vlc_block_helper.h: Helper functions for data blocks management.
  *****************************************************************************
  * Copyright (C) 2003 VideoLAN
- * $Id: vlc_block_helper.h,v 1.7 2003/12/07 12:11:13 gbazin Exp $
+ * $Id$
  *
  * Authors: Gildas Bazin <gbazin@netcourrier.com>
  *
@@ -460,7 +460,7 @@ static inline int block_FindStartcodeFromOffset(
     }
 
     /* Begin the search.
-     * We first look for an occurence of the 1st startcode byte and
+     * We first look for an occurrence of the 1st startcode byte and
      * if found, we do a more thorough check. */
     i_size = p_block->i_buffer + i_size;
     *pi_offset -= i_size;
index 6681bcb40f8e6c00a671d22043176356045745ab..23819a02e78f6b11a259bccf103c31fb8ab8b821 100644 (file)
@@ -298,7 +298,7 @@ int E_(Open) ( vlc_object_t *p_this )
 
         if ( ioctl_SECControl( i_tuner, i_freq, b_pol, i_lnb_slof, b_diseqc ) < 0 )
         {
-            msg_Err( p_input, "an error occured when controling SEC" );
+            msg_Err( p_input, "an error occurred when controling SEC" );
             close( p_satellite->i_handle );
             free( p_satellite );
             return -1;
index ecdf17d89fb1d8fb0c138cb8d4f94af2dd76db71..eea48b6c522463eb44d9a55ea12fb9ea7f0ae480 100644 (file)
@@ -1648,7 +1648,7 @@ static int AVI_GetKeyFlag( vlc_fourcc_t i_fourcc, uint8_t *p_byte )
              */
             return p_byte[0] & 0xC0 ? 0 : AVIIF_KEYFRAME;
         case FOURCC_mp4v:
-            /* we should find first occurence of 0x000001b6 (32bits)
+            /* we should find first occurrence of 0x000001b6 (32bits)
              *  startcode:      0x000001b6   32bits
              *  piture type     0(I),1(P)     2bits
              */
index 560a6b469043399960516c86cfc1341c63159358..50db94c5413b54f7e85bca1af8939a50def26d12 100644 (file)
@@ -464,7 +464,7 @@ static void CloseVideo( vlc_object_t *p_this )
  * Manage: handle Sys events
  *****************************************************************************
  * This function should be called regularly by the video output thread.
- * It returns a non null value if an error occured.
+ * It returns a non null value if an error occurred.
  *****************************************************************************/
 static int Manage( vout_thread_t *p_vout )
 {
index eee84c718f0aba14082d394bed54b37591080ae8..44d783c23a102ade346f017739455ace5fbdab10 100644 (file)
@@ -249,7 +249,7 @@ static void CloseVideo( vlc_object_t *p_this )
  * Manage: handle Sys events\r
  *****************************************************************************\r
  * This function should be called regularly by the video output thread.\r
- * It returns a non null value if an error occured.\r
+ * It returns a non null value if an error occurred.\r
  *****************************************************************************/\r
 static int Manage( vout_thread_t *p_vout )\r
 {\r
index b17087a5d2562b3ccdb65105dae36aa40599bd3a..01a3ccdfeb3aabdd2512cb0b7f5615b3fdf27ca1 100644 (file)
@@ -266,7 +266,7 @@ static void Destroy( vlc_object_t *p_this )
  * Manage: handle GGI events
  *****************************************************************************
  * This function should be called regularly by video output thread. It returns
- * a non null value if an error occured.
+ * a non null value if an error occurred.
  *****************************************************************************/
 static int Manage( vout_thread_t *p_vout )
 {
index ec23d9abb4992e62bb3547532e31ea5187202814..fbfe1f5333be0766705a1b170c274446a6f14621 100644 (file)
@@ -374,7 +374,7 @@ static void DestroyVout( vlc_object_t *p_this )
  * Manage: handle Sys events
  *****************************************************************************
  * This function should be called regularly by video output thread. It returns
- * a non null value if an error occured.
+ * a non null value if an error occurred.
  *****************************************************************************/
 static int Manage( vout_thread_t *p_vout )
 {
index 8f791d54ba65edf1a0e3b0b641c21fdeb9f1d6bf..b0c51086010f30482f23f03b323ff179f3c426d9 100644 (file)
@@ -317,7 +317,7 @@ static void Close ( vlc_object_t *p_this )
  * Manage: handle Sys events
  *****************************************************************************
  * This function should be called regularly by video output thread. It returns
- * a non null value if an error occured.
+ * a non null value if an error occurred.
  *****************************************************************************/
 static int Manage( vout_thread_t *p_vout )
 {
index 7e5868f1408527bbbae6b1d82a05dda74c4a82d0..ef94dba65930f10ecad3877d52b647190f72888d 100644 (file)
@@ -876,7 +876,7 @@ error:
 /*****************************************************************************
  * Error: RunThread() error loop
  *****************************************************************************
- * This function is called when an error occured during thread main's loop.
+ * This function is called when an error occurred during thread main's loop.
  *****************************************************************************/
 static void Error( input_thread_t *p_input )
 {
index cad6045f2ebb3ca78939e39c2725e76fd0fe9d8c..558560e91565663b61ff581ddc04b7fb2dfe6fe6 100644 (file)
@@ -1005,7 +1005,7 @@ void __sout_CfgParse( vlc_object_t *p_this, char *psz_prefix,
             if( *val2.psz_string )
             {
                 free( val2.psz_string );
-                msg_Dbg( p_this, "ignoring option %s (not first occurence)", psz_name );
+                msg_Dbg( p_this, "ignoring option %s (not first occurrence)", psz_name );
                 goto next;
             }
             free( val2.psz_string );
index 8ee4438a05c575c0efeaa0d0411e03dd161573e4..c759bd60bb2f4e481893fefb09a4cd723cbc6166 100644 (file)
@@ -740,7 +740,7 @@ static void RunThread( vout_thread_t *p_vout)
     }
 
     /*
-     * Main loop - it is not executed if an error occured during
+     * Main loop - it is not executed if an error occurred during
      * initialization
      */
     while( (!p_vout->b_die) && (!p_vout->b_error) )
@@ -981,7 +981,7 @@ static void RunThread( vout_thread_t *p_vout)
          */
         if( p_vout->pf_manage && p_vout->pf_manage( p_vout ) )
         {
-            /* A fatal error occured, and the thread must terminate
+            /* A fatal error occurred, and the thread must terminate
              * immediately, without displaying anything - setting b_error to 1
              * causes the immediate end of the main while() loop. */
             p_vout->b_error = 1;
@@ -1062,9 +1062,9 @@ static void RunThread( vout_thread_t *p_vout)
 /*****************************************************************************
  * ErrorThread: RunThread() error loop
  *****************************************************************************
- * This function is called when an error occured during thread main's loop. The
- * thread can still receive feed, but must be ready to terminate as soon as
- * possible.
+ * This function is called when an error occurred during thread main's loop.
+ * The thread can still receive feed, but must be ready to terminate as soon
+ * as possible.
  *****************************************************************************/
 static void ErrorThread( vout_thread_t *p_vout )
 {