Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
apps/ | 12-May-2024 | - | 24,541 | 16,489 | ||
docs/ | 12-May-2024 | - | 19,280 | 16,543 | ||
include/oboe/ | 12-May-2024 | - | 2,459 | 667 | ||
prefab/ | 12-May-2024 | - | 50 | 48 | ||
samples/ | 12-May-2024 | - | 65,667 | 43,430 | ||
src/ | 12-May-2024 | - | 10,741 | 6,253 | ||
tests/ | 12-May-2024 | - | 2,720 | 1,942 | ||
.DS_Store | D | 12-May-2024 | 8 KiB | |||
.travis.yml | D | 12-May-2024 | 794 | 31 | 26 | |
AUTHORS | D | 12-May-2024 | 302 | 10 | 7 | |
CMakeLists.txt | D | 12-May-2024 | 3.2 KiB | 94 | 85 | |
CONTRIBUTING | D | 12-May-2024 | 58 | 2 | 1 | |
CONTRIBUTING.md | D | 12-May-2024 | 1.4 KiB | 26 | 22 | |
CONTRIBUTORS | D | 12-May-2024 | 545 | 15 | 13 | |
Doxyfile | D | 12-May-2024 | 105.7 KiB | 2,483 | 1,930 | |
LICENSE | D | 12-May-2024 | 11.1 KiB | 203 | 169 | |
MODULE_LICENSE_APACHE2 | D | 12-May-2024 | 0 | |||
NOTICE | D | 12-May-2024 | 11.1 KiB | 203 | 169 | |
README | D | 12-May-2024 | 52 | 2 | 1 | |
README.md | D | 12-May-2024 | 3.1 KiB | 55 | 41 | |
build_all_android.sh | D | 12-May-2024 | 2 KiB | 70 | 32 | |
prefab_build.sh | D | 12-May-2024 | 2.6 KiB | 91 | 59 |
README
README.md
1# Oboe [](https://travis-ci.org/google/oboe) 2 3[](https://www.youtube.com/watch?v=csfHAbr5ilI&list=PLWz5rJ2EKKc_duWv9IPNvx9YBudNMmLSa) 4 5Oboe is a C++ library which makes it easy to build high-performance audio apps on Android. It was created primarily to allow developers to target a simplified API that works across multiple API levels back to API level 16 (Jelly Bean). 6 7## Features 8- Compatible with API 16 onwards - runs on 99% of Android devices 9- Chooses the audio API (OpenSL ES on API 16+ or AAudio on API 27+) which will give the best audio performance on the target Android device 10- Automatic latency tuning 11- Modern C++ allowing you to write clean, elegant code 12- Workarounds for some known issues 13- [Used by popular apps and frameworks](docs/AppsUsingOboe.md) 14 15## Requirements 16To build Oboe you'll need a compiler which supports C++14 and the Android header files. The easiest way to obtain these is by downloading the Android NDK r17 or above. It can be installed using Android Studio's SDK manager, or via [direct download](https://developer.android.com/ndk/downloads/). 17 18## API Documentation 19- [Getting Started Guide](docs/GettingStarted.md) 20- [Full Guide to Oboe](docs/FullGuide.md) 21- [API reference](https://google.github.io/oboe/reference) 22- [Tech Notes](docs/notes/) 23- [History of Audio features/bugs by Android version](docs/AndroidAudioHistory.md) 24- [Frequently Asked Questions](docs/FAQ.md) (FAQ) 25- [Our roadmap](https://github.com/google/oboe/milestones) - Vote on a feature/issue by adding a thumbs up to the first comment. 26 27## Testing 28- [**OboeTester** app for measuring latency, glitches, etc.](https://github.com/google/oboe/tree/master/apps/OboeTester/docs) 29- [Oboe unit tests](https://github.com/google/oboe/tree/master/tests) 30 31## Videos 32- [Getting started with Oboe](https://www.youtube.com/playlist?list=PLWz5rJ2EKKc_duWv9IPNvx9YBudNMmLSa) 33- [Low Latency Audio - Because Your Ears Are Worth It](https://www.youtube.com/watch?v=8vOf_fDtur4) (Android Dev Summit '18) 34- [Real-time audio with the 100 oscillator synthesizer](https://www.youtube.com/watch?v=J04iPJBkAKs) (DroidCon Berlin '18) 35- [Winning on Android](https://www.youtube.com/watch?v=tWBojmBpS74) - How to optimize an Android audio app. (ADC '18) 36- [Real-Time Processing on Android](https://youtu.be/hY9BrS2uX-c) (ADC '19) 37 38## Sample code and apps 39- Sample apps can be found in the [samples directory](samples). 40- A complete "effects processor" app called FXLab can be found in the [apps/fxlab folder](apps/fxlab). 41- Also check out the [Rhythm Game codelab](https://codelabs.developers.google.com/codelabs/musicalgame-using-oboe/index.html#0). 42 43### Third party sample code 44- [Ableton Link integration demo](https://github.com/jbloit/AndroidLinkAudio) (author: jbloit) 45 46## Contributing 47We would love to receive your pull requests. Before we can though, please read the [contributing](CONTRIBUTING.md) guidelines. 48 49## Version history 50View the [releases page](../../releases). 51 52## License 53[LICENSE](LICENSE) 54 55