View | Details | Raw Unified | Return to bug 46476
Collapse All | Expand All

(-)kdc2tiff.new/files/patch-GFilter.cpp (+11 lines)
Line 0 Link Here
1
--- GFilter.cpp.orig	Mon Dec 23 04:20:42 2002
2
+++ GFilter.cpp	Mon Dec 23 04:21:00 2002
3
@@ -26,7 +26,7 @@
4
   green = *(short*)(((char*)table)+(green&0xFFFE));
5
   blue = *(short*)(((char*)table)+(blue&0xFFFE));
6
 }
7
-void GFilter_GammaCorrection::setGammaCorrection(float gamma=1) {
8
+void GFilter_GammaCorrection::setGammaCorrection(float gamma) {
9
   // create table
10
   if (table)
11
     delete[] table;
(-)kdc2tiff.new/files/patch-GICBayer.cpp (+29 lines)
Line 0 Link Here
1
--- GICBayer.cpp.orig	Mon Dec 23 04:19:54 2002
2
+++ GICBayer.cpp	Mon Dec 23 04:20:21 2002
3
@@ -236,7 +236,7 @@
4
 
5
 GICBayer_Green::GICBayer_Green(const unsigned char* imagedata, 
6
 			       int width, int height, 
7
-			       float maxerr=0)
8
+			       float maxerr)
9
   : GImageComponent(width,height,maxerr) {
10
 
11
   /* initialize arrays
12
@@ -428,7 +428,7 @@
13
 GICBayer_Red::GICBayer_Red(const unsigned char* imagedata, 
14
 				   int width, int height, 
15
 				   GImageComponent& green,
16
-				   float maxerr=0)
17
+				   float maxerr)
18
   : GImageComponent(width,height,maxerr) {
19
 
20
   if ((green.getWidth()!=w)||(green.getHeight()!=h)) {
21
@@ -617,7 +617,7 @@
22
 GICBayer_Blue::GICBayer_Blue(const unsigned char* imagedata, 
23
 			     int width, int height, 
24
 			     GImageComponent& green,
25
-			     float maxerr=0)
26
+			     float maxerr)
27
   : GImageComponent(width,height,maxerr) {
28
 
29
   if ((green.getWidth()!=w)||(green.getHeight()!=h)) {
(-)kdc2tiff.new/files/patch-GImageComponent.cpp (+11 lines)
Line 0 Link Here
1
--- GImageComponent.cpp.orig	Mon Dec 23 04:19:27 2002
2
+++ GImageComponent.cpp	Mon Dec 23 04:19:39 2002
3
@@ -283,7 +283,7 @@
4
 
5
 GImageComponent0::GImageComponent0(const unsigned char* imagedata, 
6
 				   int width, int height, 
7
-				   float maxerr=0)
8
+				   float maxerr)
9
   : GImageComponent(width,height,maxerr) {
10
 
11
   int itter;

Return to bug 46476