Mercurial > mplayer.hg
view Gui/bitmap.h @ 17112:0b6e4b1e2c0d
another 100l, codec-cfg relied on mp_msg printing nothing....
author | ods15 |
---|---|
date | Tue, 06 Dec 2005 12:03:51 +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 */