Apparently the parameters are inverted at the RTSPRequest constructor:
public RTSPRequest(String messageLine) throws URISyntaxException
{
String[] parts = messageLine.split(" ");
setLine(parts[0], Method.valueOf(parts[1]));
}
setLine() looks like this:
public void setLine(String uri, Method method) throws URISyntaxException
So instead, the second line of the constructor shoud be
setLine(parts[1], Method.valueOf(parts[0]));
to match the request line, e.g.
DESCRIBE rtsp://example RTSP/1.0
Original issue reported on code.google.com by flavios...@gmail.com on 6 Jan 2011 at 12:41
Original issue reported on code.google.com by
flavios...@gmail.com
on 6 Jan 2011 at 12:41