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.

65 lines
2.3 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 Intel Corporation.
  10. ** All Rights Reserved.
  11. **
  12. ** *************************************************************************
  13. */
  14. //////////////////////////////////////////////////////////////////////////
  15. // $Author: AGUPTA2 $
  16. // $Date: 14 Mar 1996 14:56:42 $
  17. // $Archive: S:\h26x\src\dec\d3idct.h_v $
  18. // $Header: S:\h26x\src\dec\d3idct.h_v 1.5 14 Mar 1996 14:56:42 AGUPTA2 $
  19. // $Log: S:\h26x\src\dec\d3idct.h_v $
  20. ;//
  21. ;// Rev 1.5 14 Mar 1996 14:56:42 AGUPTA2
  22. ;//
  23. ;// Rev 1.4 27 Dec 1995 14:36:14 RMCKENZX
  24. ;// Added copyright notice
  25. //
  26. // Rev 1.3 09 Dec 1995 17:34:26 RMCKENZX
  27. // Re-checked in module to support decoder re-architecture (thru PB Frames)
  28. //
  29. // Rev 1.1 27 Nov 1995 13:13:32 CZHU
  30. //
  31. //
  32. // Rev 1.0 27 Nov 1995 13:08:34 CZHU
  33. // Initial revision.
  34. ////////////////////////////////////////////////////////////////////////////////
  35. // Input:
  36. // pIQ_INDEX, pointer to pointer for Inverse quantization and index
  37. // for the current block.
  38. // No_Coeff, A 32 bit number indicate block types, etc.
  39. // 0--63, inter block, number of coeff
  40. // 64--127 64+ intra block, number of coeff
  41. // pIntraBuf, Buffer pointer for intra blocks.
  42. //
  43. // pInterBuf, Buffer pointer for inter blocks.
  44. //
  45. //
  46. // return:
  47. //
  48. //////////////////////////////////////////////////////////////////////////////////
  49. #ifndef _DECODE_BLOCK_IDCT_INC
  50. #define _DECODE_BLOCK_IDCT_INC
  51. extern U32 DecodeBlock_IDCT ( U32 pIQ_INDEX,
  52. U32 No_Coeff,
  53. U32 pIntraBuf,
  54. U32 pInterBuf);
  55. #ifdef USE_MMX // { USE_MMX
  56. extern "C" void _fastcall MMX_DecodeBlock_IDCT ( U32 pIQ_INDEX,
  57. U32 No_Coeff,
  58. U32 pInterBuf);
  59. #endif // } USE_MMX
  60. #endif