Mercurial > mplayer.hg
annotate gui/bitmap.h @ 26313:270df0673cc2
reset() should not senselessly close and reopen
the device but instead just call flush_audio()
author | reimar |
---|---|
date | Mon, 07 Apr 2008 17:39:41 +0000 |
parents | 4129c8cfa742 |
children | b0a7b35b78d2 |
rev | line source |
---|---|
26029 | 1 #ifndef MPLAYER_GUI_BITMAP_H |
2 #define MPLAYER_GUI_BITMAP_H | |
23077 | 3 |
25607
9d0b189ce1b2
Fix illegal identifiers: Names starting with __ or _ and uppercase are reserved
diego
parents:
23689
diff
changeset
|
4 typedef struct txSample |
23077 | 5 { |
6 unsigned long Width; | |
7 unsigned long Height; | |
8 unsigned int BPP; | |
9 unsigned long ImageSize; | |
10 char * Image; | |
11 } txSample; | |
12 | |
23194 | 13 int bpRead( char * fname, txSample * bf ); |
14 void Convert32to1( txSample * in,txSample * out,int adaptivlimit ); | |
23077 | 15 |
26029 | 16 #endif /* MPLAYER_GUI_BITMAP_H */ |