home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Compressed Image File Formats
/
CompressedImageFileFormatsJohnMiano.iso
/
pc
/
Examples
/
c07
/
inc
/
matrix.h
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1998-06-23
|
269 b
|
17 lines
#ifndef __MATRIX_H
#define __MATRIX_H
#include "jpeg.h"
typedef double MATRIX [JpegSampleWidth][JpegSampleWidth] ;
void InitializeDctMatrix () ;
extern MATRIX DctMatrix ;
extern MATRIX IDctMatrix ;
void Multiply (MATRIX, MATRIX, MATRIX) ;
#endif