[FFmpeg-cvslog] r11127 - trunk/libavformat/rmdec.c

rtogni subversion
Sun Dec 2 18:41:13 CET 2007


Author: rtogni
Date: Sun Dec  2 18:41:12 2007
New Revision: 11127

Log:
Revert r10892, it's wrong and no longer needed to prevent crashes


Modified:
   trunk/libavformat/rmdec.c

Modified: trunk/libavformat/rmdec.c
==============================================================================
--- trunk/libavformat/rmdec.c	(original)
+++ trunk/libavformat/rmdec.c	Sun Dec  2 18:41:12 2007
@@ -380,7 +380,7 @@ static int get_num(ByteIOContext *pb, in
 
     n = get_be16(pb);
     (*len)-=2;
-//    n &= 0x7FFF;
+    n &= 0x7FFF;
     if (n >= 0x4000) {
         return n - 0x4000;
     } else {




More information about the ffmpeg-cvslog mailing list