Fix non-OpenMP build

This commit is contained in:
Flössie
2019-02-06 06:54:31 +01:00
parent 9210a56ca4
commit 37027e46bd
27 changed files with 364 additions and 14 deletions

View File

@@ -77,10 +77,10 @@ void RawImageSource::fast_demosaic()
#endif
{
char (*buffer);
float (*greentile);
float (*redtile);
float (*bluetile);
char *buffer;
float *greentile;
float *redtile;
float *bluetile;
#define CLF 1
// assign working space
buffer = (char *) calloc(3 * sizeof(float) * TS * TS + 3 * CLF * 64 + 63, 1);