view Gui/bitmap.h @ 17361:62dd9493d896

1.1193: [does not apply] 1.1192: minor grammar/punctuation on lavc's keyint option 1.1191: further wording fix for uspp 1.1190: Support vme=8 (iterative overlapped block). 1.1189: Include the snow wavelet comparison functions from DOCS/tech/snow.txt 1.1188: wording 1.1187: Add bidir_refine to lavc's set of options, and document it.
author kraymer
date Wed, 11 Jan 2006 23:03:50 +0000
parents 22572f1dafa3
children
line wrap: on
line source

#ifndef __BITMAP_H
#define __BITMAP_H

typedef struct _txSample
{
 unsigned long Width;
 unsigned long Height;
 unsigned int  BPP;
 unsigned long ImageSize;
 char *        Image;
} txSample;

extern int bpRead( char * fname, txSample * bf );
extern int conv24to32( txSample * bf );
extern void Convert32to1( txSample * in,txSample * out,int adaptivlimit );
extern void Convert1to32( txSample * in,txSample * out );

#endif /* __BITMAP_H */