annotate gui/bitmap.h @ 23262:a08c4d770870
Ignore comments where no '=' follows the comment name (otherwise
"album_ja=..." would result in "Album: ja=..." MPlayer output).
Patch by Nicolas George [nicolas george [at] ens fr].
See thread: "[PATCH] Equals in Ogg comments", Mon, 5 Mar 2007 10:50:02 +0100
author |
reimar |
date |
Wed, 09 May 2007 20:10:14 +0000 |
parents |
019bfce0c0dc |
children |
f15bce7943b9 |
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
|
23194
|
13 int bpRead( char * fname, txSample * bf );
|
|
14 void Convert32to1( txSample * in,txSample * out,int adaptivlimit );
|
23077
|
15
|
|
16 #endif /* __BITMAP_H */
|