[FFmpeg-cvslog] r14465 - trunk/libavformat/sdp.c

stefano subversion
Tue Jul 29 12:45:54 CEST 2008


Author: stefano
Date: Tue Jul 29 12:45:53 2008
New Revision: 14465

Log:
Fix a typo in sdp_write_header(): change "IPV4", which is not a valid
network address type, to "IP4".


Modified:
   trunk/libavformat/sdp.c

Modified: trunk/libavformat/sdp.c
==============================================================================
--- trunk/libavformat/sdp.c	(original)
+++ trunk/libavformat/sdp.c	Tue Jul 29 12:45:53 2008
@@ -56,7 +56,7 @@ static void dest_write(char *buff, int s
 static void sdp_write_header(char *buff, int size, struct sdp_session_level *s)
 {
     av_strlcatf(buff, size, "v=%d\r\n"
-                            "o=- %d %d IN IPV4 %s\r\n"
+                            "o=- %d %d IN IP4 %s\r\n"
                             "t=%d %d\r\n"
                             "s=%s\r\n"
                             "a=tool:libavformat " AV_STRINGIFY(LIBAVFORMAT_VERSION) "\r\n",




More information about the ffmpeg-cvslog mailing list