diff Core/ImageFormats/ImageProcessing.cpp @ 860:80c7e53a69b5 jpeg

bugfix
author Sebastien Jodogne <s.jodogne@gmail.com>
date Sat, 07 Jun 2014 10:32:15 +0200
parents 610a9a1ed855
children 5a125d587810
line wrap: on
line diff
--- a/Core/ImageFormats/ImageProcessing.cpp	Fri Jun 06 18:12:31 2014 +0200
+++ b/Core/ImageFormats/ImageProcessing.cpp	Sat Jun 07 10:32:15 2014 +0200
@@ -133,7 +133,6 @@
     if (target.GetFormat() == PixelFormat_Grayscale8 &&
         source.GetFormat() == PixelFormat_Grayscale16)
     {
-      printf("ICI\n");
       ConvertInternal<uint8_t, uint16_t>(target, source);
       return;
     }
@@ -148,7 +147,6 @@
     if (target.GetFormat() == PixelFormat_Grayscale8 &&
         source.GetFormat() == PixelFormat_SignedGrayscale16)
     {
-      printf("ICI2\n");
       ConvertInternal<uint8_t, int16_t>(target, source);
       return;
     }