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.
14
1999
/
06
/
18
19
:
19
:
20
mirar
Exp $ */
+
/* $Id: dct.c,v 1.
15
2000
/
07
/
28
07
:
12
:
44
hubbe
Exp $ */
/* **! module Image **! note
-
**! $Id: dct.c,v 1.
14
1999
/
06
/
18
19
:
19
:
20
mirar
Exp $
+
**! $Id: dct.c,v 1.
15
2000
/
07
/
28
07
:
12
:
44
hubbe
Exp $
**! class Image */ #include "global.h" #include <math.h> #include <ctype.h> #include "stralloc.h" #include "global.h" #include "pike_macros.h" #include "object.h" #include "constants.h" #include "interpret.h" #include "svalue.h" #include "array.h" #include "error.h" #include "image.h"
-
+
/* This must be included last! */
+
#include "module_magic.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;