]> git.sesse.net Git - vlc/commitdiff
Typos
authorRémi Denis-Courmont <remi@remlab.net>
Sat, 5 Jun 2010 08:10:50 +0000 (11:10 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Sat, 5 Jun 2010 08:10:50 +0000 (11:10 +0300)
24 files changed:
configure.ac
extras/package/rpm/vlc.fedora.spec
include/vlc_picture.h
include/vlc_picture_pool.h
include/vlc_vout_display.h
modules/access/http.c
modules/audio_output/directx.c
modules/demux/mp4/libmp4.c
modules/demux/mp4/mp4.c
modules/demux/ts.c
modules/gui/macosx/playlist.m
modules/gui/qt4/components/controller.hpp
modules/misc/gnutls.c
modules/video_filter/atmo/AtmoCalculations.cpp
modules/video_filter/atmo/README.txt
modules/video_output/fb.c
share/http/js/vlm.js
share/lua/http/js/vlm.js
share/lua/intf/modules/common.lua
share/lua/intf/modules/host.lua
share/lua/intf/telnet.lua
src/input/item.c
src/input/stream_filter.c
src/text/filesystem.c

index 8556d25a6bc14ebb109c73951811ba6ef54c028d..fcce3020e33f3b9298ee5b5a8abe4cc00baec629 100644 (file)
@@ -1541,7 +1541,7 @@ AS_IF([test "x${enable_debug}" = "xno"], [
 ])
 
 dnl
-dnl Allow runing as root (usefull for people runing on embedded platforms)
+dnl Allow runing as root (useful for people runing on embedded platforms)
 dnl
 AC_ARG_ENABLE(run-as-root,
 [  --enable-run-as-root    allow runing VLC as root (default disabled)])
index 2ff910172e625262da49d0f81336fba2e2101e0e..e231e28de5f7467d936d623f83f153f238001ada 100644 (file)
@@ -675,7 +675,7 @@ rm -rf $RPM_BUILD_ROOT __doc
 - Add BR directfb-devel (wip)
 - Add BR libnotify-devel
 - Enabled --enable-speex
-- Testing --enable-portaudio not usefull (oss is deprecated)
+- Testing --enable-portaudio not useful (oss is deprecated)
 - Enabled --enable-pda
 - Testing --enable-directfb (wip)
 - Removed patch5 (was format.c)
@@ -683,7 +683,7 @@ rm -rf $RPM_BUILD_ROOT __doc
 * Thu Apr  5 2007 kwizart < kwizart at gmail.com > - 0.8.6a-5
 - Use system ffmpeg lib (pth and libtool seems to be incompatible with it)
 - Dirac seem to compile fine but testing usability for now.
-- Cache isn't usefull for now (and won't be since using system libs)
+- Cache isn't useful for now (and won't be since using system libs)
 - Exclude %%{_bindir}/vlcwrapper.py? since this is the guideline about python for now.
 
 * Mon Apr  2 2007 kwizart < kwizart at gmail.com > - 0.8.6a-4.6
@@ -698,7 +698,7 @@ rm -rf $RPM_BUILD_ROOT __doc
 - Clean up svn to release changes
 
 * Tue Mar 22 2007 kwizart < kwizart at gmail.com > - 0.8.6a-4.4
-- WIP changes - ld.conf is unusefull...
+- WIP changes - ld.conf is unuseful...
 
 * Wed Mar 21 2007 kwizart < kwizart at gmail.com > - 0.8.6a-4.3
 - Revert back to the static vlc version 
index 39c3ca04a694422bffb6ba1c8fb2cb2e71a6dd5e..096289983b2fed2136dc689ee1b715a9afa3039e 100644 (file)
@@ -221,7 +221,7 @@ static inline void picture_CopyProperties( picture_t *p_dst, const picture_t *p_
 
 /**
  * This function will reset a picture informations (properties and quantizers).
- * It is sometimes usefull for reusing pictures (like from a pool).
+ * It is sometimes useful for reusing pictures (like from a pool).
  */
 VLC_EXPORT( void, picture_Reset, ( picture_t * ) );
 
@@ -275,7 +275,7 @@ VLC_EXPORT( int, picture_Export, ( vlc_object_t *p_obj, block_t **pp_image, vide
  * It will return VLC_EGENERIC if the core does not understand the requested
  * format.
  *
- * It can be usefull to get the properties of planes.
+ * It can be useful to get the properties of planes.
  */
 VLC_EXPORT( int, picture_Setup, ( picture_t *, vlc_fourcc_t i_chroma, int i_width, int i_height, int i_sar_num, int i_sar_den ) );
 
index a4ab493becddb0240cbc1a066223398ce9238a36..83a5728e539bee268846b263f1b06004c5356516 100644 (file)
@@ -53,7 +53,7 @@ typedef struct {
 /**
  * It creates a picture_pool_t wrapping the given configuration.
  *
- * It is usefull to avoid useless picture creations/destructions.
+ * It avoids useless picture creations/destructions.
  * The given picture must not have a reference count greater than 1.
  * The pool takes ownership of the picture and MUST not be used directly.
  * When deleted, the pool will release the pictures using picture_Release.
index 9408968b7b5facfe233719bae47b9c9969ef5217..e79ce7ef56f0121e359c40587ff0e105cc29f6a0 100644 (file)
@@ -124,7 +124,7 @@ typedef struct {
     bool has_double_click;    /* Is double-click generated */
     bool has_hide_mouse;      /* Is mouse automatically hidden */
     bool has_pictures_invalid;/* Will VOUT_DISPLAY_EVENT_PICTURES_INVALID be used */
-    bool has_event_thread;    /* Will events (key at least) be emitted using an independant thread */
+    bool has_event_thread;    /* Will events (key at least) be emitted using an independent thread */
 } vout_display_info_t;
 
 /**
index 94355047918333d12e3f817b83b5d482c1848170..983fab7dac4ffe4c17c097c78fcc189a7948ca89 100644 (file)
@@ -426,7 +426,7 @@ static int OpenWithCookies( vlc_object_t *p_this, const char *psz_access,
                         {
                             /* Get the proxy URL :
                             Proxy server value in the registry can be something like "address:port"
-                            or "ftp=adress1:port1;http=adress2:port2 ..." depending of the
+                            or "ftp=address1:port1;http=address2:port2 ..." depending of the
                             confirguration. */
                             char *psz_proxy;
                             psz_proxy = strstr( psz_key, "http=" );
index f03db57ce9c08d647db2f5259e7198c9d9951947..23cfe0af5f64e72fb448eeaf1f0dfb51450f7d43 100644 (file)
@@ -960,7 +960,7 @@ static int FillBuffer( aout_instance_t *p_aout, int i_frame,
                 p_notif->i_frame_size,                    /* Number of bytes */
                 &p_write_position,                  /* Address of lock start */
                 &l_bytes1,       /* Count of bytes locked before wrap around */
-                &p_wrap_around,            /* Buffer adress (if wrap around) */
+                &p_wrap_around,           /* Buffer address (if wrap around) */
                 &l_bytes2,               /* Count of bytes after wrap around */
                 0 );                                                /* Flags */
     if( dsresult == DSERR_BUFFERLOST )
index 1e45c61c3514f188d68c1c2f3e2578b37b359ba7..b6f860f9f224535eb53f454eef696497b29beb93 100644 (file)
@@ -2116,7 +2116,7 @@ static int MP4_ReadBox_cmov( stream_t *p_stream, MP4_Box_t *p_box )
     p_cmvd->data.p_cmvd->p_data = p_data;
     p_cmvd->data.p_cmvd->b_compressed = 0;
 
-    msg_Dbg( p_stream, "read box: \"cmov\" box succesfully uncompressed" );
+    msg_Dbg( p_stream, "read box: \"cmov\" box successfully uncompressed" );
 
     /* now create a memory stream */
     p_stream_memory =
index 1d481fd9247f177d004b1e28c59fccdc5cee0f72..7e7ff573b5f19d746951cf53c9a052318bb91111 100644 (file)
@@ -495,7 +495,7 @@ static int Open( vlc_object_t * p_this )
             p_sys->p_tref_chap = p_chap;
     }
 
-    /* now process each track and extract all usefull information */
+    /* now process each track and extract all useful information */
     for( i = 0; i < p_sys->i_tracks; i++ )
     {
         p_trak = MP4_BoxGet( p_sys->p_root, "/moov/trak[%d]", i );
index 2f1293a9826b64dd31c06211c776a3d99854fc69..99899a6c2b79d22044170f8c8ce5958c3b4656b6 100644 (file)
@@ -158,7 +158,7 @@ static void Close ( vlc_object_t * );
 #define SPLIT_ES_TEXT N_("Separate sub-streams")
 #define SPLIT_ES_LONGTEXT N_( \
     "Separate teletex/dvbs pages into independant ES. " \
-    "It can be usefull to turn off this option when using stream output." )
+    "It can be useful to turn off this option when using stream output." )
 
 vlc_module_begin ()
     set_description( N_("MPEG Transport Stream demuxer") )
@@ -3656,7 +3656,7 @@ static void PMTSetupEs0x06( demux_t *p_demux, ts_pid_t *pid,
     }
 
 #ifdef _DVBPSI_DR_52_H_
-    /* FIXME is it usefull ? */
+    /* FIXME is it useful ? */
     if( PMTEsFindDescriptor( p_es, 0x52 ) )
     {
         dvbpsi_descriptor_t *p_dr = PMTEsFindDescriptor( p_es, 0x52 );
index 53ab716c40fdb9110bab1266a07c8c326128ed2c..09e2458b3c852dce1cda9fdd127c7da70d29111f 100644 (file)
     [self isItem:p_item inNode:p_node checkItemExistence:b_check locked:NO];
 }
 
-/* This method is usefull for instance to remove the selected children of an
+/* This method is useful for instance to remove the selected children of an
    already selected node */
 - (void)removeItemsFrom:(id)o_items ifChildrenOf:(id)o_nodes
 {
index f987226a497c9f917f5c16c1f853fc2a28acc074..0bfa70e5682f8bd297b5c42c19be0c118fd2fc7d 100644 (file)
@@ -167,8 +167,8 @@ protected slots:
     virtual void setStatus( int );
 
 signals:
-    void inputExists( bool ); /// This might be usefull in the IM ?
-    void inputPlaying( bool ); /// This might be usefull in the IM ?
+    void inputExists( bool ); /// This might be useful in the IM ?
+    void inputPlaying( bool ); /// This might be useful in the IM ?
     void inputIsRecordable( bool ); /// same ?
     void inputIsTrickPlayable( bool ); /// same ?
 };
index c38e8f71ea9917bf13d161469ae7549410369491..5b7a82b63011e5255923a6c3751ae2b0378eec33 100644 (file)
@@ -239,7 +239,7 @@ gnutls_Recv( void *p_session, void *buf, int i_length )
 /**
  * Starts or continues the TLS handshake.
  *
- * @return -1 on fatal error, 0 on succesful handshake completion,
+ * @return -1 on fatal error, 0 on successful handshake completion,
  * 1 if more would-be blocking recv is needed,
  * 2 if more would-be blocking send is required.
  */
index 1f738abc65a614599b1f11fd558bed50956b94fa..66b0a2609e20ac48df81c08c18f5b9e607ed2908 100644 (file)
@@ -250,7 +250,7 @@ pColorPacket CAtmoColorCalculator::AnalyzeHSV(tHSVColor *HSV_Img)
     // windowing from -hue_windowsize -> +hue_windowsize
     for (int mywin = -hue_windowsize; mywin < hue_windowsize+1; mywin++)
     {
-      // adressed histogram candlestick
+      // addressed histogram candlestick
       int myidx = i + mywin;
 
       // handle beginning of windowing -> roll back
@@ -374,7 +374,7 @@ pColorPacket CAtmoColorCalculator::AnalyzeHSV(tHSVColor *HSV_Img)
      // windowing from -hue_windowsize -> +hue_windowsize
      for (int mywin = -sat_windowsize; mywin < sat_windowsize+1; mywin++)
      {
-       // adressed histogram candlestick
+       // addressed histogram candlestick
        int myidx = i + mywin;
 
        // handle beginning of windowing -> roll back
index f9416bc6a0e7c2f24a0f004dfbb0a1de6f694976..e1646923d5ec9e02c38c2b724e470cce7cc424b5 100644 (file)
@@ -227,7 +227,7 @@ like the group says only for the DMX device
 "Count of AtmoLight Channels" - defines how many RGB Channels should be simulated\r
 with this DMX device (each RGB channel needs three DMX channels!)\r
 \r
-"DMX adress for each channel" - defines the DMX Startadress for each AtmoLight\r
+"DMX address for each channel" - defines the DMX Startadress for each AtmoLight\r
 channel as "," or ";" separated list. (starting with 0 up to 252) it is assumed\r
 that the f.e. of the DMX-AtmoLight channel starts at DMX-Channel 5 - that\r
 DMX-Channel 5: is red\r
index 7e25456d7b9325dd4b84ed654891a5274195ba26..a30e62d9c99fb09884fd81e4459ddc085c7555d8 100644 (file)
@@ -144,7 +144,7 @@ struct vout_display_sys_t {
     int      bytes_per_pixel;
 
     /* Video memory */
-    uint8_t     *video_ptr;                                  /* base adress */
+    uint8_t     *video_ptr;                                 /* base address */
     size_t      video_size;                                    /* page size */
 
     picture_t       *picture;
index daa3f2a5a4c4b4fcfa7d80035c42a8e7623f289a..7a4580b75441a4a8d3800903ced99e72a632f86b 100644 (file)
@@ -326,7 +326,7 @@ function parse_vlm_cmd()
             }
             else
             {
-                vlme.appendChild( document.createTextNode( 'Command succesful (' + value( 'vlm_command' ) + ') ' ) );
+                vlme.appendChild( document.createTextNode( 'Command successful (' + value( 'vlm_command' ) + ') ' ) );
                 vlme.style.color = "#0f0";
                 clear_vlm_add();
             }
index daa3f2a5a4c4b4fcfa7d80035c42a8e7623f289a..7a4580b75441a4a8d3800903ced99e72a632f86b 100644 (file)
@@ -326,7 +326,7 @@ function parse_vlm_cmd()
             }
             else
             {
-                vlme.appendChild( document.createTextNode( 'Command succesful (' + value( 'vlm_command' ) + ') ' ) );
+                vlme.appendChild( document.createTextNode( 'Command successful (' + value( 'vlm_command' ) + ') ' ) );
                 vlme.style.color = "#0f0";
                 clear_vlm_add();
             }
index 1215ab85b660af6778718769de7ade44b3836ecd..b3fef02f112e77d7755b44652a60358a1a3684d7 100644 (file)
@@ -67,7 +67,7 @@ function table_print(t,prefix)
 end
 
 -- print the list of callbacks registered in lua
--- usefull for debug purposes
+-- useful for debug purposes
 function print_callbacks()
     print "callbacks:"
     table_print(vlc.callbacks)
index baa7c843761f658301a70c61658d2422b77fee9d..b6c06ba5b5bd9bb7da0800967064e0419b3eadb4 100644 (file)
@@ -27,7 +27,7 @@ Example use:
     require "host"
     h = host.host()
 
-    -- Bypass any authentification
+    -- Bypass any authentication
     function on_password( client )
         client:switch_status( host.status.read )
     end
index 89a478669ca50ccc74e19ea5b9f90f7b4c4d5243..a72d4b17904087fc79d3e464fa6900ac0215b8e0 100644 (file)
@@ -58,7 +58,7 @@ function on_password( client )
     if client.type == host.client_type.net then
         client:send( "Password: " ..IAC..WILL..ECHO )
     else
-        -- no authentification needed on stdin
+        -- no authentication needed on stdin
         client:switch_status( host.status.read )
     end
 end
index 8bca6f6321472c2eca1d2b10bce1e8d71feb8029..df4e15967ef345a891f4ca769b4f7ee43a8e4a30 100644 (file)
@@ -216,7 +216,7 @@ void input_item_SetMeta( input_item_t *p_i, vlc_meta_type_t meta_type, const cha
 }
 
 /* FIXME GRRRRRRRRRR args should be in the reverse order to be
- * consistant with (nearly?) all or copy funcs */
+ * consistent with (nearly?) all or copy funcs */
 void input_item_CopyOptions( input_item_t *p_parent,
                              input_item_t *p_child )
 {
index fc06b6fa5f1072b65e7ca6c22dfb28c50b68d89b..9126f76788509c3a0c22c2f025b6dcc287980eb0 100644 (file)
@@ -108,7 +108,7 @@ stream_t *stream_FilterChainNew( stream_t *p_source,
     }
     free( psz_tmp );
 
-    /* Add record filter if usefull */
+    /* Add record filter if useful */
     if( b_record )
     {
         stream_t *p_filter = stream_FilterNew( p_source,
index fb27c17050650c59241235b187f4de55ec2a0403..e3147ebddf11baddc0f09d2b5c64edf1bb392851 100644 (file)
@@ -410,7 +410,7 @@ int vlc_loaddir( DIR *dir, char ***namelist,
  * Selects file entries from a directory, as GNU C scandir().
  *
  * @param dirname UTF-8 diretory path
- * @param pointer [OUT] pointer set, on succesful completion, to the address
+ * @param pointer [OUT] pointer set, on successful completion, to the address
  * of a table of UTF-8 filenames. All filenames must be freed with free().
  * The table itself must be freed with free() as well.
  *