Browse Source

Fix ByteIOContext init on recent libavformat

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
pull/2/head
Laurent Aimar 15 years ago
committed by Jean-Baptiste Kempf
parent
commit
4fc3bd15a3
  1. 3
      modules/demux/avformat/demux.c

3
modules/demux/avformat/demux.c

@ -223,6 +223,9 @@ int OpenDemux( vlc_object_t *p_this )
*/
p_sys->url.is_streamed = 1;
p_sys->io.is_streamed = 1;
#if defined(AVIO_SEEKABLE_NORMAL)
p_sys->io.seekable = 0;
#endif
}

Loading…
Cancel
Save