[vlc-commits] access_output/livehttp: fixed a few typos

Filip Roséen git at videolan.org
Mon Sep 26 22:14:24 CEST 2016


vlc | branch: master | Filip Roséen <filip at atch.se> | Mon Sep 26 03:15:27 2016 +0200| [e620a4280a8b244f0c886baa03ba2bb4d5479457] | committer: Ilkka Ollakka

access_output/livehttp: fixed a few typos

Signed-off-by: Ilkka Ollakka <ileoo at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e620a4280a8b244f0c886baa03ba2bb4d5479457
---

 modules/access_output/livehttp.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/modules/access_output/livehttp.c b/modules/access_output/livehttp.c
index 5137bc3..0d520d6 100644
--- a/modules/access_output/livehttp.c
+++ b/modules/access_output/livehttp.c
@@ -95,7 +95,7 @@ static void Close( vlc_object_t * );
 #define KEYFILE_LONGTEXT N_("File containing the 16 bytes encryption key")
 
 #define KEYLOADFILE_TEXT N_("File where vlc reads key-uri and keyfile-location")
-#define KEYLOADFILE_LONGTEXT N_("File is read when segment starts and is assumet to be in format: "\
+#define KEYLOADFILE_LONGTEXT N_("File is read when segment starts and is assumed to be in format: "\
                                 "key-uri\\nkey-file. File is read on the segment opening and "\
                                 "values are used on that segment.")
 
@@ -544,7 +544,7 @@ static bool isFirstItemRemovable( sout_access_out_sys_t *p_sys, uint32_t i_first
 {
     float duration = .0f;
 
-    /* Check that segment has been out of playlist for seglenght + (p_sys->i_numsegs * p_sys->i_seglen) amount
+    /* Check that segment has been out of playlist for seglength + (p_sys->i_numsegs * p_sys->i_seglen) amount
      * We check this by calculating duration of the items that replaced first item in playlist
      */
     for( unsigned int index = 0; index < i_index_offset; index++ )
@@ -1031,7 +1031,7 @@ static ssize_t Write( sout_access_out_t *p_access, block_t *p_buffer )
     sout_access_out_sys_t *p_sys = p_access->p_sys;
     while( p_buffer )
     {
-        /* Check if current block is already past segment-lenght
+        /* Check if current block is already past segment-length
             and we want to write gathered blocks into segment
             and update playlist */
         if( p_sys->ongoing_segment && ( p_sys->b_splitanywhere  || ( p_buffer->i_flags & BLOCK_FLAG_HEADER ) ) )



More information about the vlc-commits mailing list