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.

64 lines
1.8 KiB

  1. /* *************************************************************************
  2. ** INTEL Corporation Proprietary Information
  3. **
  4. ** This listing is supplied under the terms of a license
  5. ** agreement with INTEL Corporation and may not be copied
  6. ** nor disclosed except in accordance with the terms of
  7. ** that agreement.
  8. **
  9. ** Copyright (c) 1995, 1996 Intel Corporation.
  10. ** All Rights Reserved.
  11. **
  12. ** *************************************************************************
  13. */
  14. //////////////////////////////////////////////////////////////////////////
  15. // $Author: AKASAI $
  16. // $Date: 18 Mar 1996 10:52:28 $
  17. // $Archive: S:\h26x\src\dec\d1fm.h_v $
  18. // $Header: S:\h26x\src\dec\d1fm.h_v 1.1 18 Mar 1996 10:52:28 AKASAI $
  19. // $Log: S:\h26x\src\dec\d1fm.h_v $
  20. ;//
  21. ;// Rev 1.1 18 Mar 1996 10:52:28 AKASAI
  22. ;//
  23. ;// Fixed pvcs comment from ;// to //.
  24. //
  25. // Rev 1.0 18 Mar 1996 10:51:12 AKASAI
  26. // Initial revision.
  27. //
  28. // Rev 1.3 27 Dec 1995 14:36:20 RMCKENZX
  29. // Added copyright notice
  30. //
  31. // Rev 1.2 12 Sep 1995 13:40:40 AKASAI
  32. //
  33. // Changed ClipPix to ClipPixIntra and added ClipPixInter.
  34. //
  35. // Rev 1.1 22 Aug 1995 10:29:32 CZHU
  36. //
  37. // Added #define to prevent multiple inclusion.
  38. //
  39. // Rev 1.0 21 Aug 1995 14:38:48 CZHU
  40. // Initial revision.
  41. #ifndef _DXFMIDCT_
  42. #define _DXFMIDCT_
  43. #define NUM_ELEM 64 // Number of elements in the block (8x8)
  44. #define KERNEL_SIZE 16 // Number of elements needed in kernel
  45. #define CLIP_RANGE 2048
  46. #define SCALER 13
  47. extern const I32 ROUNDER;
  48. extern I8 Unique[];
  49. extern I8 PClass[];
  50. extern I32 KernelCoeff[NUM_ELEM][10];
  51. extern I8 MapMatrix[NUM_ELEM][KERNEL_SIZE];
  52. extern U8 ClipPixIntra[];
  53. extern I32 ClipPixInter[];
  54. #endif //_DXFMIDCT_