diff svq3.c @ 1269:2498a7045b37 libavcodec

bigendian fix
author michaelni
date Fri, 16 May 2003 19:18:53 +0000
parents fb865ca0c251
children 8988af3ae1e8
line wrap: on
line diff
--- a/svq3.c	Fri May 16 10:14:25 2003 +0000
+++ b/svq3.c	Fri May 16 19:18:53 2003 +0000
@@ -438,7 +438,7 @@
 	}
 
         /* update mv_cache */
-        fill_rectangle(h->mv_cache[0][scan8[k]], part_width>>2, part_height>>2, 8, (mx&0xFFFF)+(my<<16), 4);
+        fill_rectangle(h->mv_cache[0][scan8[k]], part_width>>2, part_height>>2, 8, pack16to32(mx,my), 4);
       }
     }