Mercurial > audio-send
comparison 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 |
comparison
equal
deleted
inserted
replaced
0:f9476ff7637e | 1:c41d773a85fb |
---|---|
1 * bugs in OpenAl-soft | |
2 | |
3 Wave files produced by wave writer do not have the correct header. | |
4 | |
5 something is wrong with | |
6 | |
7 #+begin_src conf | |
8 drivers = null, | |
9 #+end_src | |
10 | |
11 It only produces the single null option when queried with | |
12 ALC_ALL_DEVICES_SPECIFIER, where it should produce much more output. | |
13 | |
14 specifically, | |
15 | |
16 ------------------------------ | |
17 #+begin_src conf | |
18 drivers = oss, | |
19 #+end_src | |
20 | |
21 #+begin_src text | |
22 0: OSS Software | |
23 1: PulseAudio Software | |
24 2: ALSA Software on default | |
25 3: ALSA Software on HDA Intel [ALC272 Analog] (hw:0,0) | |
26 4: ALSA Software on HDA Intel [ALC272 Digital] (hw:0,1) | |
27 5: ALSA Software on HDA Intel [INTEL HDMI] (hw:0,3) | |
28 6: PortAudio Software | |
29 7: Wave File Writer | |
30 #+end_src | |
31 ------------------------------ | |
32 #+begin_src conf | |
33 drivers = pulse, | |
34 #+end_src | |
35 | |
36 #+begin_src text | |
37 Devices | |
38 0: Internal Audio Analog Stereo | |
39 #+end_src | |
40 ------------------------------ | |
41 #+begin_src conf | |
42 drivers = wave, | |
43 #+end_src | |
44 | |
45 #+begin_src text | |
46 Devices | |
47 0: Wave File Writer | |
48 #+end_src | |
49 ------------------------------ | |
50 |