Commit c791680a authored by Dennis van Amerongen's avatar Dennis van Amerongen

minor typo loose -> lose

parent 1bf74fe7
...@@ -651,7 +651,7 @@ static void DecoderErrorCallback( const FLAC__StreamDecoder *decoder, ...@@ -651,7 +651,7 @@ static void DecoderErrorCallback( const FLAC__StreamDecoder *decoder,
{ {
case FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC: case FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC:
msg_Warn( p_dec, "an error in the stream caused the decoder to " msg_Warn( p_dec, "an error in the stream caused the decoder to "
"loose synchronization." ); "lose synchronization." );
break; break;
case FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER: case FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER:
msg_Err( p_dec, "the decoder encountered a corrupted frame header." ); msg_Err( p_dec, "the decoder encountered a corrupted frame header." );
......
...@@ -72,7 +72,7 @@ ...@@ -72,7 +72,7 @@
* sgiPacketSize=16384 * sgiPacketSize=16384
* The packetsize of the UDP frames that Kasenna sends. They should have used a default * The packetsize of the UDP frames that Kasenna sends. They should have used a default
* that is a multiple of 188 (TS frame size). Most networks don't support more than 1500 anyways. * that is a multiple of 188 (TS frame size). Most networks don't support more than 1500 anyways.
* Also, when you loose a frame of this size, imagecorruption is more likely then with smaller * Also, when you lose a frame of this size, imagecorruption is more likely then with smaller
* frames. * frames.
* sgiServerVersion=6.1.2 * sgiServerVersion=6.1.2
* Version of the server * Version of the server
......
...@@ -320,7 +320,7 @@ static int Open ( vlc_object_t *p_this ) ...@@ -320,7 +320,7 @@ static int Open ( vlc_object_t *p_this )
if( s ) free( s ); if( s ) free( s );
/* It will nearly always work even for non seekable stream thanks the /* It will nearly always work even for non seekable stream thanks the
* caching system, and if it fails we loose just a few sub */ * caching system, and if it fails we lose just a few sub */
if( stream_Seek( p_demux->s, 0 ) ) if( stream_Seek( p_demux->s, 0 ) )
{ {
msg_Warn( p_demux, "failed to rewind" ); msg_Warn( p_demux, "failed to rewind" );
......
...@@ -1718,7 +1718,7 @@ static inline void XDeint8x8FieldMotion( uint8_t *dst, int i_dst, ...@@ -1718,7 +1718,7 @@ static inline void XDeint8x8FieldMotion( uint8_t *dst, int i_dst,
#if 0 #if 0
/* Kernel interpolation (1,-5,20,20,-5,1) /* Kernel interpolation (1,-5,20,20,-5,1)
* Loose a bit more details+add aliasing than edge interpol but avoid * Lose a bit more details+add aliasing than edge interpol but avoid
* more artifacts * more artifacts
*/ */
static inline uint8_t clip1( int a ) static inline uint8_t clip1( int a )
......
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