Mercurial > mplayer.hg
annotate gui/util/bitmap.h @ 34601:f9b7f4b48fcb
Fix bug in freeing URL list items.
The urlItem structure wasn't freed.
author | ib |
---|---|
date | Sat, 11 Feb 2012 21:05:34 +0000 |
parents | 60449f4234f7 |
children | b03481253518 |
rev | line source |
---|---|
33046 | 1 /* |
2 * This file is part of MPlayer. | |
3 * | |
4 * MPlayer is free software; you can redistribute it and/or modify | |
5 * it under the terms of the GNU General Public License as published by | |
6 * the Free Software Foundation; either version 2 of the License, or | |
7 * (at your option) any later version. | |
8 * | |
9 * MPlayer is distributed in the hope that it will be useful, | |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 * GNU General Public License for more details. | |
13 * | |
14 * You should have received a copy of the GNU General Public License along | |
15 * with MPlayer; if not, write to the Free Software Foundation, Inc., | |
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
17 */ | |
18 | |
19 #ifndef MPLAYER_GUI_BITMAP_H | |
20 #define MPLAYER_GUI_BITMAP_H | |
21 | |
33984 | 22 /** |
23 * @def GUI_TRANSPARENT | |
24 * transparent color (opaque fuchsia/magenta) | |
25 */ | |
26 #define GUI_TRANSPARENT 0xffff00ff | |
33729 | 27 #define ALPHA_OPAQUE 0xff000000 |
33534 | 28 |
29 // for legacy reasons, we must treat all kind of fuchsia/magenta as transparent | |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33729
diff
changeset
|
30 #define IS_TRANSPARENT(c) ((ALPHA_OPAQUE | (c)) == GUI_TRANSPARENT) |
33115
c2da7b725fd8
Use appropriate data type uint32_t for 32 bpp bitmap data.
ib
parents:
33114
diff
changeset
|
31 |
33046 | 32 typedef struct { |
33 unsigned long Width; | |
34 unsigned long Height; | |
33555 | 35 unsigned int Bpp; |
33046 | 36 unsigned long ImageSize; |
37 char *Image; | |
33555 | 38 } guiImage; |
33046 | 39 |
33983 | 40 void bpFree(guiImage *img); |
41 int bpRead(const char *fname, guiImage *img); | |
33710 | 42 int bpRenderMask(const guiImage *in, guiImage *out); |
33046 | 43 |
44 #endif /* MPLAYER_GUI_BITMAP_H */ |