home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 23 / IOPROG_23.ISO / SOFT / SOUND.ZIP / Process.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1998-11-05  |  938 b   |  38 lines

  1. // Process.cpp: implementation of the CProcess class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4.  
  5. #include "stdafx.h"
  6. #include "??????.h"
  7. #include "Process.h"
  8.  
  9. #ifdef _DEBUG
  10. #undef THIS_FILE
  11. static char THIS_FILE[]=__FILE__;
  12. #define new DEBUG_NEW
  13. #endif
  14.  
  15. //////////////////////////////////////////////////////////////////////
  16. // Only One Global class CFFt for the whole app
  17. //////////////////////////////////////////////////////////////////////
  18. CProcess Fft;
  19. //////////////////////////////////////////////////////////////////////
  20. // Construction/Destruction
  21. //////////////////////////////////////////////////////////////////////
  22.  
  23. CProcess::CProcess()
  24. {
  25.  
  26. }
  27.  
  28. CProcess::~CProcess()
  29. {
  30.  
  31. }
  32.  
  33. void CProcess::ComputeSamples(SHORT *)
  34. {
  35.     CSoundIn::ComputeSamples(0);  // first call the process base class
  36.     // place here you process (try to add an offset to the Input samples)
  37. }
  38.