File: ccvt_types.h

package info (click to toggle)
libindi 0.9.1-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 3,232 kB
  • sloc: ansic: 17,921; cpp: 17,821; xml: 260; makefile: 12
file content (61 lines) | stat: -rw-r--r-- 1,514 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*  CCVT: ColourConVerT: simple library for converting colourspaces
    Copyright (C) 2002 Nemosoft Unv.
    Email:athomas@nemsoft.co.uk

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA

    For questions, remarks, patches, etc. for this program, the author can be
    reached at nemosoft@smcc.demon.nl.
*/

#ifndef CCVT_TYPES_H
#define CCVT_TYPES_H

typedef struct
{
		unsigned char b;
		unsigned char g;
		unsigned char r;
		unsigned char z;
} PIXTYPE_bgr32;

typedef struct
{
		unsigned char b;
		unsigned char g;
		unsigned char r;
} PIXTYPE_bgr24;

typedef struct
{
		unsigned char r;
		unsigned char g;
		unsigned char b;
		unsigned char z;
} PIXTYPE_rgb32;

typedef struct
{
		unsigned char r;
		unsigned char g;
		unsigned char b;
} PIXTYPE_rgb24;

#define SAT(c) \
	if (c & (~255)) { if (c < 0) c = 0; else c = 255; }



#endif