Author: post
Date: 2009-06-27 17:43:57 +0200 (Sat, 27 Jun 2009)
New Revision: 2517
Modified:
trunk/librawstudio/rs-image16.c
Log:
No need to check if images are >64 pix, since both resampler and denoiser now
handles these cases.
Modified: trunk/librawstudio/rs-image16.c
===================================================================
--- trunk/librawstudio/rs-image16.c 2009-06-27 15:38:20 UTC (rev 2516)
+++ trunk/librawstudio/rs-image16.c 2009-06-27 15:43:57 UTC (rev 2517)
@@ -873,8 +873,8 @@
g_assert(output->w <= input->w);
g_assert(output->h <= input->h);
- g_assert(output->w > 64);
- g_assert(output->h > 64);
+ g_assert(output->w > 0);
+ g_assert(output->h > 0);
g_assert(output->w >= rectangle->width);
g_assert(output->h >= rectangle->height);
_______________________________________________
Rawstudio-commit mailing list
[email protected]
http://rawstudio.org/cgi-bin/mailman/listinfo/rawstudio-commit