Commit d287080e authored by Clément Stenac's avatar Clément Stenac

If proto is RTP/AVP, use rtp

parent ab674acf
......@@ -917,6 +917,13 @@ static int ParseConnection( vlc_object_t *p_obj, sdp_t *p_sdp )
}
}
if( psz_proto && !strncmp( psz_proto, "RTP/AVP", 7 ) )
{
free( psz_proto );
psz_proto = strdup( "rtp" );
}
/* FIXME: HTTP support */
if( i_port == 0 )
......
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