preprocfunctions.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. /****************************************************************************
  2. *
  3. * Module Title : PreProcFunctions.c
  4. *
  5. * Description :
  6. *
  7. * AUTHOR : Paul Wilkins
  8. *
  9. *****************************************************************************
  10. * Revision History
  11. *
  12. * 1.00 JBB 22 Aug 00 Configuration baseline
  13. *
  14. *****************************************************************************
  15. */
  16. /****************************************************************************
  17. * Header Files
  18. *****************************************************************************
  19. */
  20. #define STRICT /* Strict type checking. */
  21. #include "preproc.h"
  22. #ifdef _MSC_VER
  23. #pragma warning( disable : 4799 ) // Disable no emms instruction warning!
  24. #endif
  25. /****************************************************************************
  26. * Module constants.
  27. *****************************************************************************
  28. */
  29. /****************************************************************************
  30. * Imports.
  31. *****************************************************************************
  32. */
  33. /****************************************************************************
  34. * Exported Global Variables
  35. *****************************************************************************
  36. */
  37. /****************************************************************************
  38. * Exported Functions
  39. *****************************************************************************
  40. */
  41. /****************************************************************************
  42. * Module Statics
  43. *****************************************************************************
  44. */
  45. /****************************************************************************
  46. * Forward References
  47. *****************************************************************************
  48. */
  49. /****************************************************************************
  50. *
  51. * ROUTINE : MachineSpecificConfig
  52. *
  53. * INPUTS : None
  54. *
  55. * OUTPUTS : None
  56. *
  57. * RETURNS : None
  58. *
  59. * FUNCTION : Checks for machine specifc features such as MMX support
  60. * sets approipriate flags and function pointers.
  61. *
  62. * SPECIAL NOTES : None.
  63. *
  64. *
  65. * ERRORS : None.
  66. *
  67. ****************************************************************************/
  68. #define MMX_ENABLED 1
  69. void MachineSpecificConfig(PP_INSTANCE *ppi)
  70. {
  71. UINT32 FeatureFlags = 0;
  72. ppi->RowSAD = ScalarRowSAD;
  73. ppi->ColSAD = ScalarColSAD;
  74. }
  75. /****************************************************************************
  76. *
  77. * ROUTINE : ClearMmxState()
  78. *
  79. *
  80. * INPUTS : None
  81. *
  82. * OUTPUTS :
  83. *
  84. * RETURNS :
  85. *
  86. *
  87. * FUNCTION : Clears down the MMX state
  88. *
  89. * SPECIAL NOTES : None.
  90. *
  91. *
  92. * ERRORS : None.
  93. *
  94. ****************************************************************************/
  95. void ClearMmxState(PP_INSTANCE *ppi)
  96. {
  97. return;
  98. }