[FFmpeg-cvslog] r11339 - trunk/libavformat/rtsp.c

lu_zero subversion
Fri Dec 28 12:10:18 CET 2007


Author: lu_zero
Date: Fri Dec 28 12:10:17 2007
New Revision: 11339

Log:
Real RTSP support, from Ronald S. Bultje rsbultje gmail - part 1 Comment

Modified:
   trunk/libavformat/rtsp.c

Modified: trunk/libavformat/rtsp.c
==============================================================================
--- trunk/libavformat/rtsp.c	(original)
+++ trunk/libavformat/rtsp.c	Fri Dec 28 12:10:17 2007
@@ -606,7 +606,7 @@ static void rtsp_parse_transport(RTSPHea
             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);




More information about the ffmpeg-cvslog mailing list