changeset 11280:fea25a6f874e libavcodec

3rd and hopefully last 100l fix.
author michael
date Wed, 24 Feb 2010 22:13:20 +0000
parents 08fdccf61a03
children 11fb96e94573
files rectangle.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/rectangle.h	Wed Feb 24 22:05:51 2010 +0000
+++ b/rectangle.h	Wed Feb 24 22:13:20 2010 +0000
@@ -87,7 +87,7 @@
         *(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;