Last change
on this file since 80 was
80,
checked in by Sam Hocevar, 14 years ago
|
- Adding the Golgotha source code. Not sure what's going to be interesting
in there, but since it's all public domain, there's certainly stuff to
pick up.
|
-
Property svn:keywords set to
Id
|
File size:
710 bytes
|
Line | |
---|
1 | /**********************************************************************
|
---|
2 | *<
|
---|
3 | FILE: hotcheck.h
|
---|
4 |
|
---|
5 | DESCRIPTION: Video Color check utilities
|
---|
6 |
|
---|
7 | CREATED BY: Dan Silva
|
---|
8 |
|
---|
9 | HISTORY: created 26 December 1995
|
---|
10 |
|
---|
11 | *> Copyright (c) 1995, All Rights Reserved.
|
---|
12 | **********************************************************************/
|
---|
13 |
|
---|
14 |
|
---|
15 | #ifndef __HOTCHECK__H
|
---|
16 | #define __HOTCHECK__H
|
---|
17 |
|
---|
18 | #define VID_NTSC 0
|
---|
19 | #define VID_PAL 1
|
---|
20 |
|
---|
21 | // Methods
|
---|
22 | #define HOT_FLAG 0
|
---|
23 | #define HOT_SCALE_LUM 1
|
---|
24 | #define HOT_SCALE_SAT 2
|
---|
25 |
|
---|
26 |
|
---|
27 | CoreExport void BuildHotTable( int video_type = VID_NTSC );
|
---|
28 | CoreExport int HotLimit(Color48 *thepix, int method = HOT_SCALE_LUM); // do video color check
|
---|
29 |
|
---|
30 |
|
---|
31 | #endif
|
---|
Note: See
TracBrowser
for help on using the repository browser.