Mercurial > mplayer.hg
annotate Gui/bitmap.h @ 9853:765cca786fec
Add netstream
A little 10L fix
Call control(STREAM_CTRL_RESET)
Close stream fd AFTER calling their close function (as some may still
need it during close)
author | albeu |
---|---|
date | Sun, 06 Apr 2003 16:36:17 +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 |