Commit f8809911 authored by Francois Cartegnie's avatar Francois Cartegnie

demux: libmp4: fix warning

parent 9c116cbc
......@@ -239,7 +239,7 @@ static int MP4_ReadBoxContainerChildrenIndexed( stream_t *p_stream,
* with a DASH stream. In that case, we skip the following check */
if( (p_container->i_size || p_container->p_father)
&& ( stream_Tell( p_stream ) + ((b_indexed)?16:8) >
(off_t)(p_container->i_pos + p_container->i_size) )
(uint64_t)(p_container->i_pos + p_container->i_size) )
)
{
/* there is no box to load */
......
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