hotcheck.h

Go to the documentation of this file.
00001 /**********************************************************************
00002  *<
00003     FILE:  hotcheck.h
00004 
00005     DESCRIPTION:  Video Color check utilities
00006 
00007     CREATED BY: Dan Silva
00008 
00009     HISTORY: created 26 December 1995
00010 
00011  *> Copyright (c) 1995, All Rights Reserved.
00012  **********************************************************************/
00013 #pragma once
00014 
00015 #include "coreexp.h"
00016 // forward declarations
00017 struct Color48;
00018 
00019 #define VID_NTSC 0
00020 #define VID_PAL 1
00021 
00022 // Methods
00023 #define HOT_FLAG 0
00024 #define HOT_SCALE_LUM 1
00025 #define HOT_SCALE_SAT 2
00026 
00027 
00028 CoreExport void  BuildHotTable( int video_type = VID_NTSC );
00029 // do video color check
00030 CoreExport int HotLimit(Color48* thepix, int method = HOT_SCALE_LUM);
00031