home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Unix / audio / DSPSoundProcess.README < prev    next >
Encoding:
Text File  |  1996-06-03  |  2.4 KB  |  63 lines

  1. A Tutorial for the programmation of the sound/DSP driver for real time
  2. sound processing.
  3.  
  4.  
  5. This directory contains:
  6.  
  7.  
  8.  
  9. • 01_Intro
  10. Documents, thing to know before getting started...
  11.  
  12. • 02_Cfunctions
  13. Describes the classes of C functions relative to the sound and the
  14. DSP. You should know of these functions (and where to look for them)
  15. before writing anything, so that you don't write something that
  16. already exists.
  17.  
  18. • 03_Play_Dacs
  19. Play_Dacs is a simple example of how to set-up a stream from the
  20. memory to the DACs, open a sound file, play it on the stream and
  21. control the play-back. It does not use the DSP. The example to start
  22. with.
  23.  
  24. • 04_Rec_Mike
  25. Rec_Mike is an example showing the basic way recording can be done.
  26. This example records from the microphone, and therefore is not very
  27. useful. But the mechanism of recording remains the same whether you
  28. record from the microphone of from the DSP. It does not use the DSP.
  29.  
  30. • 05_Dig_Ears
  31. Dig_Ears shows how to set-up a stream from the DSP to the DACs, and
  32. get samples from the SSI port. If you have MetaResearch's Digital
  33. Ears, you can plug them in the DSP port, and use this example to play
  34. a source in real time through the DSP to the DACs. It uses the DSP,
  35. shows how to set-up the streams and the DSP, and how to pass data to
  36. the DSP to control its action on the sound (e.g. the volume at which
  37. the sound is played back etc...), and how DMA functions. If you have
  38. nothing to plug in the DSP port (no Digital Ears etc...) you can make
  39. the DSP send a pure sine wave instead (see the C program.)
  40.  
  41. • 06_Play_Through_DSP
  42. Play_Through_DSP is an example showing how to play a sound through the
  43. DSP to the DACs using non DMA transfer from the host to the DSP and
  44. DMA from the DSP to the host. It shows you how to pass data to the DSP
  45. in a non DMA way.
  46.  
  47. • 07_DMA_To_DSP
  48. DMA_To_DSP shows you how to set-up a DMA stream from the host to the
  49. DSP then to the DACs, and play a sound on it. It involves DMA transfer
  50. in both directions. The faster rate of transmission of DMA makes it
  51. possible to reliably play sounds at 44100 stereo (provided the high
  52. water mark in the driver is high enough, see the C program.) It also
  53. illustrates a scheme for passing data to the DSP while it's playing
  54. back the sound.
  55.  
  56. • 08_PitFalls
  57. This is a huge sack where all the hints about the driver and the DSP
  58. are grouped. This is the trouble shooting part of this tutorial. Turn
  59. to it if you have a problem!
  60.  
  61. • 09_Future
  62. Future investigations, things to check etc...
  63.