Fix a 64-bit segfault in kdenlive
[melted] / src / modules / kdenlive / filter_boxblur.c
index f2316d0..f1d5425 100644 (file)
@@ -26,7 +26,7 @@
 #include <math.h>
 
 
-static void PreCompute(uint8_t *yuv, int32_t *rgb, unsigned int width, unsigned int height)
+static void PreCompute(uint8_t *yuv, int32_t *rgb, int width, int height)
 {
        register int x, y, z;
        register int uneven = width % 2;