es1370
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /proc/sound, /dev/sndstat
  2. -------------------------
  3. /proc/sound and /dev/sndstat is not supported by the
  4. driver. To find out whether the driver succeeded loading,
  5. check the kernel log (dmesg).
  6. ALaw/uLaw sample formats
  7. ------------------------
  8. This driver does not support the ALaw/uLaw sample formats.
  9. ALaw is the default mode when opening a sound device
  10. using OSS/Free. The reason for the lack of support is
  11. that the hardware does not support these formats, and adding
  12. conversion routines to the kernel would lead to very ugly
  13. code in the presence of the mmap interface to the driver.
  14. And since xquake uses mmap, mmap is considered important :-)
  15. and no sane application uses ALaw/uLaw these days anyway.
  16. In short, playing a Sun .au file as follows:
  17. cat my_file.au > /dev/dsp
  18. does not work. Instead, you may use the play script from
  19. Chris Bagwell's sox-12.14 package (available from the URL
  20. below) to play many different audio file formats.
  21. The script automatically determines the audio format
  22. and does do audio conversions if necessary.
  23. http://home.sprynet.com/sprynet/cbagwell/projects.html
  24. Blocking vs. nonblocking IO
  25. ---------------------------
  26. Unlike OSS/Free this driver honours the O_NONBLOCK file flag
  27. not only during open, but also during read and write.
  28. This is an effort to make the sound driver interface more
  29. regular. Timidity has problems with this; a patch
  30. is available from http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html.
  31. (Timidity patched will also run on OSS/Free).
  32. MIDI UART
  33. ---------
  34. The driver supports a simple MIDI UART interface, with
  35. no ioctl's supported.
  36. MIDI synthesizer
  37. ----------------
  38. This soundcard does not have any hardware MIDI synthesizer;
  39. MIDI synthesis has to be done in software. To allow this
  40. the driver/soundcard supports two PCM (/dev/dsp) interfaces.
  41. The second one goes to the mixer "synth" setting and supports
  42. only a limited set of sampling rates (44100, 22050, 11025, 5512).
  43. By setting lineout to 1 on the driver command line
  44. (eg. insmod es1370 lineout=1) it is even possible on some
  45. cards to convert the LINEIN jack into a second LINEOUT jack, thus
  46. making it possible to output four independent audio channels!
  47. There is a freely available software package that allows
  48. MIDI file playback on this soundcard called Timidity.
  49. See http://www.cgs.fi/~tt/timidity/.
  50. Thomas Sailer
  51. t.sailer@alumni.ethz.ch