Commit 2d8e53ac authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

PS: fix duration computation on some files

Ref #9412
parent a2897b56
......@@ -255,7 +255,7 @@ static void FindLength( demux_t *p_demux )
/* Check end */
i_size = stream_Size( p_demux->s );
i_end = VLC_CLIP( i_size, 0, 200000 );
i_end = VLC_CLIP( i_size, 0, 20000 );
stream_Seek( p_demux->s, i_size - i_end );
i = 0;
......
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