From 16ed03221445897161f58e9420fbca57f481c7c1 Mon Sep 17 00:00:00 2001 From: Luca Barbato Date: Fri, 28 Dec 2007 11:10:17 +0000 Subject: [PATCH] Real RTSP support, from Ronald S. Bultje rsbultje gmail - part 1 Comment Originally committed as revision 11339 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/rtsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 9af572daf2..21a5fda8ac 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -606,7 +606,7 @@ static void rtsp_parse_transport(RTSPHeader *reply, const char *p) p++; get_word_sep(profile, sizeof(profile), "/;,", &p); lower_transport[0] = '\0'; - if (*p == '/') { + if (*p == '/') { /* rtp/avp/ */ p++; get_word_sep(lower_transport, sizeof(lower_transport), ";,", &p);