Commit e592b87a authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

liveHTTP: fix signedness warnings

parent 7e115e80
......@@ -500,7 +500,7 @@ static void destroySegment( output_segment_t *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++ )
for( unsigned index = 1; (int)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;
......@@ -525,7 +525,7 @@ static bool isFirstItemRemovable( sout_access_out_sys_t *p_sys, uint32_t i_first
/* Check that segment has been out of playlist for seglenght + (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(int index=0; index < i_index_offset; index++ )
for( unsigned int index = 0; index < i_index_offset; index++ )
{
output_segment_t *segment = vlc_array_item_at_index( p_sys->segments_t, p_sys->i_segment - i_firstseg + index );
duration += segment->f_seglength;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment