home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Compressed Image File Formats
/
CompressedImageFileFormatsJohnMiano.iso
/
pc
/
Examples
/
c06
/
inc
/
jpegdeco.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1998-12-20
|
279 b
|
18 lines
#include <iostream>
#include "datatype.h"
using namespace std ;
class JpegDecoder
{
public:
JpegDecoder (istream &) ;
UBYTE1 ReadByte () ;
int NextBit () ;
private:
unsigned int bit_buffer ;
unsigned int bit_position ;
istream *input_stream ;
} ;