mirror of https://github.com/mpv-player/mpv
19 lines
440 B
C
19 lines
440 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;
|
|
|
|
extern int bpRead( char * fname, txSample * bf );
|
|
extern int conv24to32( txSample * bf );
|
|
extern void Convert32to1( txSample * in,txSample * out,int adaptivlimit );
|
|
extern void Convert1to32( txSample * in,txSample * out );
|
|
|
|
#endif /* __BITMAP_H */
|