mirror of
https://github.com/mpv-player/mpv
synced 2024-12-14 10:55:43 +00:00
3e9e4acd8d
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23709 b3059339-0415-0410-9bf9-f77b7e298cf2
17 lines
334 B
C
17 lines
334 B
C
#ifndef GUI_BITMAP_H
|
|
#define GUI_BITMAP_H
|
|
|
|
typedef struct _txSample
|
|
{
|
|
unsigned long Width;
|
|
unsigned long Height;
|
|
unsigned int BPP;
|
|
unsigned long ImageSize;
|
|
char * Image;
|
|
} txSample;
|
|
|
|
int bpRead( char * fname, txSample * bf );
|
|
void Convert32to1( txSample * in,txSample * out,int adaptivlimit );
|
|
|
|
#endif /* GUI_BITMAP_H */
|