diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2007-12-28 11:10:17 +0000 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2007-12-28 11:10:17 +0000 |
commit | 16ed03221445897161f58e9420fbca57f481c7c1 (patch) | |
tree | 562355e9edd328b4a20c5adda076cb9fbd007616 | |
parent | 02c164c1482e16715716b2615964481877412e4b (diff) | |
download | ffmpeg-16ed03221445897161f58e9420fbca57f481c7c1.tar.gz |
Real RTSP support, from Ronald S. Bultje rsbultje gmail - part 1 Comment
Originally committed as revision 11339 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/rtsp.c | 2 |
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); |