pike.git
/
src
/
modules
/
Image
/
dct.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/modules/Image/dct.c:1:
-
/* $Id: dct.c,v 1.
10
1997
/
12
/
22
23
:
26
:
45
hubbe Exp $ */
+
/* $Id: dct.c,v 1.
11
1998
/
01
/
13
22:
59
:
22
hubbe Exp $ */
/* **! module Image **! note
-
**! $Id: dct.c,v 1.
10
1997
/
12
/
22
23
:
26
:
45
hubbe Exp $
+
**! $Id: dct.c,v 1.
11
1998
/
01
/
13
22:
59
:
22
hubbe Exp $
**! class image */ #include "global.h" #include <math.h> #include <ctype.h> #include "stralloc.h" #include "global.h"
pike.git/src/modules/Image/dct.c:18:
#include "object.h" #include "constants.h" #include "interpret.h" #include "svalue.h" #include "array.h" #include "error.h" #include "image.h" extern struct program *image_program;
+
#ifdef THIS
+
#undef THIS /* Needed for NT */
+
#endif
#define THIS ((struct image *)(fp->current_storage)) #define THISOBJ (fp->current_object) #define testrange(x) MAXIMUM(MINIMUM((x),255),0) static const double c0=0.70710678118654752440; static const double pi=3.14159265358979323846; /* **! method object dct(int newx,int newy)