Commit 97a2bee1 authored by Francois Cartegnie's avatar Francois Cartegnie Committed by Jean-Baptiste Kempf

demux: avi: fix non seekable chunk loop

(cherry picked from commit bedeabba63920776dcb480803ffce3d4719ff446)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 9bb9360e
......@@ -142,10 +142,9 @@ static int AVI_ChunkRead_list( stream_t *s, avi_chunk_t *p_container )
{
msg_Dbg( (vlc_object_t*)s, "skipping movi chunk" );
if( b_seekable )
{
return AVI_NextChunk( s, p_container );
}
return VLC_SUCCESS; /* point at begining of LIST-movi */
else
return VLC_EGENERIC; /* point at begining of LIST-movi */
}
if( stream_Read( s, NULL, 12 ) != 12 )
......
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