This commit is contained in:
veejay
2023-09-28 02:58:43 +02:00
parent b5bb6a74db
commit 82f37e16f3
113 changed files with 488 additions and 532 deletions

View File

@@ -61,7 +61,7 @@ void *average_malloc(int width, int height)
if(!a) {
return NULL;
}
a->running_sum[0] = (double*) vj_calloc( sizeof(double) * RUP8(width * height * 3 ));
a->running_sum[0] = (double*) vj_calloc( sizeof(double) * (width * height * 3 ));
if(!a->running_sum[0]) {
free(a);
return NULL;