]> git.sesse.net Git - vlc/commitdiff
Spelling
authorRémi Denis-Courmont <rem@videolan.org>
Thu, 29 May 2008 16:34:36 +0000 (19:34 +0300)
committerRémi Denis-Courmont <rem@videolan.org>
Thu, 29 May 2008 16:34:36 +0000 (19:34 +0300)
16 files changed:
include/vlc_vout.h
modules/access/mms/asf.h
modules/codec/ffmpeg/ffmpeg.h
modules/gui/skins2/win32/win32_graphics.cpp
modules/misc/quartztext.c
modules/packetizer/mpeg4audio.c
modules/packetizer/vc1.c
modules/services_discovery/upnp_cc.cpp
modules/video_chroma/i420_rgb16.c
modules/video_filter/panoramix.c
projects/mozilla/Makefile.am
src/misc/update.h
src/modules/modules.h
src/modules/os.c
src/network/getaddrinfo.c
src/vlc.c

index a65a2321ed9c7b568a63f7e3dc95fdf1661d4468..f148d3653fb8ccdb96442483eea9f37d84db4051 100644 (file)
@@ -382,7 +382,7 @@ typedef struct vout_chroma_t
     /** conversion functions */
     vout_chroma_convert_t *pf_convert;
 
-    /** Private module-dependant data */
+    /** Private module-dependent data */
     chroma_sys_t *      p_sys;                               /* private data */
 
     /** Plugin used and shortcuts to access its capabilities */
@@ -396,7 +396,7 @@ typedef struct vout_chroma_t
 /**
  * Video output thread descriptor
  *
- * Any independant video output device, such as an X11 window or a GGI device,
+ * Any independent video output device, such as an X11 window or a GGI device,
  * is represented by a video output thread, and described using the following
  * structure.
  */
index 4c198a550066213f18dc21eb868cab08b1e52ccd..049328c9244b34f783f7d986ad69b63180a7f526 100644 (file)
@@ -24,7 +24,7 @@
 /****************************************************************************
  * XXX:
  *  Definitions and data duplicated from asf demuxers but I want access
- * and demux plugins to be independant
+ * and demux plugins to be independent
  *
  ****************************************************************************/
 
index 0f5ed00784f47ba2148724a70ee4ec045b7be0e1..da835946cd95e4355d7dc4b0ff15f7e1443b15c6 100644 (file)
@@ -166,7 +166,7 @@ N_("<filterName>[:<option>[:<option>...]][[,|/][-]<filterName>[:<option>...]]...
 "tn:64:128:256\n" \
 "Filters                        Options\n" \
 "short  long name       short   long option     Description\n" \
-"*      *               a       autoq           cpu power dependant enabler\n" \
+"*      *               a       autoq           cpu power dependent enabler\n" \
 "                       c       chrom           chrominance filtring enabled\n" \
 "                       y       nochrom         chrominance filtring disabled\n" \
 "hb     hdeblock        (2 Threshold)           horizontal deblocking filter\n" \
index 5196a96eace4fc022ed065a4d292d684f69d8937..00a4f9b57785d80fed3ce252f3918a178478fc97 100644 (file)
@@ -107,7 +107,7 @@ void Win32Graphics::drawBitmap( const GenericBitmap &rBitmap,
     bmpInfo.bmiHeader.biCompression = BI_RGB;
     bmpInfo.bmiHeader.biSizeImage = width * height * 4;
 
-    // Create a DIB (Device Independant Bitmap) and associate it with
+    // Create a DIB (Device Independent Bitmap) and associate it with
     // a temporary DC
     HDC hDC = CreateCompatibleDC( m_hDC );
     HBITMAP hBmp = CreateDIBSection( hDC, &bmpInfo, DIB_RGB_COLORS,
index 1079ba8201c049fbaf016c15f531f4eb24ce046d..c9eb69870e659904c4abc82b6fe4a70728e7a4c5 100644 (file)
@@ -1032,7 +1032,7 @@ static offscreen_bitmap_t *Compose( int i_text_align, UniChar *psz_utf16_str, ui
                     // you move down the page
                     y -= ascent;
 
-                    // Set the outlining for this line to be dependant on the size of the line -
+                    // Set the outlining for this line to be dependent on the size of the line -
                     // make it about 5% of the ascent, with a minimum at 1.0
                     float f_thickness = FixedToFloat( ascent ) * 0.05;
                     CGContextSetLineWidth( p_context, (( f_thickness > 1.0 ) ? 1.0 : f_thickness ));
index c9b16d7d36933e89a4e2583521f02aee07bdc9cb..ecf5a66608a5a1dc8b022d19a6e0931f38c7aaf5 100644 (file)
@@ -830,7 +830,7 @@ static int LOASParse( decoder_t *p_dec, uint8_t *p_buffer, int i_buffer )
     if( !p_sys->b_latm_cfg )
         return 0;
 
-    /* FIXME do we need to split the subframe into independant packet ? */
+    /* FIXME do we need to split the subframe into independent packet ? */
     if( p_sys->latm.i_sub_frames > 1 )
         msg_Err( p_dec, "latm sub frames not yet supported, please send a sample" );
 
index f2b7066440f29f0f93862baed059a062b7f1c074..ef03298378942798bf10dc218dc8207dce2c2930 100644 (file)
@@ -338,7 +338,7 @@ static void BuildExtraData( decoder_t *p_dec )
     memcpy( (uint8_t*)p_es->p_extra + p_sys->sh.p_sh->i_buffer,
             p_sys->ep.p_ep->p_buffer, p_sys->ep.p_ep->i_buffer );
 }
-/* ParseIDU: parse an Independant Decoding Unit */
+/* ParseIDU: parse an Independent Decoding Unit */
 static block_t *ParseIDU( decoder_t *p_dec, block_t *p_frag )
 {
     decoder_sys_t *p_sys = p_dec->p_sys;
index c91a3ba5967046e90b866bf9bc00a9d3ca4695e5..55ec72158fe492dc8fc4e0a122d3f0bb80aa928b 100644 (file)
@@ -6,7 +6,7 @@
  *
  * Authors: Rémi Denis-Courmont <rem # videolan.org>
  *
- * Based on original wxWindows patch for VLC, and dependant on CyberLink
+ * Based on original wxWindows patch for VLC, and dependent on CyberLink
  * UPnP library from :
  *          Satoshi Konno <skonno@cybergarage.org>
  *
index 8e547ac656bd01a36d9c5ee35c921208465c9f30..50da750ad1c5290dbf2e8c35c6f579bde196d207 100644 (file)
@@ -78,7 +78,7 @@ void I420_RGB16_dither( vout_thread_t *p_vout, picture_t *p_src,
     int         i_uval, i_vval;                           /* U and V samples */
     int         i_red, i_green, i_blue;          /* U and V modified samples */
     uint16_t *  p_yuv = p_vout->chroma.p_sys->p_rgb16;
-    uint16_t *  p_ybase;                     /* Y dependant conversion table */
+    uint16_t *  p_ybase;                     /* Y dependent conversion table */
 
     /* Conversion buffer pointer */
     uint16_t *  p_buffer_start = (uint16_t*)p_vout->chroma.p_sys->p_buffer;
@@ -228,7 +228,7 @@ void I420_RGB16( vout_thread_t *p_vout, picture_t *p_src,
     int         i_uval, i_vval;                           /* U and V samples */
     int         i_red, i_green, i_blue;          /* U and V modified samples */
     uint16_t *  p_yuv = p_vout->chroma.p_sys->p_rgb16;
-    uint16_t *  p_ybase;                     /* Y dependant conversion table */
+    uint16_t *  p_ybase;                     /* Y dependent conversion table */
 
     /* Conversion buffer pointer */
     uint16_t *  p_buffer_start = (uint16_t*)p_vout->chroma.p_sys->p_buffer;
@@ -825,7 +825,7 @@ void I420_RGB32( vout_thread_t *p_vout, picture_t *p_src,
     int         i_uval, i_vval;                           /* U and V samples */
     int         i_red, i_green, i_blue;          /* U and V modified samples */
     uint32_t *  p_yuv = p_vout->chroma.p_sys->p_rgb32;
-    uint32_t *  p_ybase;                     /* Y dependant conversion table */
+    uint32_t *  p_ybase;                     /* Y dependent conversion table */
 
     /* Conversion buffer pointer */
     uint32_t *  p_buffer_start = (uint32_t*)p_vout->chroma.p_sys->p_buffer;
index 5894baba1a40f3c61efcd750a087ff82f5966ebb..fcb3594ab109233e8be62a204ef74a6a23663329 100644 (file)
@@ -40,7 +40,7 @@
 #define OVERLAP        2350
 #ifdef OVERLAP
     #include <math.h>
-    // OS CODE DEPENDANT to get display dimensions
+    // OS CODE DEPENDENT to get display dimensions
     #ifdef SYS_MINGW32
         #include <windows.h>
     #else
@@ -360,7 +360,7 @@ case VLC_FOURCC('c','y','u','v'):    // packed by 2
     p_vout->p_sys->i_col = var_CreateGetInteger( p_vout, CFG_PREFIX "cols" );
     p_vout->p_sys->i_row = var_CreateGetInteger( p_vout, CFG_PREFIX "rows" );
 
-// OS dependant code :  Autodetect number of displays in wall
+// OS dependent code :  Autodetect number of displays in wall
 #ifdef SYS_MINGW32
     if ((p_vout->p_sys->i_col < 0) || (p_vout->p_sys->i_row < 0) )
     {
@@ -552,7 +552,7 @@ static int AdjustHeight( vout_thread_t *p_vout )
     double d_halfLength_calculated;
     int    i_offset = 0;
 
-// OS DEPENDANT CODE to get display dimensions
+// OS DEPENDENT CODE to get display dimensions
         if (b_fullscreen)
         {
 #ifdef SYS_MINGW32
index 2876ce37c4e124776d55b5c59353913f083028e6..f03bc99e7f220482fc5f1f29e7c89eb030394894 100644 (file)
@@ -94,7 +94,7 @@ npvlc.rsrc: $(srcdir)/vlc.r
 # Plugin uses shared libraries that are located relatively through @executable_path,
 # which unfortunately references the path of the App using the Plugin, rather than the
 # Plugin itself. Since this Plugin should always be installed in '/Library/Internet Plug-Ins',
-# it is safer to force dylibs to locate dependants through a fixed path
+# it is safer to force dylibs to locate dependents through a fixed path
 #
 define FIXEXECPATH
        otool -L "$$dylib" | \
index ba3740272acc5fd857d434aa7d5ec0ab3a11c4ea..b0ebf458bafccfd8f64df4da90f69921fafcfab1 100644 (file)
@@ -115,7 +115,7 @@ struct signature_packet_t
     } specific;
 
 /* The part below is made of consecutive MPIs, their number and size being
- * public-key-algorithm dependant.
+ * public-key-algorithm dependent.
  *
  * Since we use DSA signatures only, there is 2 integers, r & s, made of:
  *      2 bytes for the integer length (scalar number)
index 7c1f210e78a43b0644fd19432aba285af4e9036f..cc2207bbb9325ff7d3c8777b6c0e689ed8e28eca 100644 (file)
@@ -153,7 +153,7 @@ void  __module_EndBank         ( vlc_object_t * );
 #define module_ResetBank(a)    __module_ResetBank(VLC_OBJECT(a))
 void  __module_ResetBank       ( vlc_object_t * );
 
-/* Low-level OS-dependant handler */
+/* Low-level OS-dependent handler */
 int  module_Call   (module_t *);
 int  module_Load   (vlc_object_t *, const char *, module_handle_t *);
 void module_Unload (module_handle_t);
index 2599e6587dd557a096c69da4a0471f084cb9c577..7575e88b281e002994cb01254c6abbf1e32cc0c7 100644 (file)
@@ -129,7 +129,7 @@ int module_Call( module_t *p_module )
 }
 
 /**
- * Load a dynamically linked library using a system dependant method.
+ * Load a dynamically linked library using a system dependent method.
  *
  * \param p_this vlc object
  * \param psz_file library file
@@ -241,7 +241,7 @@ int module_Load( vlc_object_t *p_this, const char *psz_file,
  * CloseModule: unload a dynamic library
  *
  * This function unloads a previously opened dynamically linked library
- * using a system dependant method. No return value is taken in consideration,
+ * using a system dependent method. No return value is taken in consideration,
  * since some libraries sometimes refuse to close properly.
  * \param handle handle of the library
  * \return nothing
index 5671123ae3a7ba6039d26f35acb79b23e39602b1..236088e2dde1c8de8b8cd25ab975cccf90d91e65 100644 (file)
@@ -107,7 +107,7 @@ const char *vlc_gai_strerror (int errnum)
                   NI_DGRAM)
 /*
  * getnameinfo() non-thread-safe IPv4-only implementation,
- * Address-family-independant address to hostname translation
+ * Address-family-independent address to hostname translation
  * (reverse DNS lookup in case of IPv4).
  *
  * This is meant for use on old IP-enabled systems that are not IPv6-aware,
@@ -281,7 +281,7 @@ makeipv4info (int type, int proto, u_long ip, u_short port, const char *name)
 
 /*
  * getaddrinfo() non-thread-safe IPv4-only implementation
- * Address-family-independant hostname to address resolution.
+ * Address-family-independent hostname to address resolution.
  *
  * This is meant for IPv6-unaware systems that do probably not provide
  * getaddrinfo(), but still have old function gethostbyname().
index 7654a2e727e17557553505d9252f1f67362fd28d..c75c2f377ec7e66d9ae5b15da54060e980bdeac9 100644 (file)
--- a/src/vlc.c
+++ b/src/vlc.c
@@ -96,7 +96,7 @@ int main( int i_argc, const char *ppsz_argv[] )
     /* Signals that cause a no-op:
      * - SIGALRM should not happen, but lets stay on the safe side.
      * - SIGPIPE might happen with sockets and would crash VLC. It MUST be
-     *   blocked by any LibVLC-dependant application, in addition to VLC.
+     *   blocked by any LibVLC-dependent application, in addition to VLC.
      * - SIGCHLD is comes after exec*() (such as httpd CGI support) and must
      *   be dequeued to cleanup zombie processes.
      */