annotate org/bugs-in-openal.org @ 1:c41d773a85fb

moved org files, ignored html files
author Robert McIntyre <rlm@mit.edu>
date Tue, 25 Oct 2011 13:03:35 -0700
parents bugs-in-openal.org@f9476ff7637e
children
rev   line source
rlm@0 1 * bugs in OpenAl-soft
rlm@0 2
rlm@0 3 Wave files produced by wave writer do not have the correct header.
rlm@0 4
rlm@0 5 something is wrong with
rlm@0 6
rlm@0 7 #+begin_src conf
rlm@0 8 drivers = null,
rlm@0 9 #+end_src
rlm@0 10
rlm@0 11 It only produces the single null option when queried with
rlm@0 12 ALC_ALL_DEVICES_SPECIFIER, where it should produce much more output.
rlm@0 13
rlm@0 14 specifically,
rlm@0 15
rlm@0 16 ------------------------------
rlm@0 17 #+begin_src conf
rlm@0 18 drivers = oss,
rlm@0 19 #+end_src
rlm@0 20
rlm@0 21 #+begin_src text
rlm@0 22 0: OSS Software
rlm@0 23 1: PulseAudio Software
rlm@0 24 2: ALSA Software on default
rlm@0 25 3: ALSA Software on HDA Intel [ALC272 Analog] (hw:0,0)
rlm@0 26 4: ALSA Software on HDA Intel [ALC272 Digital] (hw:0,1)
rlm@0 27 5: ALSA Software on HDA Intel [INTEL HDMI] (hw:0,3)
rlm@0 28 6: PortAudio Software
rlm@0 29 7: Wave File Writer
rlm@0 30 #+end_src
rlm@0 31 ------------------------------
rlm@0 32 #+begin_src conf
rlm@0 33 drivers = pulse,
rlm@0 34 #+end_src
rlm@0 35
rlm@0 36 #+begin_src text
rlm@0 37 Devices
rlm@0 38 0: Internal Audio Analog Stereo
rlm@0 39 #+end_src
rlm@0 40 ------------------------------
rlm@0 41 #+begin_src conf
rlm@0 42 drivers = wave,
rlm@0 43 #+end_src
rlm@0 44
rlm@0 45 #+begin_src text
rlm@0 46 Devices
rlm@0 47 0: Wave File Writer
rlm@0 48 #+end_src
rlm@0 49 ------------------------------
rlm@0 50