[FFmpeg-cvslog] r15442 - trunk/libavformat/assdec.c

aurel subversion
Sun Sep 28 01:12:25 CEST 2008


Author: aurel
Date: Sun Sep 28 01:12:24 2008
New Revision: 15442

Log:
assdec: don't remove CR, they are part of the spec

Modified:
   trunk/libavformat/assdec.c

Modified: trunk/libavformat/assdec.c
==============================================================================
--- trunk/libavformat/assdec.c	(original)
+++ trunk/libavformat/assdec.c	Sun Sep 28 01:12:24 2008
@@ -37,7 +37,7 @@ static void get_line(ByteIOContext *s, c
 
     do{
         c = get_byte(s);
-        if (i < maxlen-1 && c != '\r')
+        if (i < maxlen-1)
             buf[i++] = c;
     }while(c != '\n' && c);
 




More information about the ffmpeg-cvslog mailing list