Commit 90daa759 authored by Ben Hutchings's avatar Ben Hutchings Committed by Rémi Denis-Courmont

live555: handle DV over RTSP

live555 now supports DV (DIF, video/dv) format.  Pass it through to
the DV demuxer.
Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
parent 2b2de58b
......@@ -998,6 +998,12 @@ static int SessionsSetup( demux_t *p_demux )
p_sys->p_out_asf = stream_DemuxNew( p_demux, "asf",
p_demux->out );;
}
else if( !strcmp( sub->codecName(), "DV" ) )
{
tk->b_muxed = true;
tk->p_out_muxed = stream_DemuxNew( p_demux, "rawdv",
p_demux->out );
}
}
if( !tk->b_quicktime && !tk->b_muxed && !tk->b_asf )
......
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