]> git.sesse.net Git - vlc/commitdiff
livehttp: try to follow draft 11 section 6.2.2
authorIlkka Ollakka <ileoo@videolan.org>
Tue, 18 Jun 2013 19:07:30 +0000 (22:07 +0300)
committerIlkka Ollakka <ileoo@videolan.org>
Tue, 18 Jun 2013 19:08:58 +0000 (22:08 +0300)
Keep atleast 3 * seglen amount of segments in playlist if possible.
This will cause playlist to increase sometimes over i_numseg, but it
follows the draft better.

modules/access_output/livehttp.c

index e92a40c9c10eb18254e3aee5216fd798858da561..9149a946abd662002bb6c6b2ad18114143854e41 100644 (file)
@@ -490,6 +490,26 @@ static void destroySegment( output_segment_t *segment )
     free( segment );
 }
 
+/************************************************************************
+ * segmentAmountNeeded: check that playlist has atleast 3*p_sys->i_seglength of segments
+ * return how many segments are needed for that (max of p_sys->i_segment )
+ ************************************************************************/
+static uint32_t segmentAmountNeeded( sout_access_out_sys_t *p_sys )
+{
+    float duration = .0f;
+    for( unsigned index = 1; index <= vlc_array_count( p_sys->segments_t ) ; index++ )
+    {
+        output_segment_t* segment = vlc_array_item_at_index( p_sys->segments_t, vlc_array_count( p_sys->segments_t ) - index );
+        duration += segment->f_seglength;
+
+        if( duration >= (float)( 3 * p_sys->i_seglen ) )
+            return __MAX(index, p_sys->i_numsegs);
+    }
+    return vlc_array_count( p_sys->segments_t )-1;
+
+}
+
+
 /************************************************************************
  * isFirstItemRemovable: Check for draft 11 section 6.2.2 
  * check that the first item has been around outside playlist 
@@ -525,8 +545,9 @@ static int updateIndexAndDel( sout_access_out_t *p_access, sout_access_out_sys_t
         i_firstseg = 1;
     else
     {
-        i_firstseg = ( p_sys->i_segment - p_sys->i_numsegs ) + 1;
-        i_index_offset = vlc_array_count( p_sys->segments_t ) - p_sys->i_numsegs;
+        unsigned numsegs = segmentAmountNeeded( p_sys );
+        i_firstseg = ( p_sys->i_segment - numsegs ) + 1;
+        i_index_offset = vlc_array_count( p_sys->segments_t ) - numsegs;
     }
 
     // First update index