Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.0 KiB

  1. // $Header: G:/SwDev/WDM/Video/bt848/rcs/Dcdrvals.h 1.3 1998/04/29 22:43:31 tomz Exp $
  2. #ifndef __DCDRVALS_H
  3. #define __DCDRVALS_H
  4. #ifdef __cplusplus
  5. const int HueMin = -90;
  6. const int HueMax = 90;
  7. const int HueDef = 0;
  8. const int SatMinNTSC = 0;
  9. const int SatMaxNTSC = 0x1FF;
  10. const int SatDefNTSC = 0xFE;
  11. const int SatMinSECAM = 0;
  12. const int SatMaxSECAM = 0x1FF;
  13. const int SatDefSECAM = 0x87;
  14. const int ConMin = 0;
  15. const int ConMax = 236;
  16. const int ConDef = 100;
  17. const int BrtMin = -50;
  18. const int BrtMax = 50;
  19. const int BrtDef = 0;
  20. const int ParamMin = 0;
  21. const int ParamMax = 10000;
  22. const int ParamDef = 5000;
  23. #else
  24. #define HueMin -90
  25. #define HueMax 90
  26. #define HueDef 0
  27. #define SatMinNTSC 0
  28. #define SatMaxNTSC 0x1FF
  29. #define SatDefNTSC 0xFE
  30. #define SatMinSECAM 0
  31. #define SatMaxSECAM 0x1FF
  32. #define SatDefSECAM 0x87
  33. #define ConMin 0
  34. #define ConMax 236
  35. #define ConDef 100
  36. #define BrtMin -50
  37. #define BrtMax 50
  38. #define BrtDef 0
  39. #define ParamMin 0
  40. #define ParamMax 255
  41. #define ParamDef 128
  42. #endif
  43. #endif