Commit 9ebb6029 authored by Laurent Aimar's avatar Laurent Aimar

Added speex check in RTSP (untested, close #1091)

parent e729adf6
...@@ -742,6 +742,10 @@ static int SessionsSetup( demux_t *p_demux ) ...@@ -742,6 +742,10 @@ static int SessionsSetup( demux_t *p_demux )
{ {
tk->b_quicktime = VLC_TRUE; tk->b_quicktime = VLC_TRUE;
} }
else if( !strcmp( sub->codecName(), "SPEEX" ) )
{
tk->fmt.i_codec = VLC_FOURCC( 's', 'p', 'x', ' ' );
}
} }
else if( !strcmp( sub->mediumName(), "video" ) ) else if( !strcmp( sub->mediumName(), "video" ) )
{ {
......
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