Commit 7424fa55 authored by Francois Cartegnie's avatar Francois Cartegnie Committed by Jean-Baptiste Kempf

demux: avi: missing unseekable method fallback

(cherry picked from commit 2131a8a88aaffca5805080d4fb466d759442cddc)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 281d65da
......@@ -297,7 +297,7 @@ static int Open( vlc_object_t * p_this )
stream_Control( p_demux->s, STREAM_CAN_SEEK, &p_sys->b_seekable );
p_demux->pf_control = Control;
p_demux->pf_demux = Demux_Seekable;
p_demux->pf_demux = (p_sys->b_seekable) ? Demux_Seekable : Demux_UnSeekable;
p_sys->b_interleaved = var_InheritBool( p_demux, "avi-interleaved" );
......
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