summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2007-12-28 11:10:17 +0000
committerLuca Barbato <lu_zero@gentoo.org>2007-12-28 11:10:17 +0000
commit16ed03221445897161f58e9420fbca57f481c7c1 (patch)
tree562355e9edd328b4a20c5adda076cb9fbd007616 /libavformat
parent02c164c1482e16715716b2615964481877412e4b (diff)
Real RTSP support, from Ronald S. Bultje rsbultje gmail - part 1 Comment
Originally committed as revision 11339 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/rtsp.c2
1 files changed, 1 insertions, 1 deletions
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/<protocol> */
p++;
get_word_sep(lower_transport, sizeof(lower_transport),
";,", &p);