Mercurial > mplayer.hg
annotate Gui/bitmap.h @ 7435:c7a9bcecba07
d_width==screenwidth && -fs hopefully fixed
author | arpi |
---|---|
date | Wed, 18 Sep 2002 01:22:03 +0000 |
parents | 634d93c68912 |
children | 30a9a6358ee9 |
rev | line source |
---|---|
1693 | 1 |
2 #ifndef __MYSAMPLE | |
3 #define __MYSAMPLE | |
4 | |
5 typedef struct _txSample | |
6 { | |
7 unsigned int Width; | |
8 unsigned int Height; | |
9 unsigned int BPP; | |
10 unsigned long ImageSize; | |
11 char * Image; | |
12 } txSample; | |
13 | |
14 #include "png/png.h" | |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
2717
diff
changeset
|
15 #include "../../mp_msg.h" |
1693 | 16 |
17 extern int bpRead( char * fname, txSample * bf ); | |
18 extern int conv24to32( txSample * bf ); | |
2717 | 19 extern void Convert32to1( txSample * in,txSample * out,int adaptivlimit ); |
20 extern void Convert1to32( txSample * in,txSample * out ); | |
1693 | 21 |
1991
dee4b2ea5e5b
add gui support to config scripts, and fixed some warning.
pontscho
parents:
1693
diff
changeset
|
22 #endif |