Mercurial > mplayer.hg
annotate Gui/bitmap.h @ 9623:20f0a254142d
bugfix from Raindel Shachar <raindel@techunix.technion.ac.il>
author | pontscho |
---|---|
date | Thu, 20 Mar 2003 07:51:03 +0000 |
parents | aa55f2f0b057 |
children | 22572f1dafa3 |
rev | line source |
---|---|
1693 | 1 #ifndef __MYSAMPLE |
2 #define __MYSAMPLE | |
3 | |
4 typedef struct _txSample | |
5 { | |
9190 | 6 unsigned long Width; |
7 unsigned long Height; | |
1693 | 8 unsigned int BPP; |
9 unsigned long ImageSize; | |
10 char * Image; | |
11 } txSample; | |
12 | |
13 extern int bpRead( char * fname, txSample * bf ); | |
14 extern int conv24to32( txSample * bf ); | |
2717 | 15 extern void Convert32to1( txSample * in,txSample * out,int adaptivlimit ); |
16 extern void Convert1to32( txSample * in,txSample * out ); | |
1693 | 17 |
1991
dee4b2ea5e5b
add gui support to config scripts, and fixed some warning.
pontscho
parents:
1693
diff
changeset
|
18 #endif |