• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/workflows/H04-Feb-2021-6457

al/H04-Feb-2021-12,1269,877

alc/H03-May-2022-30,19722,905

build/H07-May-2022-

cmake/H04-Feb-2021-883762

common/H04-Feb-2021-3,2492,300

core/H04-Feb-2021-5,0563,625

docs/H03-May-2022-

examples/H04-Feb-2021-6,4164,622

hrtf/H03-May-2022-

include/AL/H04-Feb-2021-2,6841,629

presets/H03-May-2022-284230

resources/H04-Feb-2021-289230

router/H04-Feb-2021-1,8391,614

utils/H04-Feb-2021-14,94113,393

.gitignoreH A D04-Feb-202185 107

.travis.ymlH A D04-Feb-20213.8 KiB125124

BSD-3ClauseH A D04-Feb-20211.6 KiB3124

COPYINGH A D04-Feb-202122.8 KiB438367

ChangeLogH A D04-Feb-202118.3 KiB572326

README.mdH A D04-Feb-20212.8 KiB6244

alsoftrc.sampleH A D04-Feb-202121.5 KiB554475

appveyor.ymlH A D04-Feb-2021466 1613

config.h.inH A D04-Feb-20212.8 KiB11880

openal.pc.inH A D04-Feb-2021358 1311

version.cmakeH A D04-Feb-2021316 1211

version.h.inH A D04-Feb-2021295 107

README.md

1OpenAL soft
2===========
3
4`master` branch CI status :  [![Build Status](https://travis-ci.org/kcat/openal-soft.svg?branch=master)](https://travis-ci.org/kcat/openal-soft) [![Windows Build Status](https://ci.appveyor.com/api/projects/status/github/kcat/openal-soft?branch=master&svg=true)](https://ci.appveyor.com/api/projects/status/github/kcat/openal-soft?branch=master&svg=true)
5
6OpenAL Soft is an LGPL-licensed, cross-platform, software implementation of the OpenAL 3D audio API. It's forked from the open-sourced Windows version available originally from openal.org's SVN repository (now defunct).
7OpenAL provides capabilities for playing audio in a virtual 3D environment. Distance attenuation, doppler shift, and directional sound emitters are among the features handled by the API. More advanced effects, including air absorption, occlusion, and environmental reverb, are available through the EFX extension. It also facilitates streaming audio, multi-channel buffers, and audio capture.
8
9More information is available on the [official website](http://openal-soft.org/)
10
11Source Install
12-------------
13To install OpenAL Soft, use your favorite shell to go into the build/
14directory, and run:
15
16```bash
17cmake ..
18```
19
20Assuming configuration went well, you can then build it, typically using GNU
21Make (KDevelop, MSVC, and others are possible depending on your system setup
22and CMake configuration).
23
24Please Note: Double check that the appropriate backends were detected. Often,
25complaints of no sound, crashing, and missing devices can be solved by making
26sure the correct backends are being used. CMake's output will identify which
27backends were enabled.
28
29For most systems, you will likely want to make sure ALSA, OSS, and PulseAudio
30were detected (if your target system uses them). For Windows, make sure
31DirectSound was detected.
32
33
34Utilities
35---------
36The source package comes with an informational utility, openal-info, and is
37built by default. It prints out information provided by the ALC and AL sub-
38systems, including discovered devices, version information, and extensions.
39
40
41Configuration
42-------------
43
44OpenAL Soft can be configured on a per-user and per-system basis. This allows
45users and sysadmins to control information provided to applications, as well
46as application-agnostic behavior of the library. See alsoftrc.sample for
47available settings.
48
49
50Acknowledgements
51----------------
52
53Special thanks go to:
54
55 - Creative Labs for the original source code this is based off of.
56 - Christopher Fitzgerald for the current reverb effect implementation, and
57helping with the low-pass and HRTF filters.
58 - Christian Borss for the 3D panning code previous versions used as a base.
59 - Ben Davis for the idea behind a previous version of the click-removal code.
60 - Richard Furse for helping with my understanding of Ambisonics that is used by
61the various parts of the library.
62