[FFmpeg-cvslog] r22041 - trunk/libavcodec/rectangle.h

michael subversion
Wed Feb 24 23:13:20 CET 2010


Author: michael
Date: Wed Feb 24 23:13:20 2010
New Revision: 22041

Log:
3rd and hopefully last 100l fix.

Modified:
   trunk/libavcodec/rectangle.h

Modified: trunk/libavcodec/rectangle.h
==============================================================================
--- trunk/libavcodec/rectangle.h	Wed Feb 24 23:05:51 2010	(r22040)
+++ trunk/libavcodec/rectangle.h	Wed Feb 24 23:13:20 2010	(r22041)
@@ -87,7 +87,7 @@ static av_always_inline void fill_rectan
         *(uint64_t*)(p + 0+3*stride)= v;
         *(uint64_t*)(p + 8+3*stride)= v;
 #else
-        const uint32_t v= size==2 ? val*0x00010001 : val*0x01010101;
+        const uint32_t v= size==2 ? val*0x00010001 : val;
         *(uint32_t*)(p + 0+0*stride)= v;
         *(uint32_t*)(p + 4+0*stride)= v;
         if(h==1) return;



More information about the ffmpeg-cvslog mailing list