1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-14 19:05:33 +00:00
mpv/gui/bitmap.h
reimar 14fc62d117 Make functions and variables not used outside bitmap.c static
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23214 b3059339-0415-0410-9bf9-f77b7e298cf2
2007-05-02 16:24:23 +00:00

17 lines
328 B
C

#ifndef __BITMAP_H
#define __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 /* __BITMAP_H */