Commit 5fff7614 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Kill a warning and put i_datalength as an uint32_t

parent d487b81d
......@@ -68,7 +68,7 @@ struct demux_sys_t
uint32_t i_totalframes;
uint32_t i_currentframe;
uint32_t *pi_seektable;
int i_datalength;
uint32_t i_datalength;
int i_framelength;
/* */
......@@ -240,7 +240,7 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
if( i64 > 0 )
{
int64_t tmp = 0;
int i;
uint32_t i;
for( i=0; i < p_sys->i_totalframes && tmp+p_sys->pi_seektable[i] < i64; i++)
{
tmp += p_sys->pi_seektable[i];
......
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