]> git.sesse.net Git - vlc/commitdiff
minor typo loose -> lose
authorDennis van Amerongen <trax@videolan.org>
Sat, 27 May 2006 11:12:22 +0000 (11:12 +0000)
committerDennis van Amerongen <trax@videolan.org>
Sat, 27 May 2006 11:12:22 +0000 (11:12 +0000)
modules/codec/flac.c
modules/demux/sgimb.c
modules/demux/subtitle.c
modules/video_filter/deinterlace.c

index 664c5dacdf44603f50083366750bc5774992bafd..6d1500becc4eaa4afb87e4a7e8a09f56d539660d 100644 (file)
@@ -651,7 +651,7 @@ static void DecoderErrorCallback( const FLAC__StreamDecoder *decoder,
     {
     case FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC:
         msg_Warn( p_dec, "an error in the stream caused the decoder to "
-                 "loose synchronization." );
+                 "lose synchronization." );
         break;
     case FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER:
         msg_Err( p_dec, "the decoder encountered a corrupted frame header." );
index b316d45715aed5dd28b48fc99f8c3da9a3051349..fa6ca9a6d045c155a5aa7a65e3568a30242ee0c1 100644 (file)
@@ -72,7 +72,7 @@
  * sgiPacketSize=16384
  *     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.
- *     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.
  * sgiServerVersion=6.1.2
  *     Version of the server
index 29a2e8e0b04f3c344c611d449db6fb8c8f8f9975..a13995f39e059b4876837f61ed0ed4541f2b415c 100644 (file)
@@ -320,7 +320,7 @@ static int Open ( vlc_object_t *p_this )
         if( s ) free( s );
 
         /* 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 ) )
         {
             msg_Warn( p_demux, "failed to rewind" );
index a0cab3eee36a44f4194a1e580c9a2cef59e5972d..3815825efc79a114139458f0e4418f999f5b5d25 100644 (file)
@@ -1718,7 +1718,7 @@ static inline void XDeint8x8FieldMotion( uint8_t *dst, int i_dst,
 
 #if 0
 /* 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
  */
 static inline uint8_t clip1( int a )