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.

66 lines
2.0 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: 22 Mar 1996 17:22:36 $
  17. // $Archive: S:\h26x\src\dec\d3bvriq.h_v $
  18. // $Header: S:\h26x\src\dec\d3bvriq.h_v 1.5 22 Mar 1996 17:22:36 AGUPTA2 $
  19. // $Log: S:\h26x\src\dec\d3bvriq.h_v $
  20. ;//
  21. ;// Rev 1.5 22 Mar 1996 17:22:36 AGUPTA2
  22. ;// Minor interface change to accomodate MMX rtns. Now the interface is the
  23. ;// same for MMX and IA.
  24. ;//
  25. ;// Rev 1.4 14 Mar 1996 14:58:26 AGUPTA2
  26. ;// Added decls for MMX rtn.
  27. ;//
  28. ;// Rev 1.3 27 Dec 1995 14:36:10 RMCKENZX
  29. ;// Added copyright notice
  30. //
  31. // Rev 1.2 09 Dec 1995 17:34:48 RMCKENZX
  32. // Re-checked in module to support decoder re-architecture (thru PB frames)
  33. //
  34. // Rev 1.1 27 Nov 1995 14:39:28 CZHU
  35. //
  36. // Rev 1.0 27 Nov 1995 14:37:10 CZHU
  37. // Initial revision.
  38. #ifndef __VLD_RLD_IQ_Block__
  39. #define __VLD_RLD_IQ_Block__
  40. extern "C" U32 VLD_RLD_IQ_Block(T_BlkAction *lpBlockAction,
  41. U8 *lpSrc,
  42. U32 uBitsread,
  43. U32 *pN,
  44. U32 *pIQ_INDEX);
  45. #ifdef USE_MMX // { USE_MMX
  46. extern "C" U32 MMX_VLD_RLD_IQ_Block(T_BlkAction *lpBlockAction,
  47. U8 *lpSrc,
  48. U32 uBitsread,
  49. U32 *pN,
  50. U32 *pIQ_INDEX);
  51. #endif // } USE_MMX
  52. typedef U32 (*T_pFunc_VLD_RLD_IQ_Block)
  53. (T_BlkAction *,
  54. U8 *,
  55. U32,
  56. U32 *,
  57. U32 *);
  58. #endif