annotate gui/bitmap.h @ 23100:23fb118dc55a
Give variable names for static FFmpeg libraries a '_a' suffix.
author |
diego |
date |
Thu, 26 Apr 2007 11:19:29 +0000 |
parents |
17bf4f4b0715 |
children |
41bbba7c3850 |
rev |
line source |
23077
|
1 #ifndef __BITMAP_H
|
|
2 #define __BITMAP_H
|
|
3
|
|
4 typedef struct _txSample
|
|
5 {
|
|
6 unsigned long Width;
|
|
7 unsigned long Height;
|
|
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 );
|
|
15 extern void Convert32to1( txSample * in,txSample * out,int adaptivlimit );
|
|
16 extern void Convert1to32( txSample * in,txSample * out );
|
|
17
|
|
18 #endif /* __BITMAP_H */
|