[vlc-commits] [Git][videolan/vlc][master] 6 commits: fix mis-spellings of successful[ly]

Hugo Beauzée-Luyssen (@chouquette) gitlab at videolan.org
Thu Jan 13 08:17:27 UTC 2022



Hugo Beauzée-Luyssen pushed to branch master at VideoLAN / VLC


Commits:
9e35d5da by Lyndon Brown at 2022-01-13T07:31:11+00:00
fix mis-spellings of successful[ly]

a followup to !1044.

- - - - -
4d89ef90 by Lyndon Brown at 2022-01-13T07:31:11+00:00
fix mis-spelling of overridden

a followup to !1044.

- - - - -
44815e92 by Lyndon Brown at 2022-01-13T07:31:11+00:00
subsusf: fix a doc typo

- - - - -
74d2f594 by Lyndon Brown at 2022-01-13T07:31:11+00:00
lib: fix a few doc typos

- - - - -
3582d8b0 by Lyndon Brown at 2022-01-13T07:31:11+00:00
config: fix typo

"Howto" is not a word, it's more correct as "how-to".

- - - - -
4b31f3c9 by Lyndon Brown at 2022-01-13T07:31:11+00:00
dvbsub: fix typo

- - - - -


18 changed files:

- include/vlc_aout.h
- include/vlc_common.h
- include/vlc_config_cat.h
- include/vlc_vout_window.h
- lib/Makefile.am
- lib/media.c
- lib/media_internal.h
- modules/access/http/connmgr.h
- modules/access/http/hpack.c
- modules/access/sftp.c
- modules/audio_output/mmdevice.c
- modules/codec/dvbsub.c
- modules/codec/hxxx_helper.h
- modules/codec/subsusf.c
- modules/control/cli/cli.c
- modules/gui/qt/util/varchoicemodel.hpp
- modules/lua/libs/win.c
- modules/stream_out/transcode/video.c


Changes:

=====================================
include/vlc_aout.h
=====================================
@@ -158,7 +158,7 @@ struct audio_output
     /**< Starts a new stream (mandatory, cannot be NULL).
       *
       * This callback changes the audio output from stopped to playing state
-      * (if succesful). After the callback returns, time_get(), play(),
+      * (if successful). After the callback returns, time_get(), play(),
       * pause(), flush() and eventually stop() callbacks may be called.
       *
       * \param fmt input stream sample format upon entry,


=====================================
include/vlc_common.h
=====================================
@@ -193,7 +193,7 @@
  * Weak symbol annotation
  *
  * Use this macro before an external identifier \b definition to mark it as a
- * weak symbol. A weak symbol can be overriden by another symbol of the same
+ * weak symbol. A weak symbol can be overridden by another symbol of the same
  * name at the link time.
  */
 # define VLC_WEAK


=====================================
include/vlc_config_cat.h
=====================================
@@ -161,7 +161,7 @@
 
 #define SOUT_STREAM_TITLE N_("Sout stream")
 #define SOUT_STREAM_HELP N_( "Sout stream modules allow to build a sout " \
-                "processing chain. Please refer to the Streaming Howto for " \
+                "processing chain. Please refer to the Streaming 'how-to' for " \
                 "more information. You can configure default options for " \
                 "each sout stream module here.")
 


=====================================
include/vlc_vout_window.h
=====================================
@@ -191,7 +191,7 @@ typedef void (*vout_window_ack_cb)(struct vout_window_t *, unsigned width,
  * window events.
  *
  * As a general rule, the events can occur synchronously or asynchronously from
- * the time that the window is (succesfully) being created by vout_window_New()
+ * the time that the window is (successfully) being created by vout_window_New()
  * until the time that the window has been deleted by vout_window_Delete().
  *
  * \warning
@@ -372,7 +372,7 @@ typedef struct vout_window_t {
     /**
      * Window handle (mandatory)
      *
-     * This must be filled by the plugin upon succesful vout_window_Enable().
+     * This must be filled by the plugin upon successful vout_window_Enable().
      *
      * Depending on the \ref type above, a different member of this union is
      * used.


=====================================
lib/Makefile.am
=====================================
@@ -76,7 +76,7 @@ libvlc_la_LDFLAGS += -Xlinker -install_name -Xlinker @rpath/libvlc.dylib
 endif
 
 # iOS and tvOS applications cannot install global shared libraries and
-# dylibs must be in frameworks so there's no need for libtool versionning.
+# dylibs must be in frameworks so there's no need for libtool versioning..
 if HAVE_IOS
 libvlc_la_LDFLAGS += -avoid-version
 endif


=====================================
lib/media.c
=====================================
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * media.c: Libvlc API media descripor management
+ * media.c: Libvlc API media descriptor management
  *****************************************************************************
  * Copyright (C) 2007 VLC authors and VideoLAN
  *


=====================================
lib/media_internal.h
=====================================
@@ -41,7 +41,7 @@ struct libvlc_media_t
     libvlc_state_t     state;
     vlc_atomic_rc_t    rc;
 
-    VLC_FORWARD_DECLARE_OBJECT(libvlc_media_list_t*) p_subitems; /* A media descriptor can have Sub items. This is the only dependancy we really have on media_list */
+    VLC_FORWARD_DECLARE_OBJECT(libvlc_media_list_t*) p_subitems; /* A media descriptor can have Sub items. This is the only dependency we really have on media_list */
     void *p_user_data;
 
     vlc_cond_t parsed_cond;


=====================================
modules/access/http/connmgr.h
=====================================
@@ -37,7 +37,7 @@ struct vlc_http_cookie_jar_t;
  * Sends an HTTP request
  *
  * Sends an HTTP request, by either reusing an existing HTTP connection or
- * establishing a new one. If succesful, the initial HTTP response header is
+ * establishing a new one. If successful, the initial HTTP response header is
  * returned.
  *
  * @param mgr HTTP connection manager


=====================================
modules/access/http/hpack.c
=====================================
@@ -630,7 +630,7 @@ static void test_integer(unsigned n, const uint8_t *buf, size_t len,
         assert(hpack_decode_int(n, &cutbuf, &cutlen) == -1);
     }
 
-    /* Check succesful decoding */
+    /* Check successful decoding */
     const uint8_t *end = buf + len;
     int_fast32_t v = hpack_decode_int(n, &buf, &len);
 
@@ -680,7 +680,7 @@ static void test_header(const char *str, size_t len,
         assert(hpack_decode_hdr(dec, &cutbuf, &cutlen, &n, &v) == -1);
     }
 
-    /* Check succesful decoding */
+    /* Check successful decoding */
     int ret = hpack_decode_hdr(dec, &buf, &len, &n, &v);
     assert(ret == 0);
     assert(!strcmp(name, n));


=====================================
modules/access/sftp.c
=====================================
@@ -396,7 +396,7 @@ static int Open( vlc_object_t* p_this )
         msg_Dbg( p_access, "Unable to check the remote host" );
         break;
     case LIBSSH2_KNOWNHOST_CHECK_MATCH:
-        msg_Dbg( p_access, "Succesfuly matched the host" );
+        msg_Dbg( p_access, "Successfully matched the host" );
         break;
     case LIBSSH2_KNOWNHOST_CHECK_MISMATCH:
         msg_Err( p_access, "The host does not match !! The remote key changed !!" );


=====================================
modules/audio_output/mmdevice.c
=====================================
@@ -355,7 +355,7 @@ vlc_AudioSessionEvents_OnSessionDisconnected(IAudioSessionEvents *this,
             msg_Err(aout, "session disconnected: %s", "session disconnected");
             return S_OK;
         case DisconnectReasonExclusiveModeOverride:
-            msg_Err(aout, "session disconnected: %s", "stream overriden");
+            msg_Err(aout, "session disconnected: %s", "stream overridden");
             return S_OK;
         default:
             msg_Warn(aout, "session disconnected: unknown reason %d", reason);


=====================================
modules/codec/dvbsub.c
=====================================
@@ -202,7 +202,7 @@ typedef struct dvbsub_clut_s
 
 } dvbsub_clut_t;
 
-/* The Region is an aera on the image [7.2.3]
+/* The Region is an area on the image [7.2.3]
  * with a list of the object definitions associated and a CLUT */
 typedef struct dvbsub_region_s
 {


=====================================
modules/codec/hxxx_helper.h
=====================================
@@ -79,7 +79,7 @@ struct hxxx_helper
 };
 
 /* Init:
- * i_input_length_size set xvcC nal length or 0 for AnnexB (overriden by extradata)
+ * i_input_length_size set xvcC nal length or 0 for AnnexB (overridden by extradata)
  * i_output_length_size set xvcC nal length or 0 for AnnexB */
 void hxxx_helper_init(struct hxxx_helper *hh, vlc_object_t *p_obj,
                       vlc_fourcc_t i_codec, uint8_t i_input_length_size,


=====================================
modules/codec/subsusf.c
=====================================
@@ -435,8 +435,8 @@ static subpicture_region_t *CreateTextRegion( decoder_t *p_dec,
             }
         }
 
-        /* Set default or user align/magin.
-         * Style overriden if no user value. */
+        /* Set default or user align/margin.
+         * Style overridden if no user value. */
         p_text_region->i_x = i_sys_align > 0 ? 20 : 0;
         p_text_region->i_y = 10;
         p_text_region->i_align = SUBPICTURE_ALIGN_BOTTOM |


=====================================
modules/control/cli/cli.c
=====================================
@@ -655,7 +655,7 @@ static bool ReadWin32( intf_thread_t *p_intf, unsigned char *p_buffer, int *pi_s
                         nbBytes++;
                     }
                     assert( clz( (unsigned char)~(p_buffer[*pi_size]) ) == nbBytes + 1 );
-                    // The first utf8 byte will be overriden by a \0
+                    // The first utf8 byte will be overridden by a \0
                 }
                 else
                     (*pi_size)--;


=====================================
modules/gui/qt/util/varchoicemodel.hpp
=====================================
@@ -51,7 +51,7 @@ public:
 
     ~VLCVarChoiceModel();
 
-    //QAbstractListModel overriden functions
+    //QAbstractListModel overridden functions
     virtual Qt::ItemFlags flags(const QModelIndex &) const  override;
     QHash<int, QByteArray> roleNames() const override;
     virtual int rowCount(const QModelIndex & = QModelIndex()) const override;


=====================================
modules/lua/libs/win.c
=====================================
@@ -94,7 +94,7 @@ static bool ReadWin32( HANDLE *hConsoleIn, unsigned char *p_buffer, int *pi_size
                     nbBytes++;
                 }
                 assert( clz( (unsigned char)~(p_buffer[*pi_size]) ) == nbBytes + 1 );
-                // The first utf8 byte will be overriden by a \0
+                // The first utf8 byte will be overridden by a \0
             }
             else
                 (*pi_size)--;


=====================================
modules/stream_out/transcode/video.c
=====================================
@@ -527,7 +527,7 @@ int transcode_video_process( sout_stream_t *p_stream, sout_stream_id_sys_t *id,
                 goto error;
             }
 
-            /* The fmt_in may have been overriden by the encoder. */
+            /* The fmt_in may have been overridden by the encoder. */
             const es_format_t *encoder_fmt_in = transcode_encoder_format_in( id->encoder );
 
             /* check if we need to add a converter between last user filter and encoder. */



View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/bc9e44320b5c953dfed92b047b2494b5c1373067...4b31f3c9f50cc86505986254d568c5e7a5de8c7d

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/bc9e44320b5c953dfed92b047b2494b5c1373067...4b31f3c9f50cc86505986254d568c5e7a5de8c7d
You're receiving this email because of your account on code.videolan.org.




More information about the vlc-commits mailing list