ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/CV/CV.xs
(Generate patch)

Comparing CV/CV.xs (file contents):
Revision 1.36 by root, Thu Jun 22 20:50:05 2006 UTC vs.
Revision 1.37 by root, Thu Jun 22 22:01:26 2006 UTC

118 return; 118 return;
119 119
120 f->v2 /= f->n; 120 f->v2 /= f->n;
121 f->v3 /= f->n; 121 f->v3 /= f->n;
122 122
123 // this is a peculiar weightung, but it works fine
124 f->v1 /= 255.; 123 f->v1 /= 255.;
125 f->v2 /= 128. * 128.; 124 f->v2 /= 255. * 255.; f->v2 = sqrtf (f->v2);
126 f->v3 /= 128. * 128. * 64.; 125 f->v3 /= 255. * 255. * 255.; f->v3 = powf (fabsf (f->v3), 1./3.);
127} 126}
128 127
129static guint32 a85_val; 128static guint32 a85_val;
130static guint a85_cnt; 129static guint a85_cnt;
131static guchar a85_buf[LINELENGTH], *a85_ptr; 130static guchar a85_buf[LINELENGTH], *a85_ptr;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines