Commit f0251c53 authored by Sam Hocevar's avatar Sam Hocevar

* Spelling fixes.

parent 535be4f6
...@@ -838,7 +838,7 @@ vlc (0.1.99d) unstable; urgency=low ...@@ -838,7 +838,7 @@ vlc (0.1.99d) unstable; urgency=low
* the YUV transformations are now plugins as well * the YUV transformations are now plugins as well
* alternative symlinks like gvlc, fbvlc are now created at compile time * alternative symlinks like gvlc, fbvlc are now created at compile time
* borrowed libmpeg2's GPLed MMX YUV transformations (16 and 32 bits) * 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 -- Samuel Hocevar <sam@via.ecp.fr> Wed, 12 Jul 2000 01:24:40 +0200
......
...@@ -20,7 +20,7 @@ libmad_input : called when input data is needed ...@@ -20,7 +20,7 @@ libmad_input : called when input data is needed
libmad_output : called whenever a frame has been decoded libmad_output : called whenever a frame has been decoded
libmad_header : called upon decoding of only a frame header libmad_header : called upon decoding of only a frame header
libmad_messages : libmad messages 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) Design: (ASCII art)
======= =======
......
...@@ -262,7 +262,7 @@ OK, let's go for an enumeration of the different tags and theor attributes : ...@@ -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 - scroll: if set to 'true', the text will scroll if it does not fit into
the 'scrollspace'. the 'scrollspace'.
Default is "true". 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. scrolling.
Default is "20". Default is "20".
- display: this value is a bit special, it allows to have a text - display: this value is a bit special, it allows to have a text
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* vlc_block_helper.h: Helper functions for data blocks management. * vlc_block_helper.h: Helper functions for data blocks management.
***************************************************************************** *****************************************************************************
* Copyright (C) 2003 VideoLAN * 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> * Authors: Gildas Bazin <gbazin@netcourrier.com>
* *
...@@ -460,7 +460,7 @@ static inline int block_FindStartcodeFromOffset( ...@@ -460,7 +460,7 @@ static inline int block_FindStartcodeFromOffset(
} }
/* Begin the search. /* 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. */ * if found, we do a more thorough check. */
i_size = p_block->i_buffer + i_size; i_size = p_block->i_buffer + i_size;
*pi_offset -= i_size; *pi_offset -= i_size;
......
...@@ -298,7 +298,7 @@ int E_(Open) ( vlc_object_t *p_this ) ...@@ -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 ) 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 ); close( p_satellite->i_handle );
free( p_satellite ); free( p_satellite );
return -1; return -1;
......
...@@ -1648,7 +1648,7 @@ static int AVI_GetKeyFlag( vlc_fourcc_t i_fourcc, uint8_t *p_byte ) ...@@ -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; return p_byte[0] & 0xC0 ? 0 : AVIIF_KEYFRAME;
case FOURCC_mp4v: case FOURCC_mp4v:
/* we should find first occurence of 0x000001b6 (32bits) /* we should find first occurrence of 0x000001b6 (32bits)
* startcode: 0x000001b6 32bits * startcode: 0x000001b6 32bits
* piture type 0(I),1(P) 2bits * piture type 0(I),1(P) 2bits
*/ */
......
...@@ -464,7 +464,7 @@ static void CloseVideo( vlc_object_t *p_this ) ...@@ -464,7 +464,7 @@ static void CloseVideo( vlc_object_t *p_this )
* Manage: handle Sys events * Manage: handle Sys events
***************************************************************************** *****************************************************************************
* This function should be called regularly by the video output thread. * 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 ) static int Manage( vout_thread_t *p_vout )
{ {
......
...@@ -249,7 +249,7 @@ static void CloseVideo( vlc_object_t *p_this ) ...@@ -249,7 +249,7 @@ static void CloseVideo( vlc_object_t *p_this )
* Manage: handle Sys events * Manage: handle Sys events
***************************************************************************** *****************************************************************************
* This function should be called regularly by the video output thread. * 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 ) static int Manage( vout_thread_t *p_vout )
{ {
......
...@@ -266,7 +266,7 @@ static void Destroy( vlc_object_t *p_this ) ...@@ -266,7 +266,7 @@ static void Destroy( vlc_object_t *p_this )
* Manage: handle GGI events * Manage: handle GGI events
***************************************************************************** *****************************************************************************
* This function should be called regularly by video output thread. It returns * 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 ) static int Manage( vout_thread_t *p_vout )
{ {
......
...@@ -374,7 +374,7 @@ static void DestroyVout( vlc_object_t *p_this ) ...@@ -374,7 +374,7 @@ static void DestroyVout( vlc_object_t *p_this )
* Manage: handle Sys events * Manage: handle Sys events
***************************************************************************** *****************************************************************************
* This function should be called regularly by video output thread. It returns * 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 ) static int Manage( vout_thread_t *p_vout )
{ {
......
...@@ -317,7 +317,7 @@ static void Close ( vlc_object_t *p_this ) ...@@ -317,7 +317,7 @@ static void Close ( vlc_object_t *p_this )
* Manage: handle Sys events * Manage: handle Sys events
***************************************************************************** *****************************************************************************
* This function should be called regularly by video output thread. It returns * 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 ) static int Manage( vout_thread_t *p_vout )
{ {
......
...@@ -876,7 +876,7 @@ error: ...@@ -876,7 +876,7 @@ error:
/***************************************************************************** /*****************************************************************************
* Error: RunThread() error loop * 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 ) static void Error( input_thread_t *p_input )
{ {
......
...@@ -1005,7 +1005,7 @@ void __sout_CfgParse( vlc_object_t *p_this, char *psz_prefix, ...@@ -1005,7 +1005,7 @@ void __sout_CfgParse( vlc_object_t *p_this, char *psz_prefix,
if( *val2.psz_string ) if( *val2.psz_string )
{ {
free( 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; goto next;
} }
free( val2.psz_string ); free( val2.psz_string );
......
...@@ -740,7 +740,7 @@ static void RunThread( vout_thread_t *p_vout) ...@@ -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 * initialization
*/ */
while( (!p_vout->b_die) && (!p_vout->b_error) ) while( (!p_vout->b_die) && (!p_vout->b_error) )
...@@ -981,7 +981,7 @@ static void RunThread( vout_thread_t *p_vout) ...@@ -981,7 +981,7 @@ static void RunThread( vout_thread_t *p_vout)
*/ */
if( p_vout->pf_manage && p_vout->pf_manage( 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 * immediately, without displaying anything - setting b_error to 1
* causes the immediate end of the main while() loop. */ * causes the immediate end of the main while() loop. */
p_vout->b_error = 1; p_vout->b_error = 1;
...@@ -1062,9 +1062,9 @@ static void RunThread( vout_thread_t *p_vout) ...@@ -1062,9 +1062,9 @@ static void RunThread( vout_thread_t *p_vout)
/***************************************************************************** /*****************************************************************************
* ErrorThread: RunThread() error loop * ErrorThread: RunThread() error loop
***************************************************************************** *****************************************************************************
* This function is called when an error occured during thread main's loop. The * This function is called when an error occurred during thread main's loop.
* thread can still receive feed, but must be ready to terminate as soon as * The thread can still receive feed, but must be ready to terminate as soon
* possible. * as possible.
*****************************************************************************/ *****************************************************************************/
static void ErrorThread( vout_thread_t *p_vout ) static void ErrorThread( vout_thread_t *p_vout )
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment