Commit 9105991c authored by Gildas Bazin's avatar Gildas Bazin

* modules/codec/ffmpeg/demux.c: don't use libavformat's redirector demux.

parent 40cbe6a3
......@@ -108,11 +108,16 @@ int E_(OpenDemux)( vlc_object_t *p_this )
( !strcmp( fmt->name, "mpeg" ) ||
!strcmp( fmt->name, "vcd" ) ||
!strcmp( fmt->name, "vob" ) ||
!strcmp( fmt->name, "mpegts" ) ) )
!strcmp( fmt->name, "mpegts" ) ||
/* libavformat's redirector won't work */
!strcmp( fmt->name, "redir" ) ||
!strcmp( fmt->name, "sdp" ) ) )
{
return VLC_EGENERIC;
}
msg_Dbg( p_demux, "detected format: %s", fmt->name );
/* Fill p_demux fields */
p_demux->pf_demux = Demux;
p_demux->pf_control = Control;
......
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