From dfe836d39cc5cac34cf6c79cfbb27a16b70661c5 Mon Sep 17 00:00:00 2001 From: Miku AuahDark Date: Thu, 24 Dec 2020 15:01:23 +0800 Subject: [PATCH] Update OpenAL-soft to 1.21.0 This allows OpenAL-soft to use Oboe backend which uses AAudio in Android 8 or OpenSLES in earlier Android version. This switch is necessary for Android 11 compatibility as OpenSLES is now deprecated in Android 11. Plus, we also have low latency audio for free. --- love/src/jni/oboe/.gitignore | 6 + love/src/jni/oboe/.travis.yml | 30 + love/src/jni/oboe/AUTHORS | 9 + love/src/jni/oboe/Android.mk | 84 + love/src/jni/oboe/CMakeLists.txt | 92 + love/src/jni/oboe/CONTRIBUTING | 1 + love/src/jni/oboe/CONTRIBUTING.md | 25 + love/src/jni/oboe/CONTRIBUTORS | 14 + love/src/jni/oboe/Doxyfile | 2482 + love/src/jni/oboe/LICENSE | 202 + love/src/jni/oboe/README | 1 + love/src/jni/oboe/README.md | 53 + love/src/jni/oboe/apps/OboeTester/.gitignore | 11 + .../apps/OboeTester/.google/packaging.yaml | 7 + love/src/jni/oboe/apps/OboeTester/README.md | 6 + .../oboe/apps/OboeTester/app/CMakeLists.txt | 34 + .../jni/oboe/apps/OboeTester/app/build.gradle | 44 + .../app/gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 54329 bytes .../gradle/wrapper/gradle-wrapper.properties | 6 + love/src/jni/oboe/apps/OboeTester/app/gradlew | 172 + .../jni/oboe/apps/OboeTester/app/gradlew.bat | 84 + .../apps/OboeTester/app/proguard-rules.pro | 17 + .../app/src/main/AndroidManifest.xml | 119 + .../app/src/main/cpp/AudioStreamGateway.cpp | 45 + .../app/src/main/cpp/AudioStreamGateway.h | 62 + .../app/src/main/cpp/FullDuplexAnalyzer.cpp | 66 + .../app/src/main/cpp/FullDuplexAnalyzer.h | 62 + .../app/src/main/cpp/FullDuplexEcho.cpp | 49 + .../app/src/main/cpp/FullDuplexEcho.h | 57 + .../app/src/main/cpp/FullDuplexGlitches.cpp | 18 + .../app/src/main/cpp/FullDuplexGlitches.h | 53 + .../app/src/main/cpp/FullDuplexLatency.cpp | 44 + .../app/src/main/cpp/FullDuplexLatency.h | 65 + .../app/src/main/cpp/FullDuplexStream.cpp | 137 + .../app/src/main/cpp/FullDuplexStream.h | 115 + .../main/cpp/InputStreamCallbackAnalyzer.cpp | 57 + .../main/cpp/InputStreamCallbackAnalyzer.h | 72 + .../src/main/cpp/InterpolatingDelayLine.cpp | 42 + .../app/src/main/cpp/InterpolatingDelayLine.h | 48 + .../app/src/main/cpp/MultiChannelRecording.h | 161 + .../app/src/main/cpp/NativeAudioContext.cpp | 619 + .../app/src/main/cpp/NativeAudioContext.h | 718 + .../src/main/cpp/OboeStreamCallbackProxy.cpp | 95 + .../src/main/cpp/OboeStreamCallbackProxy.h | 92 + .../src/main/cpp/PlayRecordingCallback.cpp | 33 + .../app/src/main/cpp/PlayRecordingCallback.h | 46 + .../app/src/main/cpp/SawPingGenerator.cpp | 68 + .../app/src/main/cpp/SawPingGenerator.h | 44 + .../src/main/cpp/analyzer/GlitchAnalyzer.h | 438 + .../src/main/cpp/analyzer/InfiniteRecording.h | 67 + .../src/main/cpp/analyzer/LatencyAnalyzer.h | 611 + .../src/main/cpp/analyzer/ManchesterEncoder.h | 96 + .../app/src/main/cpp/analyzer/PeakDetector.h | 48 + .../app/src/main/cpp/analyzer/PseudoRandom.h | 57 + .../main/cpp/analyzer/RandomPulseGenerator.h | 41 + .../cpp/analyzer/RoundedManchesterEncoder.h | 89 + .../app/src/main/cpp/android_debug.h | 41 + .../main/cpp/flowunits/ExponentialShape.cpp | 35 + .../src/main/cpp/flowunits/ExponentialShape.h | 70 + .../main/cpp/flowunits/ImpulseOscillator.cpp | 42 + .../main/cpp/flowunits/ImpulseOscillator.h | 39 + .../src/main/cpp/flowunits/LinearShape.cpp | 36 + .../app/src/main/cpp/flowunits/LinearShape.h | 53 + .../src/main/cpp/flowunits/OscillatorBase.cpp | 26 + .../src/main/cpp/flowunits/OscillatorBase.h | 100 + .../main/cpp/flowunits/SawtoothOscillator.cpp | 39 + .../main/cpp/flowunits/SawtoothOscillator.h | 36 + .../src/main/cpp/flowunits/SineOscillator.cpp | 42 + .../src/main/cpp/flowunits/SineOscillator.h | 34 + .../main/cpp/flowunits/TriangleOscillator.cpp | 40 + .../main/cpp/flowunits/TriangleOscillator.h | 39 + .../app/src/main/cpp/jni-bridge.cpp | 625 + .../app/src/main/cpp/unused/unused.h | 145 + .../app/src/main/cpp/util/WaveFileWriter.cpp | 132 + .../app/src/main/cpp/util/WaveFileWriter.h | 154 + .../audio_device/AudioDeviceAdapter.java | 58 + .../AudioDeviceInfoConverter.java | 140 + .../audio_device/AudioDeviceListEntry.java | 93 + .../audio_device/AudioDeviceSpinner.java | 127 + .../oboe/manualtest/AnalyzerActivity.java | 236 + .../oboe/manualtest/AudioInputTester.java | 40 + .../oboe/manualtest/AudioMidiTester.java | 203 + .../oboe/manualtest/AudioOutputTester.java | 60 + .../oboe/manualtest/AudioRecordThread.java | 156 + .../oboe/manualtest/AudioStreamBase.java | 176 + .../oboe/manualtest/AudioStreamTester.java | 51 + .../oboe/manualtest/AutoGlitchActivity.java | 328 + .../oboe/manualtest/BufferSizeView.java | 143 + .../manualtest/CircularCaptureBuffer.java | 104 + .../sample/oboe/manualtest/EchoActivity.java | 140 + .../oboe/manualtest/ExponentialTaper.java | 67 + .../sample/oboe/manualtest/FastButton.java | 112 + .../oboe/manualtest/GlitchActivity.java | 337 + .../oboe/manualtest/InputMarginView.java | 64 + .../sample/oboe/manualtest/MainActivity.java | 260 + .../oboe/manualtest/ManualGlitchActivity.java | 286 + .../sample/oboe/manualtest/NativeEngine.java | 10 + .../oboe/manualtest/OboeAudioInputStream.java | 26 + .../manualtest/OboeAudioOutputStream.java | 42 + .../oboe/manualtest/OboeAudioStream.java | 255 + .../oboe/manualtest/RecorderActivity.java | 111 + .../manualtest/RoundTripLatencyActivity.java | 395 + .../oboe/manualtest/StreamConfiguration.java | 355 + .../manualtest/StreamConfigurationView.java | 464 + .../oboe/manualtest/TapLatencyAnalyser.java | 108 + .../oboe/manualtest/TapToToneActivity.java | 386 + .../oboe/manualtest/TestAudioActivity.java | 486 + .../manualtest/TestDisconnectActivity.java | 482 + .../oboe/manualtest/TestInputActivity.java | 247 + .../oboe/manualtest/TestOutputActivity.java | 121 + .../manualtest/TestOutputActivityBase.java | 90 + .../sample/oboe/manualtest/VolumeBarView.java | 77 + .../sample/oboe/manualtest/WaveformView.java | 164 + .../sample/oboe/manualtest/WorkloadView.java | 114 + .../mobileer/miditools/EventScheduler.java | 243 + .../com/mobileer/miditools/MidiConstants.java | 102 + .../mobileer/miditools/MidiDeviceMonitor.java | 152 + .../mobileer/miditools/MidiDispatcher.java | 95 + .../miditools/MidiEventScheduler.java | 118 + .../mobileer/miditools/MidiEventThread.java | 89 + .../com/mobileer/miditools/MidiFramer.java | 111 + .../miditools/MidiInputPortSelector.java | 92 + .../MidiOutputPortConnectionSelector.java | 91 + .../miditools/MidiOutputPortSelector.java | 102 + .../mobileer/miditools/MidiPortConnector.java | 203 + .../mobileer/miditools/MidiPortSelector.java | 191 + .../mobileer/miditools/MidiPortWrapper.java | 123 + .../com/mobileer/miditools/MidiTools.java | 45 + .../mobileer/miditools/MusicKeyboardView.java | 384 + .../miditools/synth/AudioLatencyTuner.java | 235 + .../miditools/synth/EnvelopeADSR.java | 115 + .../miditools/synth/LatencyController.java | 77 + .../miditools/synth/SawOscillator.java | 73 + .../miditools/synth/SawOscillatorDPW.java | 52 + .../mobileer/miditools/synth/SawVoice.java | 65 + .../miditools/synth/SimpleAudioOutput.java | 214 + .../miditools/synth/SineOscillator.java | 54 + .../mobileer/miditools/synth/SineVoice.java | 31 + .../mobileer/miditools/synth/SynthEngine.java | 315 + .../mobileer/miditools/synth/SynthUnit.java | 35 + .../mobileer/miditools/synth/SynthVoice.java | 85 + .../src/main/res/drawable/button_shape.xml | 6 + .../res/layout/activity_auto_glitches.xml | 86 + .../app/src/main/res/layout/activity_echo.xml | 74 + .../app/src/main/res/layout/activity_main.xml | 208 + .../res/layout/activity_manual_glitches.xml | 104 + .../src/main/res/layout/activity_recorder.xml | 98 + .../main/res/layout/activity_rt_latency.xml | 96 + .../main/res/layout/activity_tap_to_tone.xml | 48 + .../res/layout/activity_test_disconnect.xml | 107 + .../main/res/layout/activity_test_input.xml | 38 + .../main/res/layout/activity_test_output.xml | 99 + .../app/src/main/res/layout/audio_devices.xml | 22 + .../src/main/res/layout/buffer_size_view.xml | 20 + .../src/main/res/layout/input_margin_view.xml | 54 + .../main/res/layout/merge_audio_common.xml | 79 + .../main/res/layout/sample_fast_button.xml | 17 + .../app/src/main/res/layout/stream_config.xml | 279 + .../app/src/main/res/layout/workload_view.xml | 20 + .../app/src/main/res/menu/menu_main.xml | 5 + .../src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 3418 bytes .../src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 2206 bytes .../src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 4842 bytes .../main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 7718 bytes .../app/src/main/res/values-v21/styles.xml | 5 + .../app/src/main/res/values-w600dp/dimens.xml | 8 + .../app/src/main/res/values/arrays.xml | 3 + .../src/main/res/values/attrs_fast_button.xml | 8 + .../src/main/res/values/attrs_waveform.xml | 22 + .../app/src/main/res/values/colors.xml | 22 + .../app/src/main/res/values/dimens.xml | 8 + .../app/src/main/res/values/strings.xml | 150 + .../app/src/main/res/values/styles.xml | 8 + .../app/src/main/res/xml/provider_paths.xml | 4 + .../src/main/res/xml/service_device_info.xml | 18 + .../src/jni/oboe/apps/OboeTester/build.gradle | 18 + .../apps/OboeTester/docs/AutomatedTesting.md | 178 + .../jni/oboe/apps/OboeTester/docs/Build.md | 32 + .../jni/oboe/apps/OboeTester/docs/README.md | 13 + .../jni/oboe/apps/OboeTester/docs/Usage.md | 81 + .../docs/images/auto_glitch_test.png | Bin 0 -> 254985 bytes .../docs/images/echo_input_output.png | Bin 0 -> 188719 bytes .../OboeTester/docs/images/main_activity.png | Bin 0 -> 108219 bytes .../apps/OboeTester/docs/images/recorder.png | Bin 0 -> 144904 bytes .../docs/images/round_trip_latency.png | Bin 0 -> 199307 bytes .../OboeTester/docs/images/tap_to_tone.png | Bin 0 -> 177523 bytes .../OboeTester/docs/images/test_glitches.png | Bin 0 -> 212052 bytes .../OboeTester/docs/images/test_input.png | Bin 0 -> 144542 bytes .../OboeTester/docs/images/test_output.png | Bin 0 -> 121816 bytes .../docs/images/test_output_running.png | Bin 0 -> 159135 bytes .../oboe/apps/OboeTester/gradle.properties | 18 + .../gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 49896 bytes .../gradle/wrapper/gradle-wrapper.properties | 6 + love/src/jni/oboe/apps/OboeTester/gradlew | 164 + love/src/jni/oboe/apps/OboeTester/gradlew.bat | 90 + .../apps/OboeTester/scripts/dsp_timing.py | 239 + .../jni/oboe/apps/OboeTester/settings.gradle | 1 + love/src/jni/oboe/apps/fxlab/.gitignore | 14 + love/src/jni/oboe/apps/fxlab/CONTRIBUTING.md | 16 + love/src/jni/oboe/apps/fxlab/LICENSE | 202 + love/src/jni/oboe/apps/fxlab/README.md | 30 + love/src/jni/oboe/apps/fxlab/app/.gitignore | 1 + .../jni/oboe/apps/fxlab/app/CMakeLists.txt | 79 + love/src/jni/oboe/apps/fxlab/app/build.gradle | 67 + .../oboe/apps/fxlab/app/proguard-rules.pro | 21 + .../fxlab/app/src/main/AndroidManifest.xml | 39 + .../fxlab/app/src/main/cpp/DuplexCallback.h | 80 + .../fxlab/app/src/main/cpp/DuplexEngine.cpp | 93 + .../fxlab/app/src/main/cpp/DuplexEngine.h | 64 + .../fxlab/app/src/main/cpp/FunctionList.h | 85 + .../app/src/main/cpp/effects/CombFilter.h | 53 + .../src/main/cpp/effects/DelayLineEffect.h | 79 + .../app/src/main/cpp/effects/DoublingEffect.h | 34 + .../app/src/main/cpp/effects/DriveControl.h | 41 + .../app/src/main/cpp/effects/EchoEffect.h | 33 + .../fxlab/app/src/main/cpp/effects/Effects.h | 61 + .../app/src/main/cpp/effects/FlangerEffect.h | 29 + .../main/cpp/effects/SingleFunctionEffects.h | 56 + .../app/src/main/cpp/effects/SlapbackEffect.h | 30 + .../app/src/main/cpp/effects/TremoloEffect.h | 43 + .../app/src/main/cpp/effects/VibratroEffect.h | 27 + .../src/main/cpp/effects/WhiteChorusEffect.h | 32 + .../cpp/effects/descrip/AllPassDescription.h | 48 + .../effects/descrip/DistortionDescription.h | 46 + .../cpp/effects/descrip/DoublingDescription.h | 33 + .../cpp/effects/descrip/EchoDescription.h | 48 + .../cpp/effects/descrip/EffectDescription.h | 107 + .../main/cpp/effects/descrip/FIRDescription.h | 46 + .../cpp/effects/descrip/FlangerDescription.h | 50 + .../cpp/effects/descrip/GainDescription.h | 50 + .../main/cpp/effects/descrip/IIRDescription.h | 50 + .../effects/descrip/OverdriveDescription.h | 51 + .../effects/descrip/PassthroughDescription.h | 48 + .../cpp/effects/descrip/SlapbackDescription.h | 50 + .../cpp/effects/descrip/TremoloDescription.h | 46 + .../cpp/effects/descrip/VibratoDescription.h | 47 + .../effects/descrip/WhiteChorusDescription.h | 49 + .../src/main/cpp/effects/utils/DelayLine.h | 44 + .../main/cpp/effects/utils/PhaseAccumulator.h | 41 + .../app/src/main/cpp/effects/utils/SineWave.h | 37 + .../src/main/cpp/effects/utils/WhiteNoise.h | 36 + .../fxlab/app/src/main/cpp/logging_macros.h | 46 + .../fxlab/app/src/main/cpp/native-lib.cpp | 159 + .../fxlab/app/src/main/cpp/tests/.gitignore | 5 + .../app/src/main/cpp/tests/CMakeLists.txt | 15 + .../src/main/cpp/tests/DelayLineEffectTest.h | 52 + .../app/src/main/cpp/tests/DelayLineTest.h | 61 + .../fxlab/app/src/main/cpp/tests/TypeTests.h | 54 + .../app/src/main/cpp/tests/testEffects.cpp | 29 + .../mobileer/androidfxlab/EffectsAdapter.kt | 209 + .../com/mobileer/androidfxlab/MainActivity.kt | 210 + .../mobileer/androidfxlab/NativeInterface.kt | 110 + .../mobileer/androidfxlab/datatype/Effect.kt | 28 + .../datatype/EffectDescription.kt | 33 + .../androidfxlab/datatype/ParamDescription.kt | 23 + .../drawable-v24/ic_launcher_foreground.xml | 50 + .../app/src/main/res/drawable/ic_add.xml | 25 + .../ic_baseline_audio_is_disabled_24.xml | 10 + .../ic_baseline_audio_is_enabled_24.xml | 10 + .../drawable/ic_baseline_drag_indicator.xml | 25 + .../res/drawable/ic_launcher_background.xml | 90 + .../app/src/main/res/layout/activity_main.xml | 63 + .../app/src/main/res/layout/effect_header.xml | 65 + .../app/src/main/res/layout/effect_view.xml | 38 + .../app/src/main/res/layout/param_seek.xml | 59 + .../fxlab/app/src/main/res/menu/add_menu.xml | 19 + .../app/src/main/res/menu/toolbar_menu.xml | 12 + .../res/mipmap-anydpi-v26/ic_launcher.xml | 21 + .../mipmap-anydpi-v26/ic_launcher_round.xml | 21 + .../src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 2963 bytes .../res/mipmap-hdpi/ic_launcher_round.png | Bin 0 -> 4905 bytes .../src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 2060 bytes .../res/mipmap-mdpi/ic_launcher_round.png | Bin 0 -> 2783 bytes .../src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 4490 bytes .../res/mipmap-xhdpi/ic_launcher_round.png | Bin 0 -> 6895 bytes .../main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 6387 bytes .../res/mipmap-xxhdpi/ic_launcher_round.png | Bin 0 -> 10413 bytes .../main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 9128 bytes .../res/mipmap-xxxhdpi/ic_launcher_round.png | Bin 0 -> 15132 bytes .../fxlab/app/src/main/res/values/colors.xml | 23 + .../fxlab/app/src/main/res/values/strings.xml | 20 + .../fxlab/app/src/main/res/values/styles.xml | 27 + love/src/jni/oboe/apps/fxlab/build.gradle | 44 + .../src/jni/oboe/apps/fxlab/docs/Dev-Guide.md | 46 + .../jni/oboe/apps/fxlab/docs/Presentation.pdf | Bin 0 -> 1306300 bytes love/src/jni/oboe/apps/fxlab/docs/README.md | 4 + .../src/jni/oboe/apps/fxlab/gradle.properties | 37 + .../fxlab/gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 54329 bytes .../gradle/wrapper/gradle-wrapper.properties | 6 + love/src/jni/oboe/apps/fxlab/gradlew | 172 + love/src/jni/oboe/apps/fxlab/gradlew.bat | 84 + love/src/jni/oboe/apps/fxlab/screenshot.png | Bin 0 -> 107694 bytes love/src/jni/oboe/apps/fxlab/settings.gradle | 17 + love/src/jni/oboe/build_all_android.sh | 69 + .../mixer_sse3.c => oboe/docs/.nojekyll} | 0 love/src/jni/oboe/docs/AndroidAudioHistory.md | 44 + love/src/jni/oboe/docs/AppsUsingOboe.md | 31 + love/src/jni/oboe/docs/ChangeLog.md | 30 + love/src/jni/oboe/docs/FAQ.md | 44 + love/src/jni/oboe/docs/FullGuide.md | 516 + love/src/jni/oboe/docs/GettingStarted.md | 353 + love/src/jni/oboe/docs/README.md | 15 + .../docs/images/cmakelists-location-in-as.png | Bin 0 -> 52159 bytes .../docs/images/getting-started-video.jpg | Bin 0 -> 154283 bytes .../jni/oboe/docs/images/oboe-lifecycle.png | Bin 0 -> 23433 bytes .../images/oboe-sharing-mode-exclusive.jpg | Bin 0 -> 10674 bytes .../docs/images/oboe-sharing-mode-shared.jpg | Bin 0 -> 15818 bytes love/src/jni/oboe/docs/index.html | 11 + love/src/jni/oboe/docs/index.md | 5 + love/src/jni/oboe/docs/notes/README.md | 7 + love/src/jni/oboe/docs/notes/disconnect.md | 55 + love/src/jni/oboe/docs/notes/effects.md | 48 + love/src/jni/oboe/docs/notes/rlsbuffer.md | 71 + .../reference/_audio_stream_8h_source.html | 138 + .../_audio_stream_base_8h_source.html | 133 + .../_audio_stream_builder_8h_source.html | 137 + .../_audio_stream_callback_8h_source.html | 90 + .../reference/_definitions_8h_source.html | 146 + .../reference/_latency_tuner_8h_source.html | 90 + .../oboe/docs/reference/_oboe_8h_source.html | 82 + .../_result_with_value_8h_source.html | 93 + .../_stabilized_callback_8h_source.html | 93 + .../docs/reference/_utilities_8h_source.html | 89 + .../docs/reference/_version_8h_source.html | 89 + .../jni/oboe/docs/reference/annotated.html | 94 + love/src/jni/oboe/docs/reference/bc_s.png | Bin 0 -> 676 bytes love/src/jni/oboe/docs/reference/bdwn.png | Bin 0 -> 147 bytes love/src/jni/oboe/docs/reference/classes.html | 97 + .../classoboe_1_1_audio_stream-members.html | 172 + .../reference/classoboe_1_1_audio_stream.html | 1590 + .../reference/classoboe_1_1_audio_stream.png | Bin 0 -> 629 bytes ...assoboe_1_1_audio_stream_base-members.html | 126 + .../classoboe_1_1_audio_stream_base.html | 1085 + .../classoboe_1_1_audio_stream_base.png | Bin 0 -> 892 bytes ...oboe_1_1_audio_stream_builder-members.html | 152 + .../classoboe_1_1_audio_stream_builder.html | 1014 + .../classoboe_1_1_audio_stream_builder.png | Bin 0 -> 673 bytes ...boe_1_1_audio_stream_callback-members.html | 89 + .../classoboe_1_1_audio_stream_callback.html | 295 + .../classoboe_1_1_audio_stream_callback.png | Bin 0 -> 693 bytes ...boe_1_1_default_stream_values-members.html | 88 + .../classoboe_1_1_default_stream_values.html | 181 + .../classoboe_1_1_latency_tuner-members.html | 90 + .../classoboe_1_1_latency_tuner.html | 245 + ...assoboe_1_1_result_with_value-members.html | 93 + .../classoboe_1_1_result_with_value.html | 368 + ...soboe_1_1_stabilized_callback-members.html | 90 + .../classoboe_1_1_stabilized_callback.html | 293 + .../classoboe_1_1_stabilized_callback.png | Bin 0 -> 686 bytes love/src/jni/oboe/docs/reference/closed.png | Bin 0 -> 132 bytes .../jni/oboe/docs/reference/deprecated.html | 83 + .../dir_768f6301d9838e45d679001914ab2803.html | 82 + .../dir_d44c64559bbebec7f509842c48db8b23.html | 86 + love/src/jni/oboe/docs/reference/doc.png | Bin 0 -> 746 bytes love/src/jni/oboe/docs/reference/doxygen.css | 1764 + love/src/jni/oboe/docs/reference/doxygen.png | Bin 0 -> 3779 bytes .../jni/oboe/docs/reference/dynsections.js | 120 + love/src/jni/oboe/docs/reference/files.html | 95 + .../jni/oboe/docs/reference/folderclosed.png | Bin 0 -> 616 bytes .../jni/oboe/docs/reference/folderopen.png | Bin 0 -> 597 bytes .../jni/oboe/docs/reference/functions.html | 512 + .../oboe/docs/reference/functions_func.html | 426 + .../oboe/docs/reference/functions_vars.html | 154 + .../jni/oboe/docs/reference/hierarchy.html | 93 + love/src/jni/oboe/docs/reference/index.html | 80 + love/src/jni/oboe/docs/reference/jquery.js | 87 + love/src/jni/oboe/docs/reference/menu.js | 50 + love/src/jni/oboe/docs/reference/menudata.js | 90 + .../oboe/docs/reference/namespacemembers.html | 253 + .../docs/reference/namespacemembers_enum.html | 118 + .../docs/reference/namespacemembers_eval.html | 121 + .../docs/reference/namespacemembers_func.html | 94 + .../docs/reference/namespacemembers_vars.html | 94 + .../oboe/docs/reference/namespaceoboe.html | 1008 + .../jni/oboe/docs/reference/namespaces.html | 83 + love/src/jni/oboe/docs/reference/nav_f.png | Bin 0 -> 153 bytes love/src/jni/oboe/docs/reference/nav_g.png | Bin 0 -> 95 bytes love/src/jni/oboe/docs/reference/nav_h.png | Bin 0 -> 98 bytes love/src/jni/oboe/docs/reference/open.png | Bin 0 -> 123 bytes love/src/jni/oboe/docs/reference/pages.html | 83 + .../jni/oboe/docs/reference/search/all_0.html | 30 + .../jni/oboe/docs/reference/search/all_0.js | 17 + .../jni/oboe/docs/reference/search/all_1.html | 30 + .../jni/oboe/docs/reference/search/all_1.js | 4 + .../oboe/docs/reference/search/all_10.html | 30 + .../jni/oboe/docs/reference/search/all_10.js | 5 + .../oboe/docs/reference/search/all_11.html | 30 + .../jni/oboe/docs/reference/search/all_11.js | 9 + .../oboe/docs/reference/search/all_12.html | 30 + .../jni/oboe/docs/reference/search/all_12.js | 9 + .../oboe/docs/reference/search/all_13.html | 30 + .../jni/oboe/docs/reference/search/all_13.js | 9 + .../jni/oboe/docs/reference/search/all_2.html | 30 + .../jni/oboe/docs/reference/search/all_2.js | 13 + .../jni/oboe/docs/reference/search/all_3.html | 30 + .../jni/oboe/docs/reference/search/all_3.js | 7 + .../jni/oboe/docs/reference/search/all_4.html | 30 + .../jni/oboe/docs/reference/search/all_4.js | 5 + .../jni/oboe/docs/reference/search/all_5.html | 30 + .../jni/oboe/docs/reference/search/all_5.js | 9 + .../jni/oboe/docs/reference/search/all_6.html | 30 + .../jni/oboe/docs/reference/search/all_6.js | 33 + .../jni/oboe/docs/reference/search/all_7.html | 30 + .../jni/oboe/docs/reference/search/all_7.js | 14 + .../jni/oboe/docs/reference/search/all_8.html | 30 + .../jni/oboe/docs/reference/search/all_8.js | 9 + .../jni/oboe/docs/reference/search/all_9.html | 30 + .../jni/oboe/docs/reference/search/all_9.js | 6 + .../jni/oboe/docs/reference/search/all_a.html | 30 + .../jni/oboe/docs/reference/search/all_a.js | 27 + .../jni/oboe/docs/reference/search/all_b.html | 30 + .../jni/oboe/docs/reference/search/all_b.js | 8 + .../jni/oboe/docs/reference/search/all_c.html | 30 + .../jni/oboe/docs/reference/search/all_c.js | 18 + .../jni/oboe/docs/reference/search/all_d.html | 30 + .../jni/oboe/docs/reference/search/all_d.js | 7 + .../jni/oboe/docs/reference/search/all_e.html | 30 + .../jni/oboe/docs/reference/search/all_e.js | 11 + .../jni/oboe/docs/reference/search/all_f.html | 30 + .../jni/oboe/docs/reference/search/all_f.js | 36 + .../oboe/docs/reference/search/classes_0.html | 30 + .../oboe/docs/reference/search/classes_0.js | 7 + .../oboe/docs/reference/search/classes_1.html | 30 + .../oboe/docs/reference/search/classes_1.js | 4 + .../oboe/docs/reference/search/classes_2.html | 30 + .../oboe/docs/reference/search/classes_2.js | 4 + .../oboe/docs/reference/search/classes_3.html | 30 + .../oboe/docs/reference/search/classes_3.js | 4 + .../oboe/docs/reference/search/classes_4.html | 30 + .../oboe/docs/reference/search/classes_4.js | 4 + .../oboe/docs/reference/search/classes_5.html | 30 + .../oboe/docs/reference/search/classes_5.js | 5 + .../oboe/docs/reference/search/classes_6.html | 30 + .../oboe/docs/reference/search/classes_6.js | 4 + .../jni/oboe/docs/reference/search/close.png | Bin 0 -> 273 bytes .../oboe/docs/reference/search/enums_0.html | 30 + .../jni/oboe/docs/reference/search/enums_0.js | 5 + .../oboe/docs/reference/search/enums_1.html | 30 + .../jni/oboe/docs/reference/search/enums_1.js | 5 + .../oboe/docs/reference/search/enums_2.html | 30 + .../jni/oboe/docs/reference/search/enums_2.js | 5 + .../oboe/docs/reference/search/enums_3.html | 30 + .../jni/oboe/docs/reference/search/enums_3.js | 4 + .../oboe/docs/reference/search/enums_4.html | 30 + .../jni/oboe/docs/reference/search/enums_4.js | 4 + .../oboe/docs/reference/search/enums_5.html | 30 + .../jni/oboe/docs/reference/search/enums_5.js | 4 + .../oboe/docs/reference/search/enums_6.html | 30 + .../jni/oboe/docs/reference/search/enums_6.js | 7 + .../oboe/docs/reference/search/enums_7.html | 30 + .../jni/oboe/docs/reference/search/enums_7.js | 4 + .../docs/reference/search/enumvalues_0.html | 30 + .../docs/reference/search/enumvalues_0.js | 10 + .../docs/reference/search/enumvalues_1.html | 30 + .../docs/reference/search/enumvalues_1.js | 4 + .../docs/reference/search/enumvalues_2.html | 30 + .../docs/reference/search/enumvalues_2.js | 4 + .../docs/reference/search/enumvalues_3.html | 30 + .../docs/reference/search/enumvalues_3.js | 4 + .../docs/reference/search/enumvalues_4.html | 30 + .../docs/reference/search/enumvalues_4.js | 5 + .../docs/reference/search/enumvalues_5.html | 30 + .../docs/reference/search/enumvalues_5.js | 5 + .../docs/reference/search/enumvalues_6.html | 30 + .../docs/reference/search/enumvalues_6.js | 6 + .../docs/reference/search/enumvalues_7.html | 30 + .../docs/reference/search/enumvalues_7.js | 4 + .../docs/reference/search/enumvalues_8.html | 30 + .../docs/reference/search/enumvalues_8.js | 7 + .../docs/reference/search/enumvalues_9.html | 30 + .../docs/reference/search/enumvalues_9.js | 7 + .../docs/reference/search/enumvalues_a.html | 30 + .../docs/reference/search/enumvalues_a.js | 5 + .../docs/reference/search/enumvalues_b.html | 30 + .../docs/reference/search/enumvalues_b.js | 4 + .../docs/reference/search/enumvalues_c.html | 30 + .../docs/reference/search/enumvalues_c.js | 7 + .../docs/reference/search/enumvalues_d.html | 30 + .../docs/reference/search/enumvalues_d.js | 5 + .../docs/reference/search/enumvalues_e.html | 30 + .../docs/reference/search/enumvalues_e.js | 7 + .../docs/reference/search/functions_0.html | 30 + .../oboe/docs/reference/search/functions_0.js | 5 + .../docs/reference/search/functions_1.html | 30 + .../oboe/docs/reference/search/functions_1.js | 10 + .../docs/reference/search/functions_2.html | 30 + .../oboe/docs/reference/search/functions_2.js | 4 + .../docs/reference/search/functions_3.html | 30 + .../oboe/docs/reference/search/functions_3.js | 5 + .../docs/reference/search/functions_4.html | 30 + .../oboe/docs/reference/search/functions_4.js | 31 + .../docs/reference/search/functions_5.html | 30 + .../oboe/docs/reference/search/functions_5.js | 10 + .../docs/reference/search/functions_6.html | 30 + .../oboe/docs/reference/search/functions_6.js | 5 + .../docs/reference/search/functions_7.html | 30 + .../oboe/docs/reference/search/functions_7.js | 15 + .../docs/reference/search/functions_8.html | 30 + .../oboe/docs/reference/search/functions_8.js | 4 + .../docs/reference/search/functions_9.html | 30 + .../oboe/docs/reference/search/functions_9.js | 10 + .../docs/reference/search/functions_a.html | 30 + .../oboe/docs/reference/search/functions_a.js | 25 + .../docs/reference/search/functions_b.html | 30 + .../oboe/docs/reference/search/functions_b.js | 4 + .../docs/reference/search/functions_c.html | 30 + .../oboe/docs/reference/search/functions_c.js | 6 + .../docs/reference/search/functions_d.html | 30 + .../oboe/docs/reference/search/functions_d.js | 4 + .../docs/reference/search/functions_e.html | 30 + .../oboe/docs/reference/search/functions_e.js | 9 + .../oboe/docs/reference/search/mag_sel.png | Bin 0 -> 465 bytes .../docs/reference/search/namespaces_0.html | 30 + .../docs/reference/search/namespaces_0.js | 4 + .../oboe/docs/reference/search/nomatches.html | 12 + .../oboe/docs/reference/search/pages_0.html | 30 + .../jni/oboe/docs/reference/search/pages_0.js | 4 + .../oboe/docs/reference/search/pages_1.html | 30 + .../jni/oboe/docs/reference/search/pages_1.js | 4 + .../jni/oboe/docs/reference/search/search.css | 271 + .../jni/oboe/docs/reference/search/search.js | 814 + .../oboe/docs/reference/search/search_l.png | Bin 0 -> 567 bytes .../oboe/docs/reference/search/search_m.png | Bin 0 -> 158 bytes .../oboe/docs/reference/search/search_r.png | Bin 0 -> 553 bytes .../oboe/docs/reference/search/searchdata.js | 36 + .../docs/reference/search/variables_0.html | 30 + .../oboe/docs/reference/search/variables_0.js | 4 + .../docs/reference/search/variables_1.html | 30 + .../oboe/docs/reference/search/variables_1.js | 4 + .../docs/reference/search/variables_2.html | 30 + .../oboe/docs/reference/search/variables_2.js | 9 + .../docs/reference/search/variables_3.html | 30 + .../oboe/docs/reference/search/variables_3.js | 23 + .../docs/reference/search/variables_4.html | 30 + .../oboe/docs/reference/search/variables_4.js | 4 + .../docs/reference/search/variables_5.html | 30 + .../oboe/docs/reference/search/variables_5.js | 4 + .../docs/reference/search/variables_6.html | 30 + .../oboe/docs/reference/search/variables_6.js | 4 + .../docs/reference/search/variables_7.html | 30 + .../oboe/docs/reference/search/variables_7.js | 4 + love/src/jni/oboe/docs/reference/splitbar.png | Bin 0 -> 314 bytes ...tructoboe_1_1_frame_timestamp-members.html | 87 + .../structoboe_1_1_frame_timestamp.html | 102 + ...oe_1_1_stream_deleter_functor-members.html | 86 + ...structoboe_1_1_stream_deleter_functor.html | 99 + .../structoboe_1_1_version-members.html | 90 + .../reference/structoboe_1_1_version.html | 222 + love/src/jni/oboe/docs/reference/sync_off.png | Bin 0 -> 853 bytes love/src/jni/oboe/docs/reference/sync_on.png | Bin 0 -> 845 bytes love/src/jni/oboe/docs/reference/tab_a.png | Bin 0 -> 142 bytes love/src/jni/oboe/docs/reference/tab_b.png | Bin 0 -> 169 bytes love/src/jni/oboe/docs/reference/tab_h.png | Bin 0 -> 177 bytes love/src/jni/oboe/docs/reference/tab_s.png | Bin 0 -> 184 bytes love/src/jni/oboe/docs/reference/tabs.css | 1 + love/src/jni/oboe/include/oboe/AudioStream.h | 543 + .../jni/oboe/include/oboe/AudioStreamBase.h | 202 + .../oboe/include/oboe/AudioStreamBuilder.h | 438 + .../oboe/include/oboe/AudioStreamCallback.h | 123 + love/src/jni/oboe/include/oboe/Definitions.h | 519 + love/src/jni/oboe/include/oboe/LatencyTuner.h | 118 + love/src/jni/oboe/include/oboe/Oboe.h | 37 + .../jni/oboe/include/oboe/ResultWithValue.h | 155 + .../oboe/include/oboe/StabilizedCallback.h | 75 + love/src/jni/oboe/include/oboe/Utilities.h | 87 + love/src/jni/oboe/include/oboe/Version.h | 92 + love/src/jni/oboe/prefab/oboe-VERSION.pom | 27 + .../prefab/oboe-VERSION/AndroidManifest.xml | 3 + .../prefab/modules/oboe/module.json | 8 + .../prefab/oboe-VERSION/prefab/prefab.json | 6 + love/src/jni/oboe/prefab_build.sh | 90 + love/src/jni/oboe/samples/.gitignore | 10 + .../src/jni/oboe/samples/LiveEffect/README.md | 23 + .../jni/oboe/samples/LiveEffect/build.gradle | 38 + .../oboe/samples/LiveEffect/screenshot.png | Bin 0 -> 36271 bytes .../LiveEffect/src/main/AndroidManifest.xml | 26 + .../LiveEffect/src/main/cpp/CMakeLists.txt | 46 + .../LiveEffect/src/main/cpp/FullDuplexPass.h | 35 + .../src/main/cpp/FullDuplexStream.cpp | 128 + .../src/main/cpp/FullDuplexStream.h | 107 + .../src/main/cpp/LiveEffectEngine.cpp | 229 + .../src/main/cpp/LiveEffectEngine.h | 76 + .../LiveEffect/src/main/cpp/jni_bridge.cpp | 131 + .../src/main/cpp/ndk-stl-config.cmake | 40 + .../oboe/liveEffect/LiveEffectEngine.java | 52 + .../sample/oboe/liveEffect/MainActivity.java | 257 + .../src/main/res/drawable/balance_seekbar.xml | 17 + .../src/main/res/layout-v21/activity_main.xml | 129 + .../src/main/res/layout/activity_main.xml | 128 + .../src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 3418 bytes .../src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 2206 bytes .../src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 4842 bytes .../main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 7718 bytes .../src/main/res/values-v21/styles.xml | 5 + .../src/main/res/values-w820dp/dimens.xml | 6 + .../LiveEffect/src/main/res/values/colors.xml | 3 + .../LiveEffect/src/main/res/values/dimens.xml | 6 + .../src/main/res/values/strings.xml | 19 + .../LiveEffect/src/main/res/values/styles.xml | 8 + .../src/jni/oboe/samples/MegaDrone/.gitignore | 1 + love/src/jni/oboe/samples/MegaDrone/README.md | 47 + .../jni/oboe/samples/MegaDrone/build.gradle | 47 + .../MegaDrone/megadrone-screenshot.png | Bin 0 -> 19766 bytes .../oboe/samples/MegaDrone/proguard-rules.pro | 21 + .../MegaDrone/src/main/AndroidManifest.xml | 22 + .../MegaDrone/src/main/cpp/CMakeLists.txt | 28 + .../src/main/cpp/MegaDroneEngine.cpp | 79 + .../MegaDrone/src/main/cpp/MegaDroneEngine.h | 54 + .../samples/MegaDrone/src/main/cpp/Synth.h | 71 + .../MegaDrone/src/main/cpp/native-lib.cpp | 88 + .../example/oboe/megadrone/MainActivity.java | 106 + .../drawable-v24/ic_launcher_foreground.xml | 34 + .../res/drawable/ic_launcher_background.xml | 170 + .../src/main/res/layout/activity_main.xml | 19 + .../res/mipmap-anydpi-v26/ic_launcher.xml | 5 + .../mipmap-anydpi-v26/ic_launcher_round.xml | 5 + .../src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 2963 bytes .../res/mipmap-hdpi/ic_launcher_round.png | Bin 0 -> 4905 bytes .../src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 2060 bytes .../res/mipmap-mdpi/ic_launcher_round.png | Bin 0 -> 2783 bytes .../src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 4490 bytes .../res/mipmap-xhdpi/ic_launcher_round.png | Bin 0 -> 6895 bytes .../main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 6387 bytes .../res/mipmap-xxhdpi/ic_launcher_round.png | Bin 0 -> 10413 bytes .../main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 9128 bytes .../res/mipmap-xxxhdpi/ic_launcher_round.png | Bin 0 -> 15132 bytes .../MegaDrone/src/main/res/values/colors.xml | 6 + .../MegaDrone/src/main/res/values/strings.xml | 3 + .../MegaDrone/src/main/res/values/styles.xml | 11 + love/src/jni/oboe/samples/README.md | 56 + .../oboe/samples/RhythmGame/CMakeLists.txt | 78 + .../src/jni/oboe/samples/RhythmGame/README.md | 92 + .../jni/oboe/samples/RhythmGame/build.gradle | 72 + .../samples/RhythmGame/images/1-timeline.png | Bin 0 -> 48869 bytes .../RhythmGame/images/2-architecture.png | Bin 0 -> 114349 bytes .../samples/RhythmGame/images/3-audioData.png | Bin 0 -> 18014 bytes .../RhythmGame/images/4-audio-rendering.png | Bin 0 -> 48785 bytes .../RhythmGame/images/5-lockfreequeue.png | Bin 0 -> 30449 bytes .../RhythmGame/images/6-audio-ui-sync.png | Bin 0 -> 36559 bytes .../RhythmGame/images/7-tap-window.png | Bin 0 -> 33731 bytes .../images/RhythmGame-screenshot.png | Bin 0 -> 12061 bytes .../samples/RhythmGame/proguard-rules.pro | 21 + .../RhythmGame/src/main/AndroidManifest.xml | 22 + .../samples/RhythmGame/src/main/cpp/Game.cpp | 247 + .../samples/RhythmGame/src/main/cpp/Game.h | 84 + .../RhythmGame/src/main/cpp/GameConstants.h | 60 + .../src/main/cpp/audio/AAssetDataSource.cpp | 86 + .../src/main/cpp/audio/AAssetDataSource.h | 50 + .../src/main/cpp/audio/DataSource.h | 32 + .../src/main/cpp/audio/FFMpegExtractor.cpp | 314 + .../src/main/cpp/audio/FFMpegExtractor.h | 55 + .../src/main/cpp/audio/NDKExtractor.cpp | 199 + .../src/main/cpp/audio/NDKExtractor.h | 33 + .../RhythmGame/src/main/cpp/audio/Player.cpp | 59 + .../RhythmGame/src/main/cpp/audio/Player.h | 60 + .../RhythmGame/src/main/cpp/native-lib.cpp | 93 + .../src/main/cpp/ui/OpenGLFunctions.cpp | 33 + .../src/main/cpp/ui/OpenGLFunctions.h | 58 + .../src/main/cpp/utils/LockFreeQueue.h | 154 + .../src/main/cpp/utils/UtilityFunctions.cpp | 40 + .../src/main/cpp/utils/UtilityFunctions.h | 42 + .../RhythmGame/src/main/cpp/utils/logging.h | 32 + .../sample/rhythmgame/GameSurfaceView.java | 64 + .../oboe/sample/rhythmgame/MainActivity.java | 69 + .../sample/rhythmgame/RendererWrapper.java | 41 + .../drawable-v24/ic_launcher_foreground.xml | 34 + .../res/drawable/ic_launcher_background.xml | 170 + .../src/main/res/layout/activity_main.xml | 24 + .../res/mipmap-anydpi-v26/ic_launcher.xml | 5 + .../mipmap-anydpi-v26/ic_launcher_round.xml | 5 + .../src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 3056 bytes .../res/mipmap-hdpi/ic_launcher_round.png | Bin 0 -> 5024 bytes .../src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 2096 bytes .../res/mipmap-mdpi/ic_launcher_round.png | Bin 0 -> 2858 bytes .../src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 4569 bytes .../res/mipmap-xhdpi/ic_launcher_round.png | Bin 0 -> 7098 bytes .../main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 6464 bytes .../res/mipmap-xxhdpi/ic_launcher_round.png | Bin 0 -> 10676 bytes .../main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 9250 bytes .../res/mipmap-xxxhdpi/ic_launcher_round.png | Bin 0 -> 15523 bytes .../RhythmGame/src/main/res/values/colors.xml | 6 + .../src/main/res/values/strings.xml | 3 + .../RhythmGame/src/main/res/values/styles.xml | 11 + .../samples/RhythmGame/test/CMakeLists.txt | 12 + .../oboe/samples/RhythmGame/test/run_tests.sh | 110 + .../RhythmGame/test/testLockFreeQueue.cpp | 210 + .../RhythmGame/third_party/glm/CMakeLists.txt | 67 + .../RhythmGame/third_party/glm/common.hpp | 6 + .../third_party/glm/detail/_features.hpp | 399 + .../third_party/glm/detail/_fixes.hpp | 30 + .../third_party/glm/detail/_noise.hpp | 107 + .../third_party/glm/detail/_swizzle.hpp | 797 + .../third_party/glm/detail/_swizzle_func.hpp | 696 + .../third_party/glm/detail/_vectorize.hpp | 131 + .../third_party/glm/detail/dummy.cpp | 207 + .../third_party/glm/detail/func_common.hpp | 427 + .../third_party/glm/detail/func_common.inl | 849 + .../glm/detail/func_common_simd.inl | 231 + .../glm/detail/func_exponential.hpp | 103 + .../glm/detail/func_exponential.inl | 146 + .../glm/detail/func_exponential_simd.inl | 35 + .../third_party/glm/detail/func_geometric.hpp | 113 + .../third_party/glm/detail/func_geometric.inl | 247 + .../glm/detail/func_geometric_simd.inl | 99 + .../third_party/glm/detail/func_integer.hpp | 203 + .../third_party/glm/detail/func_integer.inl | 368 + .../glm/detail/func_integer_simd.inl | 68 + .../third_party/glm/detail/func_matrix.hpp | 149 + .../third_party/glm/detail/func_matrix.inl | 401 + .../glm/detail/func_matrix_simd.inl | 88 + .../third_party/glm/detail/func_packing.hpp | 168 + .../third_party/glm/detail/func_packing.inl | 190 + .../glm/detail/func_packing_simd.inl | 9 + .../glm/detail/func_trigonometric.hpp | 176 + .../glm/detail/func_trigonometric.inl | 200 + .../glm/detail/func_trigonometric_simd.inl | 0 .../glm/detail/func_vector_relational.hpp | 111 + .../glm/detail/func_vector_relational.inl | 105 + .../detail/func_vector_relational_simd.inl | 9 + .../RhythmGame/third_party/glm/detail/glm.cpp | 257 + .../third_party/glm/detail/precision.hpp | 63 + .../third_party/glm/detail/setup.hpp | 828 + .../third_party/glm/detail/type_float.hpp | 67 + .../third_party/glm/detail/type_gentype.hpp | 195 + .../third_party/glm/detail/type_gentype.inl | 341 + .../third_party/glm/detail/type_half.hpp | 19 + .../third_party/glm/detail/type_half.inl | 244 + .../third_party/glm/detail/type_int.hpp | 306 + .../third_party/glm/detail/type_mat.hpp | 767 + .../third_party/glm/detail/type_mat.inl | 3 + .../third_party/glm/detail/type_mat2x2.hpp | 183 + .../third_party/glm/detail/type_mat2x2.inl | 484 + .../third_party/glm/detail/type_mat2x3.hpp | 165 + .../third_party/glm/detail/type_mat2x3.inl | 458 + .../third_party/glm/detail/type_mat2x4.hpp | 167 + .../third_party/glm/detail/type_mat2x4.inl | 467 + .../third_party/glm/detail/type_mat3x2.hpp | 173 + .../third_party/glm/detail/type_mat3x2.inl | 492 + .../third_party/glm/detail/type_mat3x3.hpp | 190 + .../third_party/glm/detail/type_mat3x3.inl | 561 + .../third_party/glm/detail/type_mat3x4.hpp | 172 + .../third_party/glm/detail/type_mat3x4.inl | 532 + .../third_party/glm/detail/type_mat4x2.hpp | 177 + .../third_party/glm/detail/type_mat4x2.inl | 545 + .../third_party/glm/detail/type_mat4x3.hpp | 177 + .../third_party/glm/detail/type_mat4x3.inl | 562 + .../third_party/glm/detail/type_mat4x4.hpp | 195 + .../third_party/glm/detail/type_mat4x4.inl | 671 + .../glm/detail/type_mat4x4_simd.inl | 7 + .../third_party/glm/detail/type_vec.hpp | 576 + .../third_party/glm/detail/type_vec.inl | 2 + .../third_party/glm/detail/type_vec1.hpp | 302 + .../third_party/glm/detail/type_vec1.inl | 558 + .../third_party/glm/detail/type_vec2.hpp | 388 + .../third_party/glm/detail/type_vec2.inl | 894 + .../third_party/glm/detail/type_vec3.hpp | 409 + .../third_party/glm/detail/type_vec3.inl | 1022 + .../third_party/glm/detail/type_vec4.hpp | 454 + .../third_party/glm/detail/type_vec4.inl | 969 + .../third_party/glm/detail/type_vec4_simd.inl | 481 + .../third_party/glm/exponential.hpp | 6 + .../RhythmGame/third_party/glm/ext.hpp | 116 + .../RhythmGame/third_party/glm/fwd.hpp | 2570 + .../RhythmGame/third_party/glm/geometric.hpp | 6 + .../RhythmGame/third_party/glm/glm.hpp | 88 + .../third_party/glm/gtc/bitfield.hpp | 207 + .../third_party/glm/gtc/bitfield.inl | 515 + .../third_party/glm/gtc/color_encoding.inl | 65 + .../third_party/glm/gtc/color_space.hpp | 56 + .../third_party/glm/gtc/color_space.inl | 75 + .../third_party/glm/gtc/constants.hpp | 176 + .../third_party/glm/gtc/constants.inl | 181 + .../third_party/glm/gtc/epsilon.hpp | 73 + .../third_party/glm/gtc/epsilon.inl | 125 + .../third_party/glm/gtc/functions.hpp | 53 + .../third_party/glm/gtc/functions.inl | 31 + .../third_party/glm/gtc/integer.hpp | 102 + .../third_party/glm/gtc/integer.inl | 71 + .../third_party/glm/gtc/matrix_access.hpp | 59 + .../third_party/glm/gtc/matrix_access.inl | 63 + .../third_party/glm/gtc/matrix_integer.hpp | 486 + .../third_party/glm/gtc/matrix_inverse.hpp | 49 + .../third_party/glm/gtc/matrix_inverse.inl | 120 + .../third_party/glm/gtc/matrix_transform.hpp | 465 + .../third_party/glm/gtc/matrix_transform.inl | 575 + .../RhythmGame/third_party/glm/gtc/noise.hpp | 60 + .../RhythmGame/third_party/glm/gtc/noise.inl | 808 + .../third_party/glm/gtc/packing.hpp | 579 + .../third_party/glm/gtc/packing.inl | 781 + .../third_party/glm/gtc/quaternion.hpp | 397 + .../third_party/glm/gtc/quaternion.inl | 795 + .../third_party/glm/gtc/quaternion_simd.inl | 198 + .../RhythmGame/third_party/glm/gtc/random.hpp | 98 + .../RhythmGame/third_party/glm/gtc/random.inl | 350 + .../third_party/glm/gtc/reciprocal.hpp | 135 + .../third_party/glm/gtc/reciprocal.inl | 192 + .../RhythmGame/third_party/glm/gtc/round.hpp | 174 + .../RhythmGame/third_party/glm/gtc/round.inl | 344 + .../third_party/glm/gtc/type_aligned.hpp | 362 + .../third_party/glm/gtc/type_precision.hpp | 861 + .../third_party/glm/gtc/type_precision.inl | 7 + .../third_party/glm/gtc/type_ptr.hpp | 149 + .../third_party/glm/gtc/type_ptr.inl | 450 + .../RhythmGame/third_party/glm/gtc/ulp.hpp | 63 + .../RhythmGame/third_party/glm/gtc/ulp.inl | 321 + .../RhythmGame/third_party/glm/gtc/vec1.hpp | 164 + .../RhythmGame/third_party/glm/gtc/vec1.inl | 2 + .../glm/gtx/associated_min_max.hpp | 202 + .../glm/gtx/associated_min_max.inl | 355 + .../RhythmGame/third_party/glm/gtx/bit.hpp | 95 + .../RhythmGame/third_party/glm/gtx/bit.inl | 93 + .../third_party/glm/gtx/closest_point.hpp | 45 + .../third_party/glm/gtx/closest_point.inl | 46 + .../third_party/glm/gtx/color_space.hpp | 68 + .../third_party/glm/gtx/color_space.inl | 141 + .../third_party/glm/gtx/color_space_YCoCg.hpp | 56 + .../third_party/glm/gtx/color_space_YCoCg.inl | 108 + .../RhythmGame/third_party/glm/gtx/common.hpp | 53 + .../RhythmGame/third_party/glm/gtx/common.inl | 112 + .../third_party/glm/gtx/compatibility.hpp | 130 + .../third_party/glm/gtx/compatibility.inl | 65 + .../third_party/glm/gtx/component_wise.hpp | 65 + .../third_party/glm/gtx/component_wise.inl | 128 + .../third_party/glm/gtx/dual_quaternion.hpp | 266 + .../third_party/glm/gtx/dual_quaternion.inl | 351 + .../third_party/glm/gtx/euler_angles.hpp | 143 + .../third_party/glm/gtx/euler_angles.inl | 312 + .../RhythmGame/third_party/glm/gtx/extend.hpp | 38 + .../RhythmGame/third_party/glm/gtx/extend.inl | 49 + .../third_party/glm/gtx/extended_min_max.hpp | 133 + .../third_party/glm/gtx/extended_min_max.inl | 140 + .../third_party/glm/gtx/fast_exponential.hpp | 91 + .../third_party/glm/gtx/fast_exponential.inl | 137 + .../third_party/glm/gtx/fast_square_root.hpp | 88 + .../third_party/glm/gtx/fast_square_root.inl | 81 + .../third_party/glm/gtx/fast_trigonometry.hpp | 75 + .../third_party/glm/gtx/fast_trigonometry.inl | 143 + .../third_party/glm/gtx/float_notmalize.inl | 14 + .../third_party/glm/gtx/gradient_paint.hpp | 48 + .../third_party/glm/gtx/gradient_paint.inl | 37 + .../glm/gtx/handed_coordinate_space.hpp | 46 + .../glm/gtx/handed_coordinate_space.inl | 27 + .../RhythmGame/third_party/glm/gtx/hash.hpp | 134 + .../RhythmGame/third_party/glm/gtx/hash.inl | 185 + .../third_party/glm/gtx/integer.hpp | 72 + .../third_party/glm/gtx/integer.inl | 182 + .../third_party/glm/gtx/intersect.hpp | 87 + .../third_party/glm/gtx/intersect.inl | 170 + .../RhythmGame/third_party/glm/gtx/io.hpp | 197 + .../RhythmGame/third_party/glm/gtx/io.inl | 441 + .../third_party/glm/gtx/log_base.hpp | 44 + .../third_party/glm/gtx/log_base.inl | 18 + .../glm/gtx/matrix_cross_product.hpp | 43 + .../glm/gtx/matrix_cross_product.inl | 38 + .../third_party/glm/gtx/matrix_decompose.hpp | 42 + .../third_party/glm/gtx/matrix_decompose.inl | 194 + .../glm/gtx/matrix_interpolation.hpp | 61 + .../glm/gtx/matrix_interpolation.inl | 134 + .../glm/gtx/matrix_major_storage.hpp | 115 + .../glm/gtx/matrix_major_storage.inl | 167 + .../third_party/glm/gtx/matrix_operation.hpp | 84 + .../third_party/glm/gtx/matrix_operation.inl | 118 + .../third_party/glm/gtx/matrix_query.hpp | 73 + .../third_party/glm/gtx/matrix_query.inl | 114 + .../glm/gtx/matrix_transform_2d.hpp | 78 + .../glm/gtx/matrix_transform_2d.inl | 69 + .../third_party/glm/gtx/mixed_product.hpp | 37 + .../third_party/glm/gtx/mixed_product.inl | 16 + .../RhythmGame/third_party/glm/gtx/norm.hpp | 86 + .../RhythmGame/third_party/glm/gtx/norm.inl | 106 + .../RhythmGame/third_party/glm/gtx/normal.hpp | 39 + .../RhythmGame/third_party/glm/gtx/normal.inl | 16 + .../third_party/glm/gtx/normalize_dot.hpp | 45 + .../third_party/glm/gtx/normalize_dot.inl | 17 + .../third_party/glm/gtx/number_precision.hpp | 57 + .../third_party/glm/gtx/number_precision.inl | 7 + .../third_party/glm/gtx/optimum_pow.hpp | 50 + .../third_party/glm/gtx/optimum_pow.inl | 23 + .../third_party/glm/gtx/orthonormalize.hpp | 45 + .../third_party/glm/gtx/orthonormalize.inl | 30 + .../third_party/glm/gtx/perpendicular.hpp | 39 + .../third_party/glm/gtx/perpendicular.inl | 15 + .../third_party/glm/gtx/polar_coordinates.hpp | 44 + .../third_party/glm/gtx/polar_coordinates.inl | 37 + .../third_party/glm/gtx/projection.hpp | 36 + .../third_party/glm/gtx/projection.inl | 11 + .../third_party/glm/gtx/quaternion.hpp | 185 + .../third_party/glm/gtx/quaternion.inl | 212 + .../RhythmGame/third_party/glm/gtx/range.hpp | 85 + .../third_party/glm/gtx/raw_data.hpp | 47 + .../third_party/glm/gtx/raw_data.inl | 2 + .../glm/gtx/rotate_normalized_axis.hpp | 64 + .../glm/gtx/rotate_normalized_axis.inl | 59 + .../third_party/glm/gtx/rotate_vector.hpp | 117 + .../third_party/glm/gtx/rotate_vector.inl | 188 + .../glm/gtx/scalar_multiplication.hpp | 69 + .../third_party/glm/gtx/scalar_relational.hpp | 32 + .../third_party/glm/gtx/scalar_relational.inl | 89 + .../third_party/glm/gtx/simd_mat4.hpp | 182 + .../third_party/glm/gtx/simd_mat4.inl | 577 + .../third_party/glm/gtx/simd_quat.hpp | 307 + .../third_party/glm/gtx/simd_quat.inl | 620 + .../third_party/glm/gtx/simd_vec4.hpp | 546 + .../third_party/glm/gtx/simd_vec4.inl | 721 + .../RhythmGame/third_party/glm/gtx/spline.hpp | 61 + .../RhythmGame/third_party/glm/gtx/spline.inl | 63 + .../third_party/glm/gtx/std_based_type.hpp | 63 + .../third_party/glm/gtx/std_based_type.inl | 7 + .../third_party/glm/gtx/string_cast.hpp | 47 + .../third_party/glm/gtx/string_cast.inl | 458 + .../third_party/glm/gtx/transform.hpp | 56 + .../third_party/glm/gtx/transform.inl | 24 + .../third_party/glm/gtx/transform2.hpp | 107 + .../third_party/glm/gtx/transform2.inl | 126 + .../third_party/glm/gtx/type_aligned.hpp | 966 + .../third_party/glm/gtx/type_aligned.inl | 7 + .../third_party/glm/gtx/type_trait.hpp | 252 + .../third_party/glm/gtx/type_trait.inl | 0 .../third_party/glm/gtx/vector_angle.hpp | 60 + .../third_party/glm/gtx/vector_angle.inl | 58 + .../third_party/glm/gtx/vector_query.hpp | 62 + .../third_party/glm/gtx/vector_query.inl | 193 + .../RhythmGame/third_party/glm/gtx/wrap.hpp | 51 + .../RhythmGame/third_party/glm/gtx/wrap.inl | 58 + .../RhythmGame/third_party/glm/integer.hpp | 6 + .../RhythmGame/third_party/glm/mat2x2.hpp | 52 + .../RhythmGame/third_party/glm/mat2x3.hpp | 32 + .../RhythmGame/third_party/glm/mat2x4.hpp | 31 + .../RhythmGame/third_party/glm/mat3x2.hpp | 31 + .../RhythmGame/third_party/glm/mat3x3.hpp | 52 + .../RhythmGame/third_party/glm/mat3x4.hpp | 31 + .../RhythmGame/third_party/glm/mat4x2.hpp | 31 + .../RhythmGame/third_party/glm/mat4x3.hpp | 31 + .../RhythmGame/third_party/glm/mat4x4.hpp | 52 + .../RhythmGame/third_party/glm/matrix.hpp | 6 + .../RhythmGame/third_party/glm/packing.hpp | 6 + .../RhythmGame/third_party/glm/simd/common.h | 240 + .../third_party/glm/simd/exponential.h | 20 + .../third_party/glm/simd/geometric.h | 124 + .../RhythmGame/third_party/glm/simd/integer.h | 115 + .../RhythmGame/third_party/glm/simd/matrix.h | 1028 + .../RhythmGame/third_party/glm/simd/packing.h | 8 + .../third_party/glm/simd/platform.h | 452 + .../third_party/glm/simd/trigonometric.h | 9 + .../third_party/glm/simd/vector_relational.h | 8 + .../third_party/glm/trigonometric.hpp | 6 + .../RhythmGame/third_party/glm/vec2.hpp | 6 + .../RhythmGame/third_party/glm/vec3.hpp | 6 + .../RhythmGame/third_party/glm/vec4.hpp | 6 + .../third_party/glm/vector_relational.hpp | 6 + .../jni/oboe/samples/audio-device/README.md | 3 + .../oboe/samples/audio-device/build.gradle | 21 + .../samples/audio-device/proguard-rules.pro | 25 + .../audio-device/src/main/AndroidManifest.xml | 2 + .../audio_device/AudioDeviceAdapter.java | 56 + .../AudioDeviceInfoConverter.java | 140 + .../audio_device/AudioDeviceListEntry.java | 93 + .../audio_device/AudioDeviceSpinner.java | 117 + .../src/main/res/layout/audio_devices.xml | 23 + .../src/main/res/values/dimens.xml | 4 + .../src/main/res/values/strings.xml | 4 + love/src/jni/oboe/samples/build.gradle | 42 + .../oboe/samples/debug-utils/logging_macros.h | 46 + .../jni/oboe/samples/debug-utils/trace.cpp | 85 + love/src/jni/oboe/samples/debug-utils/trace.h | 33 + .../jni/oboe/samples/drumthumper/README.md | 39 + .../jni/oboe/samples/drumthumper/build.gradle | 37 + .../drumthumper/src/main/AndroidManifest.xml | 21 + .../drumthumper/src/main/cpp/CMakeLists.txt | 73 + .../src/main/cpp/DrumPlayerJNI.cpp | 153 + .../oboe/sample/drumthumper/DrumPlayer.kt | 108 + .../sample/drumthumper/DrumThumperActivity.kt | 316 + .../oboe/sample/drumthumper/TriggerPad.kt | 214 + .../drawable-v24/_ic_launcher_foreground.xml | 34 + .../res/drawable/_ic_launcher_background.xml | 170 + .../res/layout-land/drumthumper_activity.xml | 507 + .../main/res/layout/drumthumper_activity.xml | 519 + .../res/mipmap-anydpi-v26/_ic_launcher.xml | 5 + .../mipmap-anydpi-v26/_ic_launcher_round.xml | 5 + .../src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 2547 bytes .../res/mipmap-hdpi/ic_launcher_round.png | Bin 0 -> 2547 bytes .../src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 2547 bytes .../res/mipmap-mdpi/ic_launcher_round.png | Bin 0 -> 2547 bytes .../src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 4204 bytes .../res/mipmap-xhdpi/ic_launcher_round.png | Bin 0 -> 4204 bytes .../main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 8091 bytes .../res/mipmap-xxhdpi/ic_launcher_round.png | Bin 0 -> 8091 bytes .../main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 12858 bytes .../res/mipmap-xxxhdpi/ic_launcher_round.png | Bin 0 -> 12858 bytes .../src/main/res/values/colors.xml | 6 + .../src/main/res/values/strings.xml | 3 + .../src/main/res/values/styles.xml | 11 + love/src/jni/oboe/samples/gradle.properties | 37 + .../samples/gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 53636 bytes .../gradle/wrapper/gradle-wrapper.properties | 6 + love/src/jni/oboe/samples/gradlew | 160 + love/src/jni/oboe/samples/gradlew.bat | 90 + .../src/jni/oboe/samples/hello-oboe/README.md | 19 + .../jni/oboe/samples/hello-oboe/build.gradle | 40 + .../hello-oboe/hello-oboe-screenshot.png | Bin 0 -> 63449 bytes .../samples/hello-oboe/proguard-rules.pro | 17 + .../hello-oboe/src/main/AndroidManifest.xml | 24 + .../hello-oboe/src/main/cpp/CMakeLists.txt | 59 + .../src/main/cpp/HelloOboeEngine.cpp | 148 + .../hello-oboe/src/main/cpp/HelloOboeEngine.h | 89 + .../src/main/cpp/LatencyTuningCallback.cpp | 40 + .../src/main/cpp/LatencyTuningCallback.h | 64 + .../src/main/cpp/SoundGenerator.cpp | 51 + .../hello-oboe/src/main/cpp/SoundGenerator.h | 58 + .../hello-oboe/src/main/cpp/jni_bridge.cpp | 161 + .../sample/oboe/hellooboe/MainActivity.java | 284 + .../sample/oboe/hellooboe/PlaybackEngine.java | 99 + .../src/main/res/layout/activity_main.xml | 154 + .../main/res/layout/audio_apis_spinner.xml | 23 + .../main/res/layout/buffer_sizes_spinner.xml | 23 + .../res/layout/channel_counts_spinner.xml | 23 + .../src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 3418 bytes .../src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 2206 bytes .../src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 4842 bytes .../main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 7718 bytes .../src/main/res/values-v21/styles.xml | 5 + .../src/main/res/values-w820dp/dimens.xml | 6 + .../hello-oboe/src/main/res/values/dimens.xml | 5 + .../src/main/res/values/strings.xml | 16 + .../hello-oboe/src/main/res/values/styles.xml | 8 + love/src/jni/oboe/samples/iolib/.gitignore | 1 + love/src/jni/oboe/samples/iolib/README.md | 35 + love/src/jni/oboe/samples/iolib/build.gradle | 36 + .../iolib/src/main/AndroidManifest.xml | 2 + .../samples/iolib/src/main/cpp/CMakeLists.txt | 61 + .../iolib/src/main/cpp/player/DataSource.h | 36 + .../main/cpp/player/OneShotSampleSource.cpp | 60 + .../src/main/cpp/player/OneShotSampleSource.h | 38 + .../src/main/cpp/player/SampleBuffer.cpp | 44 + .../iolib/src/main/cpp/player/SampleBuffer.h | 55 + .../src/main/cpp/player/SampleSource.cpp | 21 + .../iolib/src/main/cpp/player/SampleSource.h | 103 + .../src/main/cpp/player/SimpleMultiPlayer.cpp | 192 + .../src/main/cpp/player/SimpleMultiPlayer.h | 93 + .../iolib/src/main/res/values/strings.xml | 3 + love/src/jni/oboe/samples/parselib/README.md | 52 + .../jni/oboe/samples/parselib/build.gradle | 35 + .../parselib/src/main/AndroidManifest.xml | 2 + .../parselib/src/main/cpp/CMakeLists.txt | 64 + .../src/main/cpp/stream/FileInputStream.cpp | 48 + .../src/main/cpp/stream/FileInputStream.h | 49 + .../src/main/cpp/stream/InputStream.cpp | 22 + .../src/main/cpp/stream/InputStream.h | 63 + .../src/main/cpp/stream/MemInputStream.cpp | 60 + .../src/main/cpp/stream/MemInputStream.h | 55 + .../src/main/cpp/wav/AudioEncoding.cpp | 20 + .../parselib/src/main/cpp/wav/AudioEncoding.h | 34 + .../src/main/cpp/wav/WavChunkHeader.cpp | 29 + .../src/main/cpp/wav/WavChunkHeader.h | 50 + .../src/main/cpp/wav/WavFmtChunkHeader.cpp | 75 + .../src/main/cpp/wav/WavFmtChunkHeader.h | 56 + .../src/main/cpp/wav/WavRIFFChunkHeader.cpp | 37 + .../src/main/cpp/wav/WavRIFFChunkHeader.h | 42 + .../src/main/cpp/wav/WavStreamReader.cpp | 159 + .../src/main/cpp/wav/WavStreamReader.h | 73 + .../parselib/src/main/cpp/wav/WavTypes.h | 38 + .../parselib/src/main/res/values/strings.xml | 3 + love/src/jni/oboe/samples/settings.gradle | 25 + .../shared/DefaultAudioStreamCallback.h | 139 + .../oboe/samples/shared/IRenderableAudio.h | 31 + .../jni/oboe/samples/shared/IRestartable.h | 28 + love/src/jni/oboe/samples/shared/ITappable.h | 25 + love/src/jni/oboe/samples/shared/Mixer.h | 63 + .../jni/oboe/samples/shared/MonoToStereo.h | 49 + love/src/jni/oboe/samples/shared/Oscillator.h | 94 + .../oboe/samples/shared/TappableAudioSource.h | 38 + love/src/jni/oboe/src/aaudio/AAudioLoader.cpp | 348 + love/src/jni/oboe/src/aaudio/AAudioLoader.h | 229 + .../jni/oboe/src/aaudio/AudioStreamAAudio.cpp | 643 + .../jni/oboe/src/aaudio/AudioStreamAAudio.h | 123 + love/src/jni/oboe/src/common/AudioClock.h | 75 + .../jni/oboe/src/common/AudioSourceCaller.cpp | 38 + .../jni/oboe/src/common/AudioSourceCaller.h | 83 + love/src/jni/oboe/src/common/AudioStream.cpp | 211 + .../oboe/src/common/AudioStreamBuilder.cpp | 201 + .../src/common/DataConversionFlowGraph.cpp | 215 + .../oboe/src/common/DataConversionFlowGraph.h | 84 + .../jni/oboe/src/common/FilterAudioStream.cpp | 92 + .../jni/oboe/src/common/FilterAudioStream.h | 214 + .../jni/oboe/src/common/FixedBlockAdapter.cpp | 38 + .../jni/oboe/src/common/FixedBlockAdapter.h | 67 + .../jni/oboe/src/common/FixedBlockReader.cpp | 73 + .../jni/oboe/src/common/FixedBlockReader.h | 60 + .../jni/oboe/src/common/FixedBlockWriter.cpp | 73 + .../jni/oboe/src/common/FixedBlockWriter.h | 54 + love/src/jni/oboe/src/common/LatencyTuner.cpp | 102 + .../jni/oboe/src/common/MonotonicCounter.h | 112 + love/src/jni/oboe/src/common/OboeDebug.h | 41 + .../src/jni/oboe/src/common/QuirksManager.cpp | 138 + love/src/jni/oboe/src/common/QuirksManager.h | 110 + love/src/jni/oboe/src/common/README.md | 33 + .../jni/oboe/src/common/SourceFloatCaller.cpp | 30 + .../jni/oboe/src/common/SourceFloatCaller.h | 44 + .../jni/oboe/src/common/SourceI16Caller.cpp | 47 + .../src/jni/oboe/src/common/SourceI16Caller.h | 48 + .../oboe/src/common/StabilizedCallback.cpp | 112 + love/src/jni/oboe/src/common/Trace.cpp | 75 + love/src/jni/oboe/src/common/Trace.h | 31 + love/src/jni/oboe/src/common/Utilities.cpp | 305 + love/src/jni/oboe/src/common/Version.cpp | 28 + love/src/jni/oboe/src/fifo/FifoBuffer.cpp | 182 + love/src/jni/oboe/src/fifo/FifoBuffer.h | 99 + love/src/jni/oboe/src/fifo/FifoController.cpp | 31 + love/src/jni/oboe/src/fifo/FifoController.h | 61 + .../jni/oboe/src/fifo/FifoControllerBase.cpp | 71 + .../jni/oboe/src/fifo/FifoControllerBase.h | 93 + .../oboe/src/fifo/FifoControllerIndirect.cpp | 31 + .../oboe/src/fifo/FifoControllerIndirect.h | 64 + .../jni/oboe/src/flowgraph/ClipToRange.cpp | 38 + love/src/jni/oboe/src/flowgraph/ClipToRange.h | 68 + .../jni/oboe/src/flowgraph/FlowGraphNode.cpp | 111 + .../jni/oboe/src/flowgraph/FlowGraphNode.h | 422 + .../src/flowgraph/ManyToMultiConverter.cpp | 47 + .../oboe/src/flowgraph/ManyToMultiConverter.h | 49 + .../src/flowgraph/MonoToMultiConverter.cpp | 43 + .../oboe/src/flowgraph/MonoToMultiConverter.h | 49 + .../src/jni/oboe/src/flowgraph/RampLinear.cpp | 77 + love/src/jni/oboe/src/flowgraph/RampLinear.h | 96 + .../src/flowgraph/SampleRateConverter.cpp | 64 + .../oboe/src/flowgraph/SampleRateConverter.h | 56 + love/src/jni/oboe/src/flowgraph/SinkFloat.cpp | 50 + love/src/jni/oboe/src/flowgraph/SinkFloat.h | 44 + love/src/jni/oboe/src/flowgraph/SinkI16.cpp | 58 + love/src/jni/oboe/src/flowgraph/SinkI16.h | 43 + love/src/jni/oboe/src/flowgraph/SinkI24.cpp | 67 + love/src/jni/oboe/src/flowgraph/SinkI24.h | 44 + .../jni/oboe/src/flowgraph/SourceFloat.cpp | 43 + love/src/jni/oboe/src/flowgraph/SourceFloat.h | 43 + love/src/jni/oboe/src/flowgraph/SourceI16.cpp | 54 + love/src/jni/oboe/src/flowgraph/SourceI16.h | 42 + love/src/jni/oboe/src/flowgraph/SourceI24.cpp | 65 + love/src/jni/oboe/src/flowgraph/SourceI24.h | 43 + .../resampler/HyperbolicCosineWindow.h | 68 + .../src/flowgraph/resampler/IntegerRatio.cpp | 50 + .../src/flowgraph/resampler/IntegerRatio.h | 52 + .../src/flowgraph/resampler/KaiserWindow.h | 87 + .../flowgraph/resampler/LinearResampler.cpp | 42 + .../src/flowgraph/resampler/LinearResampler.h | 44 + .../resampler/MultiChannelResampler.cpp | 171 + .../resampler/MultiChannelResampler.h | 271 + .../resampler/PolyphaseResampler.cpp | 61 + .../flowgraph/resampler/PolyphaseResampler.h | 51 + .../resampler/PolyphaseResamplerMono.cpp | 62 + .../resampler/PolyphaseResamplerMono.h | 39 + .../resampler/PolyphaseResamplerStereo.cpp | 78 + .../resampler/PolyphaseResamplerStereo.h | 39 + .../oboe/src/flowgraph/resampler/README.md | 93 + .../src/flowgraph/resampler/SincResampler.cpp | 76 + .../src/flowgraph/resampler/SincResampler.h | 47 + .../resampler/SincResamplerStereo.cpp | 80 + .../flowgraph/resampler/SincResamplerStereo.h | 39 + .../src/opensles/AudioInputStreamOpenSLES.cpp | 352 + .../src/opensles/AudioInputStreamOpenSLES.h | 65 + .../opensles/AudioOutputStreamOpenSLES.cpp | 448 + .../src/opensles/AudioOutputStreamOpenSLES.h | 77 + .../oboe/src/opensles/AudioStreamBuffered.cpp | 266 + .../oboe/src/opensles/AudioStreamBuffered.h | 92 + .../oboe/src/opensles/AudioStreamOpenSLES.cpp | 396 + .../oboe/src/opensles/AudioStreamOpenSLES.h | 132 + .../jni/oboe/src/opensles/EngineOpenSLES.cpp | 101 + .../jni/oboe/src/opensles/EngineOpenSLES.h | 65 + .../oboe/src/opensles/OpenSLESUtilities.cpp | 93 + .../jni/oboe/src/opensles/OpenSLESUtilities.h | 44 + .../oboe/src/opensles/OutputMixerOpenSLES.cpp | 74 + .../oboe/src/opensles/OutputMixerOpenSLES.h | 58 + love/src/jni/oboe/tests/CMakeLists.txt | 37 + love/src/jni/oboe/tests/README | 1 + love/src/jni/oboe/tests/README.md | 62 + .../jni/oboe/tests/UnitTestRunner/.gitignore | 11 + .../oboe/tests/UnitTestRunner/app/.gitignore | 1 + .../tests/UnitTestRunner/app/build.gradle | 24 + .../UnitTestRunner/app/proguard-rules.pro | 21 + .../app/src/main/AndroidManifest.xml | 22 + .../tests/unittestrunner/MainActivity.java | 182 + .../drawable-v24/ic_launcher_foreground.xml | 34 + .../res/drawable/ic_launcher_background.xml | 170 + .../app/src/main/res/layout/activity_main.xml | 31 + .../res/mipmap-anydpi-v26/ic_launcher.xml | 5 + .../mipmap-anydpi-v26/ic_launcher_round.xml | 5 + .../src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 2963 bytes .../res/mipmap-hdpi/ic_launcher_round.png | Bin 0 -> 4905 bytes .../src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 2060 bytes .../res/mipmap-mdpi/ic_launcher_round.png | Bin 0 -> 2783 bytes .../src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 4490 bytes .../res/mipmap-xhdpi/ic_launcher_round.png | Bin 0 -> 6895 bytes .../main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 6387 bytes .../res/mipmap-xxhdpi/ic_launcher_round.png | Bin 0 -> 10413 bytes .../main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 9128 bytes .../res/mipmap-xxxhdpi/ic_launcher_round.png | Bin 0 -> 15132 bytes .../app/src/main/res/values/colors.xml | 6 + .../app/src/main/res/values/strings.xml | 6 + .../app/src/main/res/values/styles.xml | 11 + .../oboe/tests/UnitTestRunner/build.gradle | 27 + .../tests/UnitTestRunner/gradle.properties | 19 + .../gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 54329 bytes .../gradle/wrapper/gradle-wrapper.properties | 6 + .../src/jni/oboe/tests/UnitTestRunner/gradlew | 172 + .../jni/oboe/tests/UnitTestRunner/gradlew.bat | 84 + .../oboe/tests/UnitTestRunner/settings.gradle | 1 + love/src/jni/oboe/tests/run_tests.sh | 133 + love/src/jni/oboe/tests/testFlowgraph.cpp | 233 + .../oboe/tests/testStreamClosedMethods.cpp | 349 + love/src/jni/oboe/tests/testStreamOpen.cpp | 301 + love/src/jni/oboe/tests/testStreamStates.cpp | 312 + .../jni/oboe/tests/testStreamWaitState.cpp | 216 + love/src/jni/oboe/tests/testUtilities.cpp | 43 + love/src/jni/oboe/tests/testXRunBehaviour.cpp | 97 + love/src/jni/openal-soft/.gitignore | 12 +- love/src/jni/openal-soft/.travis.yml | 88 +- love/src/jni/openal-soft/Alc/ALc.c | 4703 - love/src/jni/openal-soft/Alc/ALu.c | 1923 - love/src/jni/openal-soft/Alc/alc.cpp | 4141 + love/src/jni/openal-soft/Alc/alcmain.h | 383 + love/src/jni/openal-soft/Alc/alconfig.c | 698 - love/src/jni/openal-soft/Alc/alconfig.cpp | 542 + love/src/jni/openal-soft/Alc/alconfig.h | 17 +- love/src/jni/openal-soft/Alc/alcontext.h | 258 + love/src/jni/openal-soft/Alc/alstring.h | 58 - love/src/jni/openal-soft/Alc/alu.cpp | 2040 + love/src/jni/openal-soft/Alc/alu.h | 161 + love/src/jni/openal-soft/Alc/ambdec.c | 566 - love/src/jni/openal-soft/Alc/ambdec.cpp | 434 + love/src/jni/openal-soft/Alc/ambdec.h | 62 +- love/src/jni/openal-soft/Alc/ambidefs.h | 132 + love/src/jni/openal-soft/Alc/backends/alsa.c | 1464 - .../src/jni/openal-soft/Alc/backends/alsa.cpp | 1267 + love/src/jni/openal-soft/Alc/backends/alsa.h | 19 + love/src/jni/openal-soft/Alc/backends/base.c | 84 - .../src/jni/openal-soft/Alc/backends/base.cpp | 197 + love/src/jni/openal-soft/Alc/backends/base.h | 248 +- .../jni/openal-soft/Alc/backends/coreaudio.c | 816 - .../openal-soft/Alc/backends/coreaudio.cpp | 654 + .../jni/openal-soft/Alc/backends/coreaudio.h | 19 + .../src/jni/openal-soft/Alc/backends/dsound.c | 1079 - .../jni/openal-soft/Alc/backends/dsound.cpp | 869 + .../src/jni/openal-soft/Alc/backends/dsound.h | 19 + love/src/jni/openal-soft/Alc/backends/jack.c | 607 - .../src/jni/openal-soft/Alc/backends/jack.cpp | 600 + love/src/jni/openal-soft/Alc/backends/jack.h | 19 + .../jni/openal-soft/Alc/backends/loopback.c | 128 - .../jni/openal-soft/Alc/backends/loopback.cpp | 79 + .../jni/openal-soft/Alc/backends/loopback.h | 19 + love/src/jni/openal-soft/Alc/backends/null.c | 220 - .../src/jni/openal-soft/Alc/backends/null.cpp | 180 + love/src/jni/openal-soft/Alc/backends/null.h | 19 + .../src/jni/openal-soft/Alc/backends/oboe.cpp | 249 + love/src/jni/openal-soft/Alc/backends/oboe.h | 19 + .../src/jni/openal-soft/Alc/backends/opensl.c | 1070 - .../jni/openal-soft/Alc/backends/opensl.cpp | 962 + .../src/jni/openal-soft/Alc/backends/opensl.h | 19 + love/src/jni/openal-soft/Alc/backends/oss.c | 869 - love/src/jni/openal-soft/Alc/backends/oss.cpp | 688 + love/src/jni/openal-soft/Alc/backends/oss.h | 19 + .../jni/openal-soft/Alc/backends/portaudio.c | 555 - .../openal-soft/Alc/backends/portaudio.cpp | 444 + .../jni/openal-soft/Alc/backends/portaudio.h | 19 + .../jni/openal-soft/Alc/backends/pulseaudio.c | 1920 - .../openal-soft/Alc/backends/pulseaudio.cpp | 1550 + .../jni/openal-soft/Alc/backends/pulseaudio.h | 19 + love/src/jni/openal-soft/Alc/backends/qsa.c | 1068 - love/src/jni/openal-soft/Alc/backends/sdl2.c | 288 - .../src/jni/openal-soft/Alc/backends/sdl2.cpp | 219 + love/src/jni/openal-soft/Alc/backends/sdl2.h | 19 + love/src/jni/openal-soft/Alc/backends/sndio.c | 600 - .../jni/openal-soft/Alc/backends/sndio.cpp | 518 + love/src/jni/openal-soft/Alc/backends/sndio.h | 19 + .../jni/openal-soft/Alc/backends/solaris.c | 360 - .../jni/openal-soft/Alc/backends/solaris.cpp | 293 + .../jni/openal-soft/Alc/backends/solaris.h | 19 + .../src/jni/openal-soft/Alc/backends/wasapi.c | 2045 - .../jni/openal-soft/Alc/backends/wasapi.cpp | 1847 + .../src/jni/openal-soft/Alc/backends/wasapi.h | 19 + love/src/jni/openal-soft/Alc/backends/wave.c | 453 - .../src/jni/openal-soft/Alc/backends/wave.cpp | 399 + love/src/jni/openal-soft/Alc/backends/wave.h | 19 + love/src/jni/openal-soft/Alc/backends/winmm.c | 786 - .../jni/openal-soft/Alc/backends/winmm.cpp | 635 + love/src/jni/openal-soft/Alc/backends/winmm.h | 19 + love/src/jni/openal-soft/Alc/bformatdec.c | 492 - love/src/jni/openal-soft/Alc/bformatdec.cpp | 301 + love/src/jni/openal-soft/Alc/bformatdec.h | 102 +- .../jni/openal-soft/Alc/{bs2b.c => bs2b.cpp} | 80 +- .../{OpenAL32/Include => Alc}/bs2b.h | 27 +- love/src/jni/openal-soft/Alc/bsinc_defs.h | 16 + love/src/jni/openal-soft/Alc/bsinc_tables.cpp | 289 + love/src/jni/openal-soft/Alc/bsinc_tables.h | 17 + .../jni/openal-soft/Alc/buffer_storage.cpp | 37 + love/src/jni/openal-soft/Alc/buffer_storage.h | 73 + love/src/jni/openal-soft/Alc/bufferline.h | 15 + love/src/jni/openal-soft/Alc/compat.h | 54 +- love/src/jni/openal-soft/Alc/converter.c | 468 - love/src/jni/openal-soft/Alc/converter.cpp | 372 + love/src/jni/openal-soft/Alc/converter.h | 95 +- love/src/jni/openal-soft/Alc/cpu_caps.cpp | 165 + love/src/jni/openal-soft/Alc/cpu_caps.h | 1 + love/src/jni/openal-soft/Alc/devformat.h | 103 + .../src/jni/openal-soft/Alc/effects/autowah.c | 321 - .../jni/openal-soft/Alc/effects/autowah.cpp | 301 + love/src/jni/openal-soft/Alc/effects/base.h | 204 + love/src/jni/openal-soft/Alc/effects/chorus.c | 555 - .../jni/openal-soft/Alc/effects/chorus.cpp | 540 + .../jni/openal-soft/Alc/effects/compressor.c | 243 - .../openal-soft/Alc/effects/compressor.cpp | 223 + .../openal-soft/Alc/effects/convolution.cpp | 646 + .../jni/openal-soft/Alc/effects/dedicated.c | 184 - .../jni/openal-soft/Alc/effects/dedicated.cpp | 164 + .../jni/openal-soft/Alc/effects/distortion.c | 286 - .../openal-soft/Alc/effects/distortion.cpp | 266 + love/src/jni/openal-soft/Alc/effects/echo.c | 310 - love/src/jni/openal-soft/Alc/effects/echo.cpp | 260 + .../jni/openal-soft/Alc/effects/equalizer.c | 355 - .../jni/openal-soft/Alc/effects/equalizer.cpp | 338 + .../jni/openal-soft/Alc/effects/fshifter.c | 329 - .../jni/openal-soft/Alc/effects/fshifter.cpp | 323 + .../jni/openal-soft/Alc/effects/modulator.c | 307 - .../jni/openal-soft/Alc/effects/modulator.cpp | 268 + love/src/jni/openal-soft/Alc/effects/null.c | 179 - love/src/jni/openal-soft/Alc/effects/null.cpp | 168 + .../jni/openal-soft/Alc/effects/pshifter.c | 441 - .../jni/openal-soft/Alc/effects/pshifter.cpp | 338 + love/src/jni/openal-soft/Alc/effects/reverb.c | 2090 - .../jni/openal-soft/Alc/effects/reverb.cpp | 2243 + .../jni/openal-soft/Alc/effects/vmorpher.cpp | 433 + .../Alc/filters/{filter.c => biquad.cpp} | 140 +- love/src/jni/openal-soft/Alc/filters/biquad.h | 144 + love/src/jni/openal-soft/Alc/filters/defs.h | 112 - love/src/jni/openal-soft/Alc/filters/nfc.c | 426 - love/src/jni/openal-soft/Alc/filters/nfc.cpp | 383 + love/src/jni/openal-soft/Alc/filters/nfc.h | 58 +- .../jni/openal-soft/Alc/filters/splitter.c | 109 - .../jni/openal-soft/Alc/filters/splitter.cpp | 113 + .../jni/openal-soft/Alc/filters/splitter.h | 52 +- love/src/jni/openal-soft/Alc/fmt_traits.cpp | 79 + love/src/jni/openal-soft/Alc/fmt_traits.h | 81 + love/src/jni/openal-soft/Alc/fpu_ctrl.cpp | 54 + love/src/jni/openal-soft/Alc/fpu_ctrl.h | 25 + love/src/jni/openal-soft/Alc/fpu_modes.h | 34 - .../src/jni/openal-soft/Alc/front_stablizer.h | 36 + love/src/jni/openal-soft/Alc/helpers.c | 1189 - love/src/jni/openal-soft/Alc/helpers.cpp | 512 + love/src/jni/openal-soft/Alc/hrtf.c | 1465 - love/src/jni/openal-soft/Alc/hrtf.cpp | 1481 + love/src/jni/openal-soft/Alc/hrtf.h | 150 +- love/src/jni/openal-soft/Alc/inprogext.h | 74 +- love/src/jni/openal-soft/Alc/logging.h | 72 +- love/src/jni/openal-soft/Alc/mastering.c | 530 - love/src/jni/openal-soft/Alc/mastering.cpp | 443 + love/src/jni/openal-soft/Alc/mastering.h | 128 +- love/src/jni/openal-soft/Alc/mixer/defs.h | 131 +- love/src/jni/openal-soft/Alc/mixer/hrtf_inc.c | 128 - love/src/jni/openal-soft/Alc/mixer/hrtfbase.h | 160 + love/src/jni/openal-soft/Alc/mixer/mixer_c.c | 169 - .../src/jni/openal-soft/Alc/mixer/mixer_c.cpp | 196 + .../jni/openal-soft/Alc/mixer/mixer_neon.c | 283 - .../jni/openal-soft/Alc/mixer/mixer_neon.cpp | 293 + .../src/jni/openal-soft/Alc/mixer/mixer_sse.c | 250 - .../jni/openal-soft/Alc/mixer/mixer_sse.cpp | 266 + .../jni/openal-soft/Alc/mixer/mixer_sse2.c | 84 - .../jni/openal-soft/Alc/mixer/mixer_sse2.cpp | 85 + .../jni/openal-soft/Alc/mixer/mixer_sse3.cpp | 0 .../jni/openal-soft/Alc/mixer/mixer_sse41.c | 85 - .../jni/openal-soft/Alc/mixer/mixer_sse41.cpp | 90 + love/src/jni/openal-soft/Alc/mixvoice.c | 762 - love/src/jni/openal-soft/Alc/panning.c | 1239 - love/src/jni/openal-soft/Alc/panning.cpp | 1198 + love/src/jni/openal-soft/Alc/polymorphism.h | 105 - love/src/jni/openal-soft/Alc/ringbuffer.c | 295 - love/src/jni/openal-soft/Alc/ringbuffer.cpp | 236 + love/src/jni/openal-soft/Alc/ringbuffer.h | 156 +- love/src/jni/openal-soft/Alc/uhjfilter.c | 120 - love/src/jni/openal-soft/Alc/uhjfilter.cpp | 208 + love/src/jni/openal-soft/Alc/uhjfilter.h | 68 +- love/src/jni/openal-soft/Alc/uiddefs.cpp | 37 + love/src/jni/openal-soft/Alc/vector.h | 94 - love/src/jni/openal-soft/Alc/voice.cpp | 803 + love/src/jni/openal-soft/Alc/voice.h | 264 + love/src/jni/openal-soft/Android.mk | 283 +- love/src/jni/openal-soft/BSD-3Clause | 30 + love/src/jni/openal-soft/CMakeLists.txt | 2823 +- love/src/jni/openal-soft/ChangeLog | 174 + .../OpenAL32/Include/alAuxEffectSlot.h | 185 - .../openal-soft/OpenAL32/Include/alBuffer.h | 115 - .../openal-soft/OpenAL32/Include/alEffect.h | 213 - .../openal-soft/OpenAL32/Include/alError.h | 29 - .../openal-soft/OpenAL32/Include/alFilter.h | 67 - .../openal-soft/OpenAL32/Include/alListener.h | 67 - .../jni/openal-soft/OpenAL32/Include/alMain.h | 920 - .../openal-soft/OpenAL32/Include/alSource.h | 120 - .../jni/openal-soft/OpenAL32/Include/alu.h | 534 - .../openal-soft/OpenAL32/Include/sample_cvt.h | 15 - .../openal-soft/OpenAL32/alAuxEffectSlot.c | 802 - love/src/jni/openal-soft/OpenAL32/alBuffer.c | 1305 - love/src/jni/openal-soft/OpenAL32/alEffect.c | 819 - love/src/jni/openal-soft/OpenAL32/alFilter.c | 671 - .../src/jni/openal-soft/OpenAL32/alListener.c | 502 - love/src/jni/openal-soft/OpenAL32/alSource.c | 3705 - love/src/jni/openal-soft/OpenAL32/alState.c | 900 - love/src/jni/openal-soft/OpenAL32/event.c | 127 - .../src/jni/openal-soft/OpenAL32/sample_cvt.c | 276 - love/src/jni/openal-soft/XCompile-Android.txt | 48 +- love/src/jni/openal-soft/al/auxeffectslot.cpp | 954 + love/src/jni/openal-soft/al/auxeffectslot.h | 117 + love/src/jni/openal-soft/al/buffer.cpp | 1591 + love/src/jni/openal-soft/al/buffer.h | 74 + love/src/jni/openal-soft/al/effect.cpp | 745 + love/src/jni/openal-soft/al/effect.h | 64 + .../{OpenAL32/alError.c => al/error.cpp} | 87 +- love/src/jni/openal-soft/al/event.cpp | 199 + love/src/jni/openal-soft/al/event.h | 56 + .../alExtension.c => al/extension.cpp} | 64 +- love/src/jni/openal-soft/al/filter.cpp | 711 + love/src/jni/openal-soft/al/filter.h | 52 + love/src/jni/openal-soft/al/listener.cpp | 452 + love/src/jni/openal-soft/al/listener.h | 66 + love/src/jni/openal-soft/al/source.cpp | 3411 + love/src/jni/openal-soft/al/source.h | 133 + love/src/jni/openal-soft/al/state.cpp | 866 + love/src/jni/openal-soft/alsoftrc.sample | 100 +- love/src/jni/openal-soft/appveyor.yml | 16 +- love/src/jni/openal-soft/bsinc_inc.h | 2603 - .../openal-soft/cmake/CheckFileOffsetBits.c | 9 - .../cmake/CheckFileOffsetBits.cmake | 39 - .../cmake/CheckSharedFunctionExists.cmake | 92 - .../jni/openal-soft/cmake/FindDSound.cmake | 2 +- .../jni/openal-soft/cmake/FindFFmpeg.cmake | 14 +- .../jni/openal-soft/cmake/FindMySOFA.cmake | 81 + love/src/jni/openal-soft/cmake/FindOboe.cmake | 31 + .../jni/openal-soft/cmake/FindOpenSL.cmake | 64 + love/src/jni/openal-soft/cmake/FindQSA.cmake | 34 - .../jni/openal-soft/cmake/FindSDL_sound.cmake | 429 - .../jni/openal-soft/cmake/FindSndFile.cmake | 25 + .../openal-soft/cmake/FindWindowsSDK.cmake | 16 +- .../jni/openal-soft/cmake/bin2h.script.cmake | 13 + love/src/jni/openal-soft/common/albyte.h | 111 + love/src/jni/openal-soft/common/alcomplex.c | 92 - love/src/jni/openal-soft/common/alcomplex.cpp | 69 + love/src/jni/openal-soft/common/alcomplex.h | 79 +- love/src/jni/openal-soft/common/alexcpt.cpp | 31 + love/src/jni/openal-soft/common/alexcpt.h | 35 + love/src/jni/openal-soft/common/alfstream.cpp | 147 + love/src/jni/openal-soft/common/alfstream.h | 70 + love/src/jni/openal-soft/common/align.h | 21 - love/src/jni/openal-soft/common/almalloc.c | 110 - love/src/jni/openal-soft/common/almalloc.cpp | 64 + love/src/jni/openal-soft/common/almalloc.h | 248 +- love/src/jni/openal-soft/common/alnumeric.h | 360 + love/src/jni/openal-soft/common/aloptional.h | 149 + love/src/jni/openal-soft/common/alspan.h | 315 + love/src/jni/openal-soft/common/alstring.cpp | 45 + love/src/jni/openal-soft/common/alstring.h | 30 + love/src/jni/openal-soft/common/atomic.c | 10 - love/src/jni/openal-soft/common/atomic.h | 442 +- love/src/jni/openal-soft/common/bool.h | 18 - love/src/jni/openal-soft/common/dynload.cpp | 44 + love/src/jni/openal-soft/common/dynload.h | 14 + love/src/jni/openal-soft/common/endiantest.h | 14 + .../jni/openal-soft/common/intrusive_ptr.h | 120 + love/src/jni/openal-soft/common/math_defs.h | 69 +- love/src/jni/openal-soft/common/opthelpers.h | 39 + .../common/polyphase_resampler.cpp | 222 + .../openal-soft/common/polyphase_resampler.h | 45 + love/src/jni/openal-soft/common/pragmadefs.h | 21 + love/src/jni/openal-soft/common/rwlock.c | 59 - love/src/jni/openal-soft/common/rwlock.h | 31 - .../jni/openal-soft/common/static_assert.h | 21 - love/src/jni/openal-soft/common/strutils.cpp | 62 + love/src/jni/openal-soft/common/strutils.h | 24 + love/src/jni/openal-soft/common/threads.c | 716 - love/src/jni/openal-soft/common/threads.cpp | 176 + love/src/jni/openal-soft/common/threads.h | 266 +- love/src/jni/openal-soft/common/uintmap.c | 182 - love/src/jni/openal-soft/common/uintmap.h | 41 - love/src/jni/openal-soft/common/vecmat.h | 85 + love/src/jni/openal-soft/common/vector.h | 15 + .../jni/openal-soft/common/win_main_utf8.h | 110 +- love/src/jni/openal-soft/config.h | 202 +- love/src/jni/openal-soft/config.h.in | 119 +- love/src/jni/openal-soft/docs/ambisonics.txt | 39 +- love/src/jni/openal-soft/docs/env-vars.txt | 13 - love/src/jni/openal-soft/docs/hrtf.txt | 51 +- .../src/jni/openal-soft/examples/alconvolve.c | 594 + .../src/jni/openal-soft/examples/alffplay.cpp | 1858 +- love/src/jni/openal-soft/examples/alhrtf.c | 116 +- love/src/jni/openal-soft/examples/allatency.c | 127 +- .../src/jni/openal-soft/examples/alloopback.c | 17 +- .../jni/openal-soft/examples/almultireverb.c | 200 +- love/src/jni/openal-soft/examples/alplay.c | 101 +- love/src/jni/openal-soft/examples/alrecord.c | 49 +- love/src/jni/openal-soft/examples/alreverb.c | 151 +- love/src/jni/openal-soft/examples/alstream.c | 138 +- .../jni/openal-soft/examples/alstreamcb.cpp | 404 + love/src/jni/openal-soft/examples/altonegen.c | 17 +- .../openal-soft/examples/common/alhelpers.c | 89 +- .../openal-soft/examples/common/alhelpers.h | 14 +- .../src/jni/openal-soft/hrtf/Default HRTF.mhr | Bin 0 -> 80353 bytes .../jni/openal-soft/hrtf/default-44100.mhr | Bin 80354 -> 0 bytes .../jni/openal-soft/hrtf/default-48000.mhr | Bin 80354 -> 0 bytes love/src/jni/openal-soft/hrtf_default.h | 80355 ++++++++++++++++ love/src/jni/openal-soft/include/AL/al.h | 63 +- love/src/jni/openal-soft/include/AL/alc.h | 79 +- love/src/jni/openal-soft/include/AL/alext.h | 85 +- love/src/jni/openal-soft/include/AL/efx.h | 61 +- .../openal-soft/native-tools/CMakeLists.txt | 29 - love/src/jni/openal-soft/native-tools/bin2h.c | 100 - .../jni/openal-soft/native-tools/bsincgen.c | 367 - love/src/jni/openal-soft/opensl_latency.cpp | 21 + .../src/jni/openal-soft/resources/openal32.rc | 90 + love/src/jni/openal-soft/resources/resource.h | 15 + love/src/jni/openal-soft/resources/router.rc | 90 + .../src/jni/openal-soft/resources/soft_oal.rc | 90 + .../jni/openal-soft/router/{al.c => al.cpp} | 26 +- .../jni/openal-soft/router/{alc.c => alc.cpp} | 516 +- .../router/{router.c => router.cpp} | 362 +- love/src/jni/openal-soft/router/router.h | 267 +- love/src/jni/openal-soft/utils/CIAIR.def | 4 +- love/src/jni/openal-soft/utils/IRC_1005.def | 4 +- love/src/jni/openal-soft/utils/MIT_KEMAR.def | 10 +- .../jni/openal-soft/utils/MIT_KEMAR_sofa.def | 51 + love/src/jni/openal-soft/utils/SCUT_KEMAR.def | 48 + .../utils/alsoft-config/CMakeLists.txt | 61 +- .../utils/alsoft-config/mainwindow.cpp | 632 +- .../utils/alsoft-config/mainwindow.h | 1 + .../utils/alsoft-config/mainwindow.ui | 311 +- .../utils/alsoft-config/verstr.cpp | 10 + .../openal-soft/utils/alsoft-config/verstr.h | 8 + love/src/jni/openal-soft/utils/bsincgen.c | 404 - love/src/jni/openal-soft/utils/makehrtf.c | 3455 - .../jni/openal-soft/utils/makemhr/loaddef.cpp | 2026 + .../jni/openal-soft/utils/makemhr/loaddef.h | 13 + .../openal-soft/utils/makemhr/loadsofa.cpp | 568 + .../jni/openal-soft/utils/makemhr/loadsofa.h | 10 + .../jni/openal-soft/utils/makemhr/makemhr.cpp | 1681 + .../jni/openal-soft/utils/makemhr/makemhr.h | 120 + love/src/jni/openal-soft/utils/openal-info.c | 14 +- love/src/jni/openal-soft/utils/sofa-info.cpp | 139 + .../jni/openal-soft/utils/sofa-support.cpp | 292 + love/src/jni/openal-soft/utils/sofa-support.h | 30 + love/src/jni/openal-soft/version.h | 7 +- love/src/jni/openal-soft/version.h.in | 1 + 1544 files changed, 266546 insertions(+), 62914 deletions(-) create mode 100644 love/src/jni/oboe/.gitignore create mode 100644 love/src/jni/oboe/.travis.yml create mode 100644 love/src/jni/oboe/AUTHORS create mode 100644 love/src/jni/oboe/Android.mk create mode 100644 love/src/jni/oboe/CMakeLists.txt create mode 100644 love/src/jni/oboe/CONTRIBUTING create mode 100644 love/src/jni/oboe/CONTRIBUTING.md create mode 100644 love/src/jni/oboe/CONTRIBUTORS create mode 100644 love/src/jni/oboe/Doxyfile create mode 100644 love/src/jni/oboe/LICENSE create mode 100644 love/src/jni/oboe/README create mode 100644 love/src/jni/oboe/README.md create mode 100644 love/src/jni/oboe/apps/OboeTester/.gitignore create mode 100644 love/src/jni/oboe/apps/OboeTester/.google/packaging.yaml create mode 100644 love/src/jni/oboe/apps/OboeTester/README.md create mode 100644 love/src/jni/oboe/apps/OboeTester/app/CMakeLists.txt create mode 100644 love/src/jni/oboe/apps/OboeTester/app/build.gradle create mode 100644 love/src/jni/oboe/apps/OboeTester/app/gradle/wrapper/gradle-wrapper.jar create mode 100644 love/src/jni/oboe/apps/OboeTester/app/gradle/wrapper/gradle-wrapper.properties create mode 100644 love/src/jni/oboe/apps/OboeTester/app/gradlew create mode 100644 love/src/jni/oboe/apps/OboeTester/app/gradlew.bat create mode 100644 love/src/jni/oboe/apps/OboeTester/app/proguard-rules.pro create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/AndroidManifest.xml create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/AudioStreamGateway.cpp create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/AudioStreamGateway.h create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/FullDuplexAnalyzer.cpp create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/FullDuplexAnalyzer.h create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/FullDuplexEcho.cpp create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/FullDuplexEcho.h create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/FullDuplexGlitches.cpp create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/FullDuplexGlitches.h create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/FullDuplexLatency.cpp create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/FullDuplexLatency.h create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/FullDuplexStream.cpp create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/FullDuplexStream.h create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/InputStreamCallbackAnalyzer.cpp create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/InputStreamCallbackAnalyzer.h create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/InterpolatingDelayLine.cpp create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/InterpolatingDelayLine.h create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/MultiChannelRecording.h create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/NativeAudioContext.cpp create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/NativeAudioContext.h create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/OboeStreamCallbackProxy.cpp create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/OboeStreamCallbackProxy.h create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/PlayRecordingCallback.cpp create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/PlayRecordingCallback.h create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/SawPingGenerator.cpp create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/SawPingGenerator.h create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/analyzer/GlitchAnalyzer.h create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/analyzer/InfiniteRecording.h create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/analyzer/LatencyAnalyzer.h create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/analyzer/ManchesterEncoder.h create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/analyzer/PeakDetector.h create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/analyzer/PseudoRandom.h create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/analyzer/RandomPulseGenerator.h create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/analyzer/RoundedManchesterEncoder.h create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/android_debug.h create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/flowunits/ExponentialShape.cpp create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/flowunits/ExponentialShape.h create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/flowunits/ImpulseOscillator.cpp create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/flowunits/ImpulseOscillator.h create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/flowunits/LinearShape.cpp create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/flowunits/LinearShape.h create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/flowunits/OscillatorBase.cpp create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/flowunits/OscillatorBase.h create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/flowunits/SawtoothOscillator.cpp create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/flowunits/SawtoothOscillator.h create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/flowunits/SineOscillator.cpp create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/flowunits/SineOscillator.h create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/flowunits/TriangleOscillator.cpp create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/flowunits/TriangleOscillator.h create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/jni-bridge.cpp create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/unused/unused.h create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/util/WaveFileWriter.cpp create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/cpp/util/WaveFileWriter.h create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/audio_device/AudioDeviceAdapter.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/audio_device/AudioDeviceInfoConverter.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/audio_device/AudioDeviceListEntry.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/audio_device/AudioDeviceSpinner.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/AnalyzerActivity.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/AudioInputTester.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/AudioMidiTester.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/AudioOutputTester.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/AudioRecordThread.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/AudioStreamBase.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/AudioStreamTester.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/AutoGlitchActivity.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/BufferSizeView.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/CircularCaptureBuffer.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/EchoActivity.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/ExponentialTaper.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/FastButton.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/GlitchActivity.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/InputMarginView.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/MainActivity.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/ManualGlitchActivity.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/NativeEngine.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/OboeAudioInputStream.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/OboeAudioOutputStream.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/OboeAudioStream.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/RecorderActivity.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/RoundTripLatencyActivity.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/StreamConfiguration.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/StreamConfigurationView.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/TapLatencyAnalyser.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/TapToToneActivity.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/TestAudioActivity.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/TestDisconnectActivity.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/TestInputActivity.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/TestOutputActivity.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/TestOutputActivityBase.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/VolumeBarView.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/WaveformView.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/WorkloadView.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/EventScheduler.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/MidiConstants.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/MidiDeviceMonitor.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/MidiDispatcher.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/MidiEventScheduler.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/MidiEventThread.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/MidiFramer.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/MidiInputPortSelector.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/MidiOutputPortConnectionSelector.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/MidiOutputPortSelector.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/MidiPortConnector.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/MidiPortSelector.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/MidiPortWrapper.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/MidiTools.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/MusicKeyboardView.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/synth/AudioLatencyTuner.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/synth/EnvelopeADSR.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/synth/LatencyController.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/synth/SawOscillator.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/synth/SawOscillatorDPW.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/synth/SawVoice.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/synth/SimpleAudioOutput.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/synth/SineOscillator.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/synth/SineVoice.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/synth/SynthEngine.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/synth/SynthUnit.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/synth/SynthVoice.java create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/drawable/button_shape.xml create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/layout/activity_auto_glitches.xml create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/layout/activity_echo.xml create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/layout/activity_main.xml create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/layout/activity_manual_glitches.xml create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/layout/activity_recorder.xml create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/layout/activity_rt_latency.xml create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/layout/activity_tap_to_tone.xml create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/layout/activity_test_disconnect.xml create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/layout/activity_test_input.xml create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/layout/activity_test_output.xml create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/layout/audio_devices.xml create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/layout/buffer_size_view.xml create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/layout/input_margin_view.xml create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/layout/merge_audio_common.xml create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/layout/sample_fast_button.xml create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/layout/stream_config.xml create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/layout/workload_view.xml create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/menu/menu_main.xml create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/values-v21/styles.xml create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/values-w600dp/dimens.xml create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/values/arrays.xml create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/values/attrs_fast_button.xml create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/values/attrs_waveform.xml create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/values/colors.xml create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/values/dimens.xml create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/values/strings.xml create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/values/styles.xml create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/xml/provider_paths.xml create mode 100644 love/src/jni/oboe/apps/OboeTester/app/src/main/res/xml/service_device_info.xml create mode 100644 love/src/jni/oboe/apps/OboeTester/build.gradle create mode 100644 love/src/jni/oboe/apps/OboeTester/docs/AutomatedTesting.md create mode 100644 love/src/jni/oboe/apps/OboeTester/docs/Build.md create mode 100644 love/src/jni/oboe/apps/OboeTester/docs/README.md create mode 100644 love/src/jni/oboe/apps/OboeTester/docs/Usage.md create mode 100644 love/src/jni/oboe/apps/OboeTester/docs/images/auto_glitch_test.png create mode 100644 love/src/jni/oboe/apps/OboeTester/docs/images/echo_input_output.png create mode 100644 love/src/jni/oboe/apps/OboeTester/docs/images/main_activity.png create mode 100644 love/src/jni/oboe/apps/OboeTester/docs/images/recorder.png create mode 100644 love/src/jni/oboe/apps/OboeTester/docs/images/round_trip_latency.png create mode 100644 love/src/jni/oboe/apps/OboeTester/docs/images/tap_to_tone.png create mode 100644 love/src/jni/oboe/apps/OboeTester/docs/images/test_glitches.png create mode 100644 love/src/jni/oboe/apps/OboeTester/docs/images/test_input.png create mode 100644 love/src/jni/oboe/apps/OboeTester/docs/images/test_output.png create mode 100644 love/src/jni/oboe/apps/OboeTester/docs/images/test_output_running.png create mode 100644 love/src/jni/oboe/apps/OboeTester/gradle.properties create mode 100644 love/src/jni/oboe/apps/OboeTester/gradle/wrapper/gradle-wrapper.jar create mode 100644 love/src/jni/oboe/apps/OboeTester/gradle/wrapper/gradle-wrapper.properties create mode 100644 love/src/jni/oboe/apps/OboeTester/gradlew create mode 100644 love/src/jni/oboe/apps/OboeTester/gradlew.bat create mode 100644 love/src/jni/oboe/apps/OboeTester/scripts/dsp_timing.py create mode 100644 love/src/jni/oboe/apps/OboeTester/settings.gradle create mode 100644 love/src/jni/oboe/apps/fxlab/.gitignore create mode 100644 love/src/jni/oboe/apps/fxlab/CONTRIBUTING.md create mode 100644 love/src/jni/oboe/apps/fxlab/LICENSE create mode 100644 love/src/jni/oboe/apps/fxlab/README.md create mode 100644 love/src/jni/oboe/apps/fxlab/app/.gitignore create mode 100644 love/src/jni/oboe/apps/fxlab/app/CMakeLists.txt create mode 100644 love/src/jni/oboe/apps/fxlab/app/build.gradle create mode 100644 love/src/jni/oboe/apps/fxlab/app/proguard-rules.pro create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/AndroidManifest.xml create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/DuplexCallback.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/DuplexEngine.cpp create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/DuplexEngine.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/FunctionList.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/effects/CombFilter.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/effects/DelayLineEffect.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/effects/DoublingEffect.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/effects/DriveControl.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/effects/EchoEffect.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/effects/Effects.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/effects/FlangerEffect.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/effects/SingleFunctionEffects.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/effects/SlapbackEffect.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/effects/TremoloEffect.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/effects/VibratroEffect.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/effects/WhiteChorusEffect.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/effects/descrip/AllPassDescription.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/effects/descrip/DistortionDescription.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/effects/descrip/DoublingDescription.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/effects/descrip/EchoDescription.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/effects/descrip/EffectDescription.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/effects/descrip/FIRDescription.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/effects/descrip/FlangerDescription.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/effects/descrip/GainDescription.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/effects/descrip/IIRDescription.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/effects/descrip/OverdriveDescription.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/effects/descrip/PassthroughDescription.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/effects/descrip/SlapbackDescription.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/effects/descrip/TremoloDescription.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/effects/descrip/VibratoDescription.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/effects/descrip/WhiteChorusDescription.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/effects/utils/DelayLine.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/effects/utils/PhaseAccumulator.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/effects/utils/SineWave.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/effects/utils/WhiteNoise.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/logging_macros.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/native-lib.cpp create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/tests/.gitignore create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/tests/CMakeLists.txt create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/tests/DelayLineEffectTest.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/tests/DelayLineTest.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/tests/TypeTests.h create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/cpp/tests/testEffects.cpp create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/java/com/mobileer/androidfxlab/EffectsAdapter.kt create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/java/com/mobileer/androidfxlab/MainActivity.kt create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/java/com/mobileer/androidfxlab/NativeInterface.kt create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/java/com/mobileer/androidfxlab/datatype/Effect.kt create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/java/com/mobileer/androidfxlab/datatype/EffectDescription.kt create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/java/com/mobileer/androidfxlab/datatype/ParamDescription.kt create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/res/drawable-v24/ic_launcher_foreground.xml create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/res/drawable/ic_add.xml create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/res/drawable/ic_baseline_audio_is_disabled_24.xml create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/res/drawable/ic_baseline_audio_is_enabled_24.xml create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/res/drawable/ic_baseline_drag_indicator.xml create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/res/drawable/ic_launcher_background.xml create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/res/layout/activity_main.xml create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/res/layout/effect_header.xml create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/res/layout/effect_view.xml create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/res/layout/param_seek.xml create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/res/menu/add_menu.xml create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/res/menu/toolbar_menu.xml create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/res/mipmap-hdpi/ic_launcher_round.png create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/res/mipmap-mdpi/ic_launcher_round.png create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/res/values/colors.xml create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/res/values/strings.xml create mode 100644 love/src/jni/oboe/apps/fxlab/app/src/main/res/values/styles.xml create mode 100644 love/src/jni/oboe/apps/fxlab/build.gradle create mode 100644 love/src/jni/oboe/apps/fxlab/docs/Dev-Guide.md create mode 100644 love/src/jni/oboe/apps/fxlab/docs/Presentation.pdf create mode 100644 love/src/jni/oboe/apps/fxlab/docs/README.md create mode 100644 love/src/jni/oboe/apps/fxlab/gradle.properties create mode 100644 love/src/jni/oboe/apps/fxlab/gradle/wrapper/gradle-wrapper.jar create mode 100644 love/src/jni/oboe/apps/fxlab/gradle/wrapper/gradle-wrapper.properties create mode 100644 love/src/jni/oboe/apps/fxlab/gradlew create mode 100644 love/src/jni/oboe/apps/fxlab/gradlew.bat create mode 100644 love/src/jni/oboe/apps/fxlab/screenshot.png create mode 100644 love/src/jni/oboe/apps/fxlab/settings.gradle create mode 100644 love/src/jni/oboe/build_all_android.sh rename love/src/jni/{openal-soft/Alc/mixer/mixer_sse3.c => oboe/docs/.nojekyll} (100%) create mode 100644 love/src/jni/oboe/docs/AndroidAudioHistory.md create mode 100644 love/src/jni/oboe/docs/AppsUsingOboe.md create mode 100644 love/src/jni/oboe/docs/ChangeLog.md create mode 100644 love/src/jni/oboe/docs/FAQ.md create mode 100644 love/src/jni/oboe/docs/FullGuide.md create mode 100644 love/src/jni/oboe/docs/GettingStarted.md create mode 100644 love/src/jni/oboe/docs/README.md create mode 100644 love/src/jni/oboe/docs/images/cmakelists-location-in-as.png create mode 100644 love/src/jni/oboe/docs/images/getting-started-video.jpg create mode 100644 love/src/jni/oboe/docs/images/oboe-lifecycle.png create mode 100644 love/src/jni/oboe/docs/images/oboe-sharing-mode-exclusive.jpg create mode 100644 love/src/jni/oboe/docs/images/oboe-sharing-mode-shared.jpg create mode 100644 love/src/jni/oboe/docs/index.html create mode 100644 love/src/jni/oboe/docs/index.md create mode 100644 love/src/jni/oboe/docs/notes/README.md create mode 100644 love/src/jni/oboe/docs/notes/disconnect.md create mode 100644 love/src/jni/oboe/docs/notes/effects.md create mode 100644 love/src/jni/oboe/docs/notes/rlsbuffer.md create mode 100644 love/src/jni/oboe/docs/reference/_audio_stream_8h_source.html create mode 100644 love/src/jni/oboe/docs/reference/_audio_stream_base_8h_source.html create mode 100644 love/src/jni/oboe/docs/reference/_audio_stream_builder_8h_source.html create mode 100644 love/src/jni/oboe/docs/reference/_audio_stream_callback_8h_source.html create mode 100644 love/src/jni/oboe/docs/reference/_definitions_8h_source.html create mode 100644 love/src/jni/oboe/docs/reference/_latency_tuner_8h_source.html create mode 100644 love/src/jni/oboe/docs/reference/_oboe_8h_source.html create mode 100644 love/src/jni/oboe/docs/reference/_result_with_value_8h_source.html create mode 100644 love/src/jni/oboe/docs/reference/_stabilized_callback_8h_source.html create mode 100644 love/src/jni/oboe/docs/reference/_utilities_8h_source.html create mode 100644 love/src/jni/oboe/docs/reference/_version_8h_source.html create mode 100644 love/src/jni/oboe/docs/reference/annotated.html create mode 100644 love/src/jni/oboe/docs/reference/bc_s.png create mode 100644 love/src/jni/oboe/docs/reference/bdwn.png create mode 100644 love/src/jni/oboe/docs/reference/classes.html create mode 100644 love/src/jni/oboe/docs/reference/classoboe_1_1_audio_stream-members.html create mode 100644 love/src/jni/oboe/docs/reference/classoboe_1_1_audio_stream.html create mode 100644 love/src/jni/oboe/docs/reference/classoboe_1_1_audio_stream.png create mode 100644 love/src/jni/oboe/docs/reference/classoboe_1_1_audio_stream_base-members.html create mode 100644 love/src/jni/oboe/docs/reference/classoboe_1_1_audio_stream_base.html create mode 100644 love/src/jni/oboe/docs/reference/classoboe_1_1_audio_stream_base.png create mode 100644 love/src/jni/oboe/docs/reference/classoboe_1_1_audio_stream_builder-members.html create mode 100644 love/src/jni/oboe/docs/reference/classoboe_1_1_audio_stream_builder.html create mode 100644 love/src/jni/oboe/docs/reference/classoboe_1_1_audio_stream_builder.png create mode 100644 love/src/jni/oboe/docs/reference/classoboe_1_1_audio_stream_callback-members.html create mode 100644 love/src/jni/oboe/docs/reference/classoboe_1_1_audio_stream_callback.html create mode 100644 love/src/jni/oboe/docs/reference/classoboe_1_1_audio_stream_callback.png create mode 100644 love/src/jni/oboe/docs/reference/classoboe_1_1_default_stream_values-members.html create mode 100644 love/src/jni/oboe/docs/reference/classoboe_1_1_default_stream_values.html create mode 100644 love/src/jni/oboe/docs/reference/classoboe_1_1_latency_tuner-members.html create mode 100644 love/src/jni/oboe/docs/reference/classoboe_1_1_latency_tuner.html create mode 100644 love/src/jni/oboe/docs/reference/classoboe_1_1_result_with_value-members.html create mode 100644 love/src/jni/oboe/docs/reference/classoboe_1_1_result_with_value.html create mode 100644 love/src/jni/oboe/docs/reference/classoboe_1_1_stabilized_callback-members.html create mode 100644 love/src/jni/oboe/docs/reference/classoboe_1_1_stabilized_callback.html create mode 100644 love/src/jni/oboe/docs/reference/classoboe_1_1_stabilized_callback.png create mode 100644 love/src/jni/oboe/docs/reference/closed.png create mode 100644 love/src/jni/oboe/docs/reference/deprecated.html create mode 100644 love/src/jni/oboe/docs/reference/dir_768f6301d9838e45d679001914ab2803.html create mode 100644 love/src/jni/oboe/docs/reference/dir_d44c64559bbebec7f509842c48db8b23.html create mode 100644 love/src/jni/oboe/docs/reference/doc.png create mode 100644 love/src/jni/oboe/docs/reference/doxygen.css create mode 100644 love/src/jni/oboe/docs/reference/doxygen.png create mode 100644 love/src/jni/oboe/docs/reference/dynsections.js create mode 100644 love/src/jni/oboe/docs/reference/files.html create mode 100644 love/src/jni/oboe/docs/reference/folderclosed.png create mode 100644 love/src/jni/oboe/docs/reference/folderopen.png create mode 100644 love/src/jni/oboe/docs/reference/functions.html create mode 100644 love/src/jni/oboe/docs/reference/functions_func.html create mode 100644 love/src/jni/oboe/docs/reference/functions_vars.html create mode 100644 love/src/jni/oboe/docs/reference/hierarchy.html create mode 100644 love/src/jni/oboe/docs/reference/index.html create mode 100644 love/src/jni/oboe/docs/reference/jquery.js create mode 100644 love/src/jni/oboe/docs/reference/menu.js create mode 100644 love/src/jni/oboe/docs/reference/menudata.js create mode 100644 love/src/jni/oboe/docs/reference/namespacemembers.html create mode 100644 love/src/jni/oboe/docs/reference/namespacemembers_enum.html create mode 100644 love/src/jni/oboe/docs/reference/namespacemembers_eval.html create mode 100644 love/src/jni/oboe/docs/reference/namespacemembers_func.html create mode 100644 love/src/jni/oboe/docs/reference/namespacemembers_vars.html create mode 100644 love/src/jni/oboe/docs/reference/namespaceoboe.html create mode 100644 love/src/jni/oboe/docs/reference/namespaces.html create mode 100644 love/src/jni/oboe/docs/reference/nav_f.png create mode 100644 love/src/jni/oboe/docs/reference/nav_g.png create mode 100644 love/src/jni/oboe/docs/reference/nav_h.png create mode 100644 love/src/jni/oboe/docs/reference/open.png create mode 100644 love/src/jni/oboe/docs/reference/pages.html create mode 100644 love/src/jni/oboe/docs/reference/search/all_0.html create mode 100644 love/src/jni/oboe/docs/reference/search/all_0.js create mode 100644 love/src/jni/oboe/docs/reference/search/all_1.html create mode 100644 love/src/jni/oboe/docs/reference/search/all_1.js create mode 100644 love/src/jni/oboe/docs/reference/search/all_10.html create mode 100644 love/src/jni/oboe/docs/reference/search/all_10.js create mode 100644 love/src/jni/oboe/docs/reference/search/all_11.html create mode 100644 love/src/jni/oboe/docs/reference/search/all_11.js create mode 100644 love/src/jni/oboe/docs/reference/search/all_12.html create mode 100644 love/src/jni/oboe/docs/reference/search/all_12.js create mode 100644 love/src/jni/oboe/docs/reference/search/all_13.html create mode 100644 love/src/jni/oboe/docs/reference/search/all_13.js create mode 100644 love/src/jni/oboe/docs/reference/search/all_2.html create mode 100644 love/src/jni/oboe/docs/reference/search/all_2.js create mode 100644 love/src/jni/oboe/docs/reference/search/all_3.html create mode 100644 love/src/jni/oboe/docs/reference/search/all_3.js create mode 100644 love/src/jni/oboe/docs/reference/search/all_4.html create mode 100644 love/src/jni/oboe/docs/reference/search/all_4.js create mode 100644 love/src/jni/oboe/docs/reference/search/all_5.html create mode 100644 love/src/jni/oboe/docs/reference/search/all_5.js create mode 100644 love/src/jni/oboe/docs/reference/search/all_6.html create mode 100644 love/src/jni/oboe/docs/reference/search/all_6.js create mode 100644 love/src/jni/oboe/docs/reference/search/all_7.html create mode 100644 love/src/jni/oboe/docs/reference/search/all_7.js create mode 100644 love/src/jni/oboe/docs/reference/search/all_8.html create mode 100644 love/src/jni/oboe/docs/reference/search/all_8.js create mode 100644 love/src/jni/oboe/docs/reference/search/all_9.html create mode 100644 love/src/jni/oboe/docs/reference/search/all_9.js create mode 100644 love/src/jni/oboe/docs/reference/search/all_a.html create mode 100644 love/src/jni/oboe/docs/reference/search/all_a.js create mode 100644 love/src/jni/oboe/docs/reference/search/all_b.html create mode 100644 love/src/jni/oboe/docs/reference/search/all_b.js create mode 100644 love/src/jni/oboe/docs/reference/search/all_c.html create mode 100644 love/src/jni/oboe/docs/reference/search/all_c.js create mode 100644 love/src/jni/oboe/docs/reference/search/all_d.html create mode 100644 love/src/jni/oboe/docs/reference/search/all_d.js create mode 100644 love/src/jni/oboe/docs/reference/search/all_e.html create mode 100644 love/src/jni/oboe/docs/reference/search/all_e.js create mode 100644 love/src/jni/oboe/docs/reference/search/all_f.html create mode 100644 love/src/jni/oboe/docs/reference/search/all_f.js create mode 100644 love/src/jni/oboe/docs/reference/search/classes_0.html create mode 100644 love/src/jni/oboe/docs/reference/search/classes_0.js create mode 100644 love/src/jni/oboe/docs/reference/search/classes_1.html create mode 100644 love/src/jni/oboe/docs/reference/search/classes_1.js create mode 100644 love/src/jni/oboe/docs/reference/search/classes_2.html create mode 100644 love/src/jni/oboe/docs/reference/search/classes_2.js create mode 100644 love/src/jni/oboe/docs/reference/search/classes_3.html create mode 100644 love/src/jni/oboe/docs/reference/search/classes_3.js create mode 100644 love/src/jni/oboe/docs/reference/search/classes_4.html create mode 100644 love/src/jni/oboe/docs/reference/search/classes_4.js create mode 100644 love/src/jni/oboe/docs/reference/search/classes_5.html create mode 100644 love/src/jni/oboe/docs/reference/search/classes_5.js create mode 100644 love/src/jni/oboe/docs/reference/search/classes_6.html create mode 100644 love/src/jni/oboe/docs/reference/search/classes_6.js create mode 100644 love/src/jni/oboe/docs/reference/search/close.png create mode 100644 love/src/jni/oboe/docs/reference/search/enums_0.html create mode 100644 love/src/jni/oboe/docs/reference/search/enums_0.js create mode 100644 love/src/jni/oboe/docs/reference/search/enums_1.html create mode 100644 love/src/jni/oboe/docs/reference/search/enums_1.js create mode 100644 love/src/jni/oboe/docs/reference/search/enums_2.html create mode 100644 love/src/jni/oboe/docs/reference/search/enums_2.js create mode 100644 love/src/jni/oboe/docs/reference/search/enums_3.html create mode 100644 love/src/jni/oboe/docs/reference/search/enums_3.js create mode 100644 love/src/jni/oboe/docs/reference/search/enums_4.html create mode 100644 love/src/jni/oboe/docs/reference/search/enums_4.js create mode 100644 love/src/jni/oboe/docs/reference/search/enums_5.html create mode 100644 love/src/jni/oboe/docs/reference/search/enums_5.js create mode 100644 love/src/jni/oboe/docs/reference/search/enums_6.html create mode 100644 love/src/jni/oboe/docs/reference/search/enums_6.js create mode 100644 love/src/jni/oboe/docs/reference/search/enums_7.html create mode 100644 love/src/jni/oboe/docs/reference/search/enums_7.js create mode 100644 love/src/jni/oboe/docs/reference/search/enumvalues_0.html create mode 100644 love/src/jni/oboe/docs/reference/search/enumvalues_0.js create mode 100644 love/src/jni/oboe/docs/reference/search/enumvalues_1.html create mode 100644 love/src/jni/oboe/docs/reference/search/enumvalues_1.js create mode 100644 love/src/jni/oboe/docs/reference/search/enumvalues_2.html create mode 100644 love/src/jni/oboe/docs/reference/search/enumvalues_2.js create mode 100644 love/src/jni/oboe/docs/reference/search/enumvalues_3.html create mode 100644 love/src/jni/oboe/docs/reference/search/enumvalues_3.js create mode 100644 love/src/jni/oboe/docs/reference/search/enumvalues_4.html create mode 100644 love/src/jni/oboe/docs/reference/search/enumvalues_4.js create mode 100644 love/src/jni/oboe/docs/reference/search/enumvalues_5.html create mode 100644 love/src/jni/oboe/docs/reference/search/enumvalues_5.js create mode 100644 love/src/jni/oboe/docs/reference/search/enumvalues_6.html create mode 100644 love/src/jni/oboe/docs/reference/search/enumvalues_6.js create mode 100644 love/src/jni/oboe/docs/reference/search/enumvalues_7.html create mode 100644 love/src/jni/oboe/docs/reference/search/enumvalues_7.js create mode 100644 love/src/jni/oboe/docs/reference/search/enumvalues_8.html create mode 100644 love/src/jni/oboe/docs/reference/search/enumvalues_8.js create mode 100644 love/src/jni/oboe/docs/reference/search/enumvalues_9.html create mode 100644 love/src/jni/oboe/docs/reference/search/enumvalues_9.js create mode 100644 love/src/jni/oboe/docs/reference/search/enumvalues_a.html create mode 100644 love/src/jni/oboe/docs/reference/search/enumvalues_a.js create mode 100644 love/src/jni/oboe/docs/reference/search/enumvalues_b.html create mode 100644 love/src/jni/oboe/docs/reference/search/enumvalues_b.js create mode 100644 love/src/jni/oboe/docs/reference/search/enumvalues_c.html create mode 100644 love/src/jni/oboe/docs/reference/search/enumvalues_c.js create mode 100644 love/src/jni/oboe/docs/reference/search/enumvalues_d.html create mode 100644 love/src/jni/oboe/docs/reference/search/enumvalues_d.js create mode 100644 love/src/jni/oboe/docs/reference/search/enumvalues_e.html create mode 100644 love/src/jni/oboe/docs/reference/search/enumvalues_e.js create mode 100644 love/src/jni/oboe/docs/reference/search/functions_0.html create mode 100644 love/src/jni/oboe/docs/reference/search/functions_0.js create mode 100644 love/src/jni/oboe/docs/reference/search/functions_1.html create mode 100644 love/src/jni/oboe/docs/reference/search/functions_1.js create mode 100644 love/src/jni/oboe/docs/reference/search/functions_2.html create mode 100644 love/src/jni/oboe/docs/reference/search/functions_2.js create mode 100644 love/src/jni/oboe/docs/reference/search/functions_3.html create mode 100644 love/src/jni/oboe/docs/reference/search/functions_3.js create mode 100644 love/src/jni/oboe/docs/reference/search/functions_4.html create mode 100644 love/src/jni/oboe/docs/reference/search/functions_4.js create mode 100644 love/src/jni/oboe/docs/reference/search/functions_5.html create mode 100644 love/src/jni/oboe/docs/reference/search/functions_5.js create mode 100644 love/src/jni/oboe/docs/reference/search/functions_6.html create mode 100644 love/src/jni/oboe/docs/reference/search/functions_6.js create mode 100644 love/src/jni/oboe/docs/reference/search/functions_7.html create mode 100644 love/src/jni/oboe/docs/reference/search/functions_7.js create mode 100644 love/src/jni/oboe/docs/reference/search/functions_8.html create mode 100644 love/src/jni/oboe/docs/reference/search/functions_8.js create mode 100644 love/src/jni/oboe/docs/reference/search/functions_9.html create mode 100644 love/src/jni/oboe/docs/reference/search/functions_9.js create mode 100644 love/src/jni/oboe/docs/reference/search/functions_a.html create mode 100644 love/src/jni/oboe/docs/reference/search/functions_a.js create mode 100644 love/src/jni/oboe/docs/reference/search/functions_b.html create mode 100644 love/src/jni/oboe/docs/reference/search/functions_b.js create mode 100644 love/src/jni/oboe/docs/reference/search/functions_c.html create mode 100644 love/src/jni/oboe/docs/reference/search/functions_c.js create mode 100644 love/src/jni/oboe/docs/reference/search/functions_d.html create mode 100644 love/src/jni/oboe/docs/reference/search/functions_d.js create mode 100644 love/src/jni/oboe/docs/reference/search/functions_e.html create mode 100644 love/src/jni/oboe/docs/reference/search/functions_e.js create mode 100644 love/src/jni/oboe/docs/reference/search/mag_sel.png create mode 100644 love/src/jni/oboe/docs/reference/search/namespaces_0.html create mode 100644 love/src/jni/oboe/docs/reference/search/namespaces_0.js create mode 100644 love/src/jni/oboe/docs/reference/search/nomatches.html create mode 100644 love/src/jni/oboe/docs/reference/search/pages_0.html create mode 100644 love/src/jni/oboe/docs/reference/search/pages_0.js create mode 100644 love/src/jni/oboe/docs/reference/search/pages_1.html create mode 100644 love/src/jni/oboe/docs/reference/search/pages_1.js create mode 100644 love/src/jni/oboe/docs/reference/search/search.css create mode 100644 love/src/jni/oboe/docs/reference/search/search.js create mode 100644 love/src/jni/oboe/docs/reference/search/search_l.png create mode 100644 love/src/jni/oboe/docs/reference/search/search_m.png create mode 100644 love/src/jni/oboe/docs/reference/search/search_r.png create mode 100644 love/src/jni/oboe/docs/reference/search/searchdata.js create mode 100644 love/src/jni/oboe/docs/reference/search/variables_0.html create mode 100644 love/src/jni/oboe/docs/reference/search/variables_0.js create mode 100644 love/src/jni/oboe/docs/reference/search/variables_1.html create mode 100644 love/src/jni/oboe/docs/reference/search/variables_1.js create mode 100644 love/src/jni/oboe/docs/reference/search/variables_2.html create mode 100644 love/src/jni/oboe/docs/reference/search/variables_2.js create mode 100644 love/src/jni/oboe/docs/reference/search/variables_3.html create mode 100644 love/src/jni/oboe/docs/reference/search/variables_3.js create mode 100644 love/src/jni/oboe/docs/reference/search/variables_4.html create mode 100644 love/src/jni/oboe/docs/reference/search/variables_4.js create mode 100644 love/src/jni/oboe/docs/reference/search/variables_5.html create mode 100644 love/src/jni/oboe/docs/reference/search/variables_5.js create mode 100644 love/src/jni/oboe/docs/reference/search/variables_6.html create mode 100644 love/src/jni/oboe/docs/reference/search/variables_6.js create mode 100644 love/src/jni/oboe/docs/reference/search/variables_7.html create mode 100644 love/src/jni/oboe/docs/reference/search/variables_7.js create mode 100644 love/src/jni/oboe/docs/reference/splitbar.png create mode 100644 love/src/jni/oboe/docs/reference/structoboe_1_1_frame_timestamp-members.html create mode 100644 love/src/jni/oboe/docs/reference/structoboe_1_1_frame_timestamp.html create mode 100644 love/src/jni/oboe/docs/reference/structoboe_1_1_stream_deleter_functor-members.html create mode 100644 love/src/jni/oboe/docs/reference/structoboe_1_1_stream_deleter_functor.html create mode 100644 love/src/jni/oboe/docs/reference/structoboe_1_1_version-members.html create mode 100644 love/src/jni/oboe/docs/reference/structoboe_1_1_version.html create mode 100644 love/src/jni/oboe/docs/reference/sync_off.png create mode 100644 love/src/jni/oboe/docs/reference/sync_on.png create mode 100644 love/src/jni/oboe/docs/reference/tab_a.png create mode 100644 love/src/jni/oboe/docs/reference/tab_b.png create mode 100644 love/src/jni/oboe/docs/reference/tab_h.png create mode 100644 love/src/jni/oboe/docs/reference/tab_s.png create mode 100644 love/src/jni/oboe/docs/reference/tabs.css create mode 100644 love/src/jni/oboe/include/oboe/AudioStream.h create mode 100644 love/src/jni/oboe/include/oboe/AudioStreamBase.h create mode 100644 love/src/jni/oboe/include/oboe/AudioStreamBuilder.h create mode 100644 love/src/jni/oboe/include/oboe/AudioStreamCallback.h create mode 100644 love/src/jni/oboe/include/oboe/Definitions.h create mode 100644 love/src/jni/oboe/include/oboe/LatencyTuner.h create mode 100644 love/src/jni/oboe/include/oboe/Oboe.h create mode 100644 love/src/jni/oboe/include/oboe/ResultWithValue.h create mode 100644 love/src/jni/oboe/include/oboe/StabilizedCallback.h create mode 100644 love/src/jni/oboe/include/oboe/Utilities.h create mode 100644 love/src/jni/oboe/include/oboe/Version.h create mode 100644 love/src/jni/oboe/prefab/oboe-VERSION.pom create mode 100644 love/src/jni/oboe/prefab/oboe-VERSION/AndroidManifest.xml create mode 100644 love/src/jni/oboe/prefab/oboe-VERSION/prefab/modules/oboe/module.json create mode 100644 love/src/jni/oboe/prefab/oboe-VERSION/prefab/prefab.json create mode 100644 love/src/jni/oboe/prefab_build.sh create mode 100644 love/src/jni/oboe/samples/.gitignore create mode 100644 love/src/jni/oboe/samples/LiveEffect/README.md create mode 100644 love/src/jni/oboe/samples/LiveEffect/build.gradle create mode 100644 love/src/jni/oboe/samples/LiveEffect/screenshot.png create mode 100644 love/src/jni/oboe/samples/LiveEffect/src/main/AndroidManifest.xml create mode 100644 love/src/jni/oboe/samples/LiveEffect/src/main/cpp/CMakeLists.txt create mode 100644 love/src/jni/oboe/samples/LiveEffect/src/main/cpp/FullDuplexPass.h create mode 100644 love/src/jni/oboe/samples/LiveEffect/src/main/cpp/FullDuplexStream.cpp create mode 100644 love/src/jni/oboe/samples/LiveEffect/src/main/cpp/FullDuplexStream.h create mode 100644 love/src/jni/oboe/samples/LiveEffect/src/main/cpp/LiveEffectEngine.cpp create mode 100644 love/src/jni/oboe/samples/LiveEffect/src/main/cpp/LiveEffectEngine.h create mode 100644 love/src/jni/oboe/samples/LiveEffect/src/main/cpp/jni_bridge.cpp create mode 100644 love/src/jni/oboe/samples/LiveEffect/src/main/cpp/ndk-stl-config.cmake create mode 100644 love/src/jni/oboe/samples/LiveEffect/src/main/java/com/google/sample/oboe/liveEffect/LiveEffectEngine.java create mode 100644 love/src/jni/oboe/samples/LiveEffect/src/main/java/com/google/sample/oboe/liveEffect/MainActivity.java create mode 100644 love/src/jni/oboe/samples/LiveEffect/src/main/res/drawable/balance_seekbar.xml create mode 100644 love/src/jni/oboe/samples/LiveEffect/src/main/res/layout-v21/activity_main.xml create mode 100644 love/src/jni/oboe/samples/LiveEffect/src/main/res/layout/activity_main.xml create mode 100644 love/src/jni/oboe/samples/LiveEffect/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/samples/LiveEffect/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/samples/LiveEffect/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/samples/LiveEffect/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/samples/LiveEffect/src/main/res/values-v21/styles.xml create mode 100644 love/src/jni/oboe/samples/LiveEffect/src/main/res/values-w820dp/dimens.xml create mode 100644 love/src/jni/oboe/samples/LiveEffect/src/main/res/values/colors.xml create mode 100644 love/src/jni/oboe/samples/LiveEffect/src/main/res/values/dimens.xml create mode 100644 love/src/jni/oboe/samples/LiveEffect/src/main/res/values/strings.xml create mode 100644 love/src/jni/oboe/samples/LiveEffect/src/main/res/values/styles.xml create mode 100644 love/src/jni/oboe/samples/MegaDrone/.gitignore create mode 100644 love/src/jni/oboe/samples/MegaDrone/README.md create mode 100644 love/src/jni/oboe/samples/MegaDrone/build.gradle create mode 100644 love/src/jni/oboe/samples/MegaDrone/megadrone-screenshot.png create mode 100644 love/src/jni/oboe/samples/MegaDrone/proguard-rules.pro create mode 100644 love/src/jni/oboe/samples/MegaDrone/src/main/AndroidManifest.xml create mode 100644 love/src/jni/oboe/samples/MegaDrone/src/main/cpp/CMakeLists.txt create mode 100644 love/src/jni/oboe/samples/MegaDrone/src/main/cpp/MegaDroneEngine.cpp create mode 100644 love/src/jni/oboe/samples/MegaDrone/src/main/cpp/MegaDroneEngine.h create mode 100644 love/src/jni/oboe/samples/MegaDrone/src/main/cpp/Synth.h create mode 100644 love/src/jni/oboe/samples/MegaDrone/src/main/cpp/native-lib.cpp create mode 100644 love/src/jni/oboe/samples/MegaDrone/src/main/java/com/example/oboe/megadrone/MainActivity.java create mode 100644 love/src/jni/oboe/samples/MegaDrone/src/main/res/drawable-v24/ic_launcher_foreground.xml create mode 100644 love/src/jni/oboe/samples/MegaDrone/src/main/res/drawable/ic_launcher_background.xml create mode 100644 love/src/jni/oboe/samples/MegaDrone/src/main/res/layout/activity_main.xml create mode 100644 love/src/jni/oboe/samples/MegaDrone/src/main/res/mipmap-anydpi-v26/ic_launcher.xml create mode 100644 love/src/jni/oboe/samples/MegaDrone/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml create mode 100644 love/src/jni/oboe/samples/MegaDrone/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/samples/MegaDrone/src/main/res/mipmap-hdpi/ic_launcher_round.png create mode 100644 love/src/jni/oboe/samples/MegaDrone/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/samples/MegaDrone/src/main/res/mipmap-mdpi/ic_launcher_round.png create mode 100644 love/src/jni/oboe/samples/MegaDrone/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/samples/MegaDrone/src/main/res/mipmap-xhdpi/ic_launcher_round.png create mode 100644 love/src/jni/oboe/samples/MegaDrone/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/samples/MegaDrone/src/main/res/mipmap-xxhdpi/ic_launcher_round.png create mode 100644 love/src/jni/oboe/samples/MegaDrone/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/samples/MegaDrone/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png create mode 100644 love/src/jni/oboe/samples/MegaDrone/src/main/res/values/colors.xml create mode 100644 love/src/jni/oboe/samples/MegaDrone/src/main/res/values/strings.xml create mode 100644 love/src/jni/oboe/samples/MegaDrone/src/main/res/values/styles.xml create mode 100644 love/src/jni/oboe/samples/README.md create mode 100644 love/src/jni/oboe/samples/RhythmGame/CMakeLists.txt create mode 100644 love/src/jni/oboe/samples/RhythmGame/README.md create mode 100644 love/src/jni/oboe/samples/RhythmGame/build.gradle create mode 100644 love/src/jni/oboe/samples/RhythmGame/images/1-timeline.png create mode 100644 love/src/jni/oboe/samples/RhythmGame/images/2-architecture.png create mode 100644 love/src/jni/oboe/samples/RhythmGame/images/3-audioData.png create mode 100644 love/src/jni/oboe/samples/RhythmGame/images/4-audio-rendering.png create mode 100644 love/src/jni/oboe/samples/RhythmGame/images/5-lockfreequeue.png create mode 100644 love/src/jni/oboe/samples/RhythmGame/images/6-audio-ui-sync.png create mode 100644 love/src/jni/oboe/samples/RhythmGame/images/7-tap-window.png create mode 100644 love/src/jni/oboe/samples/RhythmGame/images/RhythmGame-screenshot.png create mode 100644 love/src/jni/oboe/samples/RhythmGame/proguard-rules.pro create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/AndroidManifest.xml create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/cpp/Game.cpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/cpp/Game.h create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/cpp/GameConstants.h create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/cpp/audio/AAssetDataSource.cpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/cpp/audio/AAssetDataSource.h create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/cpp/audio/DataSource.h create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/cpp/audio/FFMpegExtractor.cpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/cpp/audio/FFMpegExtractor.h create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/cpp/audio/NDKExtractor.cpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/cpp/audio/NDKExtractor.h create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/cpp/audio/Player.cpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/cpp/audio/Player.h create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/cpp/native-lib.cpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/cpp/ui/OpenGLFunctions.cpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/cpp/ui/OpenGLFunctions.h create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/cpp/utils/LockFreeQueue.h create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/cpp/utils/UtilityFunctions.cpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/cpp/utils/UtilityFunctions.h create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/cpp/utils/logging.h create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/java/com/google/oboe/sample/rhythmgame/GameSurfaceView.java create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/java/com/google/oboe/sample/rhythmgame/MainActivity.java create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/java/com/google/oboe/sample/rhythmgame/RendererWrapper.java create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/res/drawable-v24/ic_launcher_foreground.xml create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/res/drawable/ic_launcher_background.xml create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/res/layout/activity_main.xml create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/res/mipmap-anydpi-v26/ic_launcher.xml create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/res/mipmap-hdpi/ic_launcher_round.png create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/res/mipmap-mdpi/ic_launcher_round.png create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/res/mipmap-xhdpi/ic_launcher_round.png create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/res/mipmap-xxhdpi/ic_launcher_round.png create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/res/values/colors.xml create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/res/values/strings.xml create mode 100644 love/src/jni/oboe/samples/RhythmGame/src/main/res/values/styles.xml create mode 100644 love/src/jni/oboe/samples/RhythmGame/test/CMakeLists.txt create mode 100644 love/src/jni/oboe/samples/RhythmGame/test/run_tests.sh create mode 100644 love/src/jni/oboe/samples/RhythmGame/test/testLockFreeQueue.cpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/CMakeLists.txt create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/common.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/_features.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/_fixes.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/_noise.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/_swizzle.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/_swizzle_func.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/_vectorize.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/dummy.cpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/func_common.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/func_common.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/func_common_simd.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/func_exponential.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/func_exponential.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/func_exponential_simd.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/func_geometric.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/func_geometric.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/func_geometric_simd.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/func_integer.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/func_integer.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/func_integer_simd.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/func_matrix.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/func_matrix.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/func_matrix_simd.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/func_packing.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/func_packing.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/func_packing_simd.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/func_trigonometric.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/func_trigonometric.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/func_trigonometric_simd.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/func_vector_relational.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/func_vector_relational.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/func_vector_relational_simd.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/glm.cpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/precision.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/setup.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_float.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_gentype.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_gentype.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_half.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_half.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_int.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_mat.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_mat.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_mat2x2.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_mat2x2.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_mat2x3.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_mat2x3.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_mat2x4.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_mat2x4.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_mat3x2.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_mat3x2.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_mat3x3.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_mat3x3.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_mat3x4.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_mat3x4.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_mat4x2.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_mat4x2.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_mat4x3.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_mat4x3.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_mat4x4.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_mat4x4.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_mat4x4_simd.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_vec.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_vec.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_vec1.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_vec1.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_vec2.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_vec2.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_vec3.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_vec3.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_vec4.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_vec4.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/detail/type_vec4_simd.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/exponential.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/ext.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/fwd.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/geometric.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/glm.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/bitfield.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/bitfield.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/color_encoding.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/color_space.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/color_space.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/constants.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/constants.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/epsilon.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/epsilon.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/functions.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/functions.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/integer.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/integer.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/matrix_access.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/matrix_access.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/matrix_integer.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/matrix_inverse.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/matrix_inverse.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/matrix_transform.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/matrix_transform.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/noise.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/noise.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/packing.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/packing.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/quaternion.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/quaternion.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/quaternion_simd.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/random.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/random.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/reciprocal.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/reciprocal.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/round.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/round.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/type_aligned.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/type_precision.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/type_precision.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/type_ptr.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/type_ptr.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/ulp.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/ulp.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/vec1.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtc/vec1.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/associated_min_max.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/associated_min_max.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/bit.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/bit.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/closest_point.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/closest_point.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/color_space.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/color_space.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/color_space_YCoCg.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/color_space_YCoCg.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/common.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/common.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/compatibility.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/compatibility.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/component_wise.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/component_wise.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/dual_quaternion.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/dual_quaternion.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/euler_angles.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/euler_angles.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/extend.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/extend.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/extended_min_max.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/extended_min_max.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/fast_exponential.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/fast_exponential.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/fast_square_root.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/fast_square_root.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/fast_trigonometry.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/fast_trigonometry.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/float_notmalize.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/gradient_paint.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/gradient_paint.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/handed_coordinate_space.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/handed_coordinate_space.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/hash.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/hash.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/integer.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/integer.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/intersect.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/intersect.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/io.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/io.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/log_base.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/log_base.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/matrix_cross_product.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/matrix_cross_product.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/matrix_decompose.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/matrix_decompose.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/matrix_interpolation.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/matrix_interpolation.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/matrix_major_storage.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/matrix_major_storage.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/matrix_operation.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/matrix_operation.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/matrix_query.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/matrix_query.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/matrix_transform_2d.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/matrix_transform_2d.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/mixed_product.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/mixed_product.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/norm.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/norm.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/normal.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/normal.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/normalize_dot.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/normalize_dot.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/number_precision.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/number_precision.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/optimum_pow.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/optimum_pow.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/orthonormalize.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/orthonormalize.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/perpendicular.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/perpendicular.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/polar_coordinates.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/polar_coordinates.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/projection.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/projection.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/quaternion.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/quaternion.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/range.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/raw_data.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/raw_data.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/rotate_normalized_axis.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/rotate_normalized_axis.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/rotate_vector.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/rotate_vector.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/scalar_multiplication.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/scalar_relational.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/scalar_relational.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/simd_mat4.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/simd_mat4.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/simd_quat.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/simd_quat.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/simd_vec4.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/simd_vec4.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/spline.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/spline.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/std_based_type.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/std_based_type.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/string_cast.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/string_cast.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/transform.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/transform.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/transform2.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/transform2.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/type_aligned.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/type_aligned.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/type_trait.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/type_trait.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/vector_angle.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/vector_angle.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/vector_query.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/vector_query.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/wrap.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/gtx/wrap.inl create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/integer.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/mat2x2.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/mat2x3.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/mat2x4.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/mat3x2.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/mat3x3.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/mat3x4.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/mat4x2.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/mat4x3.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/mat4x4.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/matrix.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/packing.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/simd/common.h create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/simd/exponential.h create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/simd/geometric.h create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/simd/integer.h create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/simd/matrix.h create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/simd/packing.h create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/simd/platform.h create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/simd/trigonometric.h create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/simd/vector_relational.h create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/trigonometric.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/vec2.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/vec3.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/vec4.hpp create mode 100644 love/src/jni/oboe/samples/RhythmGame/third_party/glm/vector_relational.hpp create mode 100644 love/src/jni/oboe/samples/audio-device/README.md create mode 100644 love/src/jni/oboe/samples/audio-device/build.gradle create mode 100644 love/src/jni/oboe/samples/audio-device/proguard-rules.pro create mode 100644 love/src/jni/oboe/samples/audio-device/src/main/AndroidManifest.xml create mode 100644 love/src/jni/oboe/samples/audio-device/src/main/java/com/google/sample/audio_device/AudioDeviceAdapter.java create mode 100644 love/src/jni/oboe/samples/audio-device/src/main/java/com/google/sample/audio_device/AudioDeviceInfoConverter.java create mode 100644 love/src/jni/oboe/samples/audio-device/src/main/java/com/google/sample/audio_device/AudioDeviceListEntry.java create mode 100644 love/src/jni/oboe/samples/audio-device/src/main/java/com/google/sample/audio_device/AudioDeviceSpinner.java create mode 100644 love/src/jni/oboe/samples/audio-device/src/main/res/layout/audio_devices.xml create mode 100644 love/src/jni/oboe/samples/audio-device/src/main/res/values/dimens.xml create mode 100644 love/src/jni/oboe/samples/audio-device/src/main/res/values/strings.xml create mode 100644 love/src/jni/oboe/samples/build.gradle create mode 100644 love/src/jni/oboe/samples/debug-utils/logging_macros.h create mode 100644 love/src/jni/oboe/samples/debug-utils/trace.cpp create mode 100644 love/src/jni/oboe/samples/debug-utils/trace.h create mode 100644 love/src/jni/oboe/samples/drumthumper/README.md create mode 100644 love/src/jni/oboe/samples/drumthumper/build.gradle create mode 100644 love/src/jni/oboe/samples/drumthumper/src/main/AndroidManifest.xml create mode 100644 love/src/jni/oboe/samples/drumthumper/src/main/cpp/CMakeLists.txt create mode 100644 love/src/jni/oboe/samples/drumthumper/src/main/cpp/DrumPlayerJNI.cpp create mode 100644 love/src/jni/oboe/samples/drumthumper/src/main/java/com/google/oboe/sample/drumthumper/DrumPlayer.kt create mode 100644 love/src/jni/oboe/samples/drumthumper/src/main/java/com/google/oboe/sample/drumthumper/DrumThumperActivity.kt create mode 100644 love/src/jni/oboe/samples/drumthumper/src/main/java/com/google/oboe/sample/drumthumper/TriggerPad.kt create mode 100644 love/src/jni/oboe/samples/drumthumper/src/main/res/drawable-v24/_ic_launcher_foreground.xml create mode 100644 love/src/jni/oboe/samples/drumthumper/src/main/res/drawable/_ic_launcher_background.xml create mode 100644 love/src/jni/oboe/samples/drumthumper/src/main/res/layout-land/drumthumper_activity.xml create mode 100644 love/src/jni/oboe/samples/drumthumper/src/main/res/layout/drumthumper_activity.xml create mode 100644 love/src/jni/oboe/samples/drumthumper/src/main/res/mipmap-anydpi-v26/_ic_launcher.xml create mode 100644 love/src/jni/oboe/samples/drumthumper/src/main/res/mipmap-anydpi-v26/_ic_launcher_round.xml create mode 100644 love/src/jni/oboe/samples/drumthumper/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/samples/drumthumper/src/main/res/mipmap-hdpi/ic_launcher_round.png create mode 100644 love/src/jni/oboe/samples/drumthumper/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/samples/drumthumper/src/main/res/mipmap-mdpi/ic_launcher_round.png create mode 100644 love/src/jni/oboe/samples/drumthumper/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/samples/drumthumper/src/main/res/mipmap-xhdpi/ic_launcher_round.png create mode 100644 love/src/jni/oboe/samples/drumthumper/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/samples/drumthumper/src/main/res/mipmap-xxhdpi/ic_launcher_round.png create mode 100644 love/src/jni/oboe/samples/drumthumper/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/samples/drumthumper/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png create mode 100644 love/src/jni/oboe/samples/drumthumper/src/main/res/values/colors.xml create mode 100644 love/src/jni/oboe/samples/drumthumper/src/main/res/values/strings.xml create mode 100644 love/src/jni/oboe/samples/drumthumper/src/main/res/values/styles.xml create mode 100644 love/src/jni/oboe/samples/gradle.properties create mode 100644 love/src/jni/oboe/samples/gradle/wrapper/gradle-wrapper.jar create mode 100644 love/src/jni/oboe/samples/gradle/wrapper/gradle-wrapper.properties create mode 100644 love/src/jni/oboe/samples/gradlew create mode 100644 love/src/jni/oboe/samples/gradlew.bat create mode 100644 love/src/jni/oboe/samples/hello-oboe/README.md create mode 100644 love/src/jni/oboe/samples/hello-oboe/build.gradle create mode 100644 love/src/jni/oboe/samples/hello-oboe/hello-oboe-screenshot.png create mode 100644 love/src/jni/oboe/samples/hello-oboe/proguard-rules.pro create mode 100644 love/src/jni/oboe/samples/hello-oboe/src/main/AndroidManifest.xml create mode 100644 love/src/jni/oboe/samples/hello-oboe/src/main/cpp/CMakeLists.txt create mode 100644 love/src/jni/oboe/samples/hello-oboe/src/main/cpp/HelloOboeEngine.cpp create mode 100644 love/src/jni/oboe/samples/hello-oboe/src/main/cpp/HelloOboeEngine.h create mode 100644 love/src/jni/oboe/samples/hello-oboe/src/main/cpp/LatencyTuningCallback.cpp create mode 100644 love/src/jni/oboe/samples/hello-oboe/src/main/cpp/LatencyTuningCallback.h create mode 100644 love/src/jni/oboe/samples/hello-oboe/src/main/cpp/SoundGenerator.cpp create mode 100644 love/src/jni/oboe/samples/hello-oboe/src/main/cpp/SoundGenerator.h create mode 100644 love/src/jni/oboe/samples/hello-oboe/src/main/cpp/jni_bridge.cpp create mode 100644 love/src/jni/oboe/samples/hello-oboe/src/main/java/com/google/sample/oboe/hellooboe/MainActivity.java create mode 100644 love/src/jni/oboe/samples/hello-oboe/src/main/java/com/google/sample/oboe/hellooboe/PlaybackEngine.java create mode 100644 love/src/jni/oboe/samples/hello-oboe/src/main/res/layout/activity_main.xml create mode 100644 love/src/jni/oboe/samples/hello-oboe/src/main/res/layout/audio_apis_spinner.xml create mode 100644 love/src/jni/oboe/samples/hello-oboe/src/main/res/layout/buffer_sizes_spinner.xml create mode 100644 love/src/jni/oboe/samples/hello-oboe/src/main/res/layout/channel_counts_spinner.xml create mode 100644 love/src/jni/oboe/samples/hello-oboe/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/samples/hello-oboe/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/samples/hello-oboe/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/samples/hello-oboe/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/samples/hello-oboe/src/main/res/values-v21/styles.xml create mode 100644 love/src/jni/oboe/samples/hello-oboe/src/main/res/values-w820dp/dimens.xml create mode 100644 love/src/jni/oboe/samples/hello-oboe/src/main/res/values/dimens.xml create mode 100644 love/src/jni/oboe/samples/hello-oboe/src/main/res/values/strings.xml create mode 100644 love/src/jni/oboe/samples/hello-oboe/src/main/res/values/styles.xml create mode 100644 love/src/jni/oboe/samples/iolib/.gitignore create mode 100644 love/src/jni/oboe/samples/iolib/README.md create mode 100644 love/src/jni/oboe/samples/iolib/build.gradle create mode 100644 love/src/jni/oboe/samples/iolib/src/main/AndroidManifest.xml create mode 100644 love/src/jni/oboe/samples/iolib/src/main/cpp/CMakeLists.txt create mode 100644 love/src/jni/oboe/samples/iolib/src/main/cpp/player/DataSource.h create mode 100644 love/src/jni/oboe/samples/iolib/src/main/cpp/player/OneShotSampleSource.cpp create mode 100644 love/src/jni/oboe/samples/iolib/src/main/cpp/player/OneShotSampleSource.h create mode 100644 love/src/jni/oboe/samples/iolib/src/main/cpp/player/SampleBuffer.cpp create mode 100644 love/src/jni/oboe/samples/iolib/src/main/cpp/player/SampleBuffer.h create mode 100644 love/src/jni/oboe/samples/iolib/src/main/cpp/player/SampleSource.cpp create mode 100644 love/src/jni/oboe/samples/iolib/src/main/cpp/player/SampleSource.h create mode 100644 love/src/jni/oboe/samples/iolib/src/main/cpp/player/SimpleMultiPlayer.cpp create mode 100644 love/src/jni/oboe/samples/iolib/src/main/cpp/player/SimpleMultiPlayer.h create mode 100644 love/src/jni/oboe/samples/iolib/src/main/res/values/strings.xml create mode 100644 love/src/jni/oboe/samples/parselib/README.md create mode 100644 love/src/jni/oboe/samples/parselib/build.gradle create mode 100644 love/src/jni/oboe/samples/parselib/src/main/AndroidManifest.xml create mode 100644 love/src/jni/oboe/samples/parselib/src/main/cpp/CMakeLists.txt create mode 100644 love/src/jni/oboe/samples/parselib/src/main/cpp/stream/FileInputStream.cpp create mode 100644 love/src/jni/oboe/samples/parselib/src/main/cpp/stream/FileInputStream.h create mode 100644 love/src/jni/oboe/samples/parselib/src/main/cpp/stream/InputStream.cpp create mode 100644 love/src/jni/oboe/samples/parselib/src/main/cpp/stream/InputStream.h create mode 100644 love/src/jni/oboe/samples/parselib/src/main/cpp/stream/MemInputStream.cpp create mode 100644 love/src/jni/oboe/samples/parselib/src/main/cpp/stream/MemInputStream.h create mode 100644 love/src/jni/oboe/samples/parselib/src/main/cpp/wav/AudioEncoding.cpp create mode 100644 love/src/jni/oboe/samples/parselib/src/main/cpp/wav/AudioEncoding.h create mode 100644 love/src/jni/oboe/samples/parselib/src/main/cpp/wav/WavChunkHeader.cpp create mode 100644 love/src/jni/oboe/samples/parselib/src/main/cpp/wav/WavChunkHeader.h create mode 100644 love/src/jni/oboe/samples/parselib/src/main/cpp/wav/WavFmtChunkHeader.cpp create mode 100644 love/src/jni/oboe/samples/parselib/src/main/cpp/wav/WavFmtChunkHeader.h create mode 100644 love/src/jni/oboe/samples/parselib/src/main/cpp/wav/WavRIFFChunkHeader.cpp create mode 100644 love/src/jni/oboe/samples/parselib/src/main/cpp/wav/WavRIFFChunkHeader.h create mode 100644 love/src/jni/oboe/samples/parselib/src/main/cpp/wav/WavStreamReader.cpp create mode 100644 love/src/jni/oboe/samples/parselib/src/main/cpp/wav/WavStreamReader.h create mode 100644 love/src/jni/oboe/samples/parselib/src/main/cpp/wav/WavTypes.h create mode 100644 love/src/jni/oboe/samples/parselib/src/main/res/values/strings.xml create mode 100644 love/src/jni/oboe/samples/settings.gradle create mode 100644 love/src/jni/oboe/samples/shared/DefaultAudioStreamCallback.h create mode 100644 love/src/jni/oboe/samples/shared/IRenderableAudio.h create mode 100644 love/src/jni/oboe/samples/shared/IRestartable.h create mode 100644 love/src/jni/oboe/samples/shared/ITappable.h create mode 100644 love/src/jni/oboe/samples/shared/Mixer.h create mode 100644 love/src/jni/oboe/samples/shared/MonoToStereo.h create mode 100644 love/src/jni/oboe/samples/shared/Oscillator.h create mode 100644 love/src/jni/oboe/samples/shared/TappableAudioSource.h create mode 100644 love/src/jni/oboe/src/aaudio/AAudioLoader.cpp create mode 100644 love/src/jni/oboe/src/aaudio/AAudioLoader.h create mode 100644 love/src/jni/oboe/src/aaudio/AudioStreamAAudio.cpp create mode 100644 love/src/jni/oboe/src/aaudio/AudioStreamAAudio.h create mode 100644 love/src/jni/oboe/src/common/AudioClock.h create mode 100644 love/src/jni/oboe/src/common/AudioSourceCaller.cpp create mode 100644 love/src/jni/oboe/src/common/AudioSourceCaller.h create mode 100644 love/src/jni/oboe/src/common/AudioStream.cpp create mode 100644 love/src/jni/oboe/src/common/AudioStreamBuilder.cpp create mode 100644 love/src/jni/oboe/src/common/DataConversionFlowGraph.cpp create mode 100644 love/src/jni/oboe/src/common/DataConversionFlowGraph.h create mode 100644 love/src/jni/oboe/src/common/FilterAudioStream.cpp create mode 100644 love/src/jni/oboe/src/common/FilterAudioStream.h create mode 100644 love/src/jni/oboe/src/common/FixedBlockAdapter.cpp create mode 100644 love/src/jni/oboe/src/common/FixedBlockAdapter.h create mode 100644 love/src/jni/oboe/src/common/FixedBlockReader.cpp create mode 100644 love/src/jni/oboe/src/common/FixedBlockReader.h create mode 100644 love/src/jni/oboe/src/common/FixedBlockWriter.cpp create mode 100644 love/src/jni/oboe/src/common/FixedBlockWriter.h create mode 100644 love/src/jni/oboe/src/common/LatencyTuner.cpp create mode 100644 love/src/jni/oboe/src/common/MonotonicCounter.h create mode 100644 love/src/jni/oboe/src/common/OboeDebug.h create mode 100644 love/src/jni/oboe/src/common/QuirksManager.cpp create mode 100644 love/src/jni/oboe/src/common/QuirksManager.h create mode 100644 love/src/jni/oboe/src/common/README.md create mode 100644 love/src/jni/oboe/src/common/SourceFloatCaller.cpp create mode 100644 love/src/jni/oboe/src/common/SourceFloatCaller.h create mode 100644 love/src/jni/oboe/src/common/SourceI16Caller.cpp create mode 100644 love/src/jni/oboe/src/common/SourceI16Caller.h create mode 100644 love/src/jni/oboe/src/common/StabilizedCallback.cpp create mode 100644 love/src/jni/oboe/src/common/Trace.cpp create mode 100644 love/src/jni/oboe/src/common/Trace.h create mode 100644 love/src/jni/oboe/src/common/Utilities.cpp create mode 100644 love/src/jni/oboe/src/common/Version.cpp create mode 100644 love/src/jni/oboe/src/fifo/FifoBuffer.cpp create mode 100644 love/src/jni/oboe/src/fifo/FifoBuffer.h create mode 100644 love/src/jni/oboe/src/fifo/FifoController.cpp create mode 100644 love/src/jni/oboe/src/fifo/FifoController.h create mode 100644 love/src/jni/oboe/src/fifo/FifoControllerBase.cpp create mode 100644 love/src/jni/oboe/src/fifo/FifoControllerBase.h create mode 100644 love/src/jni/oboe/src/fifo/FifoControllerIndirect.cpp create mode 100644 love/src/jni/oboe/src/fifo/FifoControllerIndirect.h create mode 100644 love/src/jni/oboe/src/flowgraph/ClipToRange.cpp create mode 100644 love/src/jni/oboe/src/flowgraph/ClipToRange.h create mode 100644 love/src/jni/oboe/src/flowgraph/FlowGraphNode.cpp create mode 100644 love/src/jni/oboe/src/flowgraph/FlowGraphNode.h create mode 100644 love/src/jni/oboe/src/flowgraph/ManyToMultiConverter.cpp create mode 100644 love/src/jni/oboe/src/flowgraph/ManyToMultiConverter.h create mode 100644 love/src/jni/oboe/src/flowgraph/MonoToMultiConverter.cpp create mode 100644 love/src/jni/oboe/src/flowgraph/MonoToMultiConverter.h create mode 100644 love/src/jni/oboe/src/flowgraph/RampLinear.cpp create mode 100644 love/src/jni/oboe/src/flowgraph/RampLinear.h create mode 100644 love/src/jni/oboe/src/flowgraph/SampleRateConverter.cpp create mode 100644 love/src/jni/oboe/src/flowgraph/SampleRateConverter.h create mode 100644 love/src/jni/oboe/src/flowgraph/SinkFloat.cpp create mode 100644 love/src/jni/oboe/src/flowgraph/SinkFloat.h create mode 100644 love/src/jni/oboe/src/flowgraph/SinkI16.cpp create mode 100644 love/src/jni/oboe/src/flowgraph/SinkI16.h create mode 100644 love/src/jni/oboe/src/flowgraph/SinkI24.cpp create mode 100644 love/src/jni/oboe/src/flowgraph/SinkI24.h create mode 100644 love/src/jni/oboe/src/flowgraph/SourceFloat.cpp create mode 100644 love/src/jni/oboe/src/flowgraph/SourceFloat.h create mode 100644 love/src/jni/oboe/src/flowgraph/SourceI16.cpp create mode 100644 love/src/jni/oboe/src/flowgraph/SourceI16.h create mode 100644 love/src/jni/oboe/src/flowgraph/SourceI24.cpp create mode 100644 love/src/jni/oboe/src/flowgraph/SourceI24.h create mode 100644 love/src/jni/oboe/src/flowgraph/resampler/HyperbolicCosineWindow.h create mode 100644 love/src/jni/oboe/src/flowgraph/resampler/IntegerRatio.cpp create mode 100644 love/src/jni/oboe/src/flowgraph/resampler/IntegerRatio.h create mode 100644 love/src/jni/oboe/src/flowgraph/resampler/KaiserWindow.h create mode 100644 love/src/jni/oboe/src/flowgraph/resampler/LinearResampler.cpp create mode 100644 love/src/jni/oboe/src/flowgraph/resampler/LinearResampler.h create mode 100644 love/src/jni/oboe/src/flowgraph/resampler/MultiChannelResampler.cpp create mode 100644 love/src/jni/oboe/src/flowgraph/resampler/MultiChannelResampler.h create mode 100644 love/src/jni/oboe/src/flowgraph/resampler/PolyphaseResampler.cpp create mode 100644 love/src/jni/oboe/src/flowgraph/resampler/PolyphaseResampler.h create mode 100644 love/src/jni/oboe/src/flowgraph/resampler/PolyphaseResamplerMono.cpp create mode 100644 love/src/jni/oboe/src/flowgraph/resampler/PolyphaseResamplerMono.h create mode 100644 love/src/jni/oboe/src/flowgraph/resampler/PolyphaseResamplerStereo.cpp create mode 100644 love/src/jni/oboe/src/flowgraph/resampler/PolyphaseResamplerStereo.h create mode 100644 love/src/jni/oboe/src/flowgraph/resampler/README.md create mode 100644 love/src/jni/oboe/src/flowgraph/resampler/SincResampler.cpp create mode 100644 love/src/jni/oboe/src/flowgraph/resampler/SincResampler.h create mode 100644 love/src/jni/oboe/src/flowgraph/resampler/SincResamplerStereo.cpp create mode 100644 love/src/jni/oboe/src/flowgraph/resampler/SincResamplerStereo.h create mode 100644 love/src/jni/oboe/src/opensles/AudioInputStreamOpenSLES.cpp create mode 100644 love/src/jni/oboe/src/opensles/AudioInputStreamOpenSLES.h create mode 100644 love/src/jni/oboe/src/opensles/AudioOutputStreamOpenSLES.cpp create mode 100644 love/src/jni/oboe/src/opensles/AudioOutputStreamOpenSLES.h create mode 100644 love/src/jni/oboe/src/opensles/AudioStreamBuffered.cpp create mode 100644 love/src/jni/oboe/src/opensles/AudioStreamBuffered.h create mode 100644 love/src/jni/oboe/src/opensles/AudioStreamOpenSLES.cpp create mode 100644 love/src/jni/oboe/src/opensles/AudioStreamOpenSLES.h create mode 100644 love/src/jni/oboe/src/opensles/EngineOpenSLES.cpp create mode 100644 love/src/jni/oboe/src/opensles/EngineOpenSLES.h create mode 100644 love/src/jni/oboe/src/opensles/OpenSLESUtilities.cpp create mode 100644 love/src/jni/oboe/src/opensles/OpenSLESUtilities.h create mode 100644 love/src/jni/oboe/src/opensles/OutputMixerOpenSLES.cpp create mode 100644 love/src/jni/oboe/src/opensles/OutputMixerOpenSLES.h create mode 100644 love/src/jni/oboe/tests/CMakeLists.txt create mode 100644 love/src/jni/oboe/tests/README create mode 100644 love/src/jni/oboe/tests/README.md create mode 100644 love/src/jni/oboe/tests/UnitTestRunner/.gitignore create mode 100644 love/src/jni/oboe/tests/UnitTestRunner/app/.gitignore create mode 100644 love/src/jni/oboe/tests/UnitTestRunner/app/build.gradle create mode 100644 love/src/jni/oboe/tests/UnitTestRunner/app/proguard-rules.pro create mode 100644 love/src/jni/oboe/tests/UnitTestRunner/app/src/main/AndroidManifest.xml create mode 100644 love/src/jni/oboe/tests/UnitTestRunner/app/src/main/java/com/google/oboe/tests/unittestrunner/MainActivity.java create mode 100644 love/src/jni/oboe/tests/UnitTestRunner/app/src/main/res/drawable-v24/ic_launcher_foreground.xml create mode 100644 love/src/jni/oboe/tests/UnitTestRunner/app/src/main/res/drawable/ic_launcher_background.xml create mode 100644 love/src/jni/oboe/tests/UnitTestRunner/app/src/main/res/layout/activity_main.xml create mode 100644 love/src/jni/oboe/tests/UnitTestRunner/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml create mode 100644 love/src/jni/oboe/tests/UnitTestRunner/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml create mode 100644 love/src/jni/oboe/tests/UnitTestRunner/app/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/tests/UnitTestRunner/app/src/main/res/mipmap-hdpi/ic_launcher_round.png create mode 100644 love/src/jni/oboe/tests/UnitTestRunner/app/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/tests/UnitTestRunner/app/src/main/res/mipmap-mdpi/ic_launcher_round.png create mode 100644 love/src/jni/oboe/tests/UnitTestRunner/app/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/tests/UnitTestRunner/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png create mode 100644 love/src/jni/oboe/tests/UnitTestRunner/app/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/tests/UnitTestRunner/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png create mode 100644 love/src/jni/oboe/tests/UnitTestRunner/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 love/src/jni/oboe/tests/UnitTestRunner/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png create mode 100644 love/src/jni/oboe/tests/UnitTestRunner/app/src/main/res/values/colors.xml create mode 100644 love/src/jni/oboe/tests/UnitTestRunner/app/src/main/res/values/strings.xml create mode 100644 love/src/jni/oboe/tests/UnitTestRunner/app/src/main/res/values/styles.xml create mode 100644 love/src/jni/oboe/tests/UnitTestRunner/build.gradle create mode 100644 love/src/jni/oboe/tests/UnitTestRunner/gradle.properties create mode 100644 love/src/jni/oboe/tests/UnitTestRunner/gradle/wrapper/gradle-wrapper.jar create mode 100644 love/src/jni/oboe/tests/UnitTestRunner/gradle/wrapper/gradle-wrapper.properties create mode 100644 love/src/jni/oboe/tests/UnitTestRunner/gradlew create mode 100644 love/src/jni/oboe/tests/UnitTestRunner/gradlew.bat create mode 100644 love/src/jni/oboe/tests/UnitTestRunner/settings.gradle create mode 100644 love/src/jni/oboe/tests/run_tests.sh create mode 100644 love/src/jni/oboe/tests/testFlowgraph.cpp create mode 100644 love/src/jni/oboe/tests/testStreamClosedMethods.cpp create mode 100644 love/src/jni/oboe/tests/testStreamOpen.cpp create mode 100644 love/src/jni/oboe/tests/testStreamStates.cpp create mode 100644 love/src/jni/oboe/tests/testStreamWaitState.cpp create mode 100644 love/src/jni/oboe/tests/testUtilities.cpp create mode 100644 love/src/jni/oboe/tests/testXRunBehaviour.cpp delete mode 100644 love/src/jni/openal-soft/Alc/ALc.c delete mode 100644 love/src/jni/openal-soft/Alc/ALu.c create mode 100644 love/src/jni/openal-soft/Alc/alc.cpp create mode 100644 love/src/jni/openal-soft/Alc/alcmain.h delete mode 100644 love/src/jni/openal-soft/Alc/alconfig.c create mode 100644 love/src/jni/openal-soft/Alc/alconfig.cpp create mode 100644 love/src/jni/openal-soft/Alc/alcontext.h delete mode 100644 love/src/jni/openal-soft/Alc/alstring.h create mode 100644 love/src/jni/openal-soft/Alc/alu.cpp create mode 100644 love/src/jni/openal-soft/Alc/alu.h delete mode 100644 love/src/jni/openal-soft/Alc/ambdec.c create mode 100644 love/src/jni/openal-soft/Alc/ambdec.cpp create mode 100644 love/src/jni/openal-soft/Alc/ambidefs.h delete mode 100644 love/src/jni/openal-soft/Alc/backends/alsa.c create mode 100644 love/src/jni/openal-soft/Alc/backends/alsa.cpp create mode 100644 love/src/jni/openal-soft/Alc/backends/alsa.h delete mode 100644 love/src/jni/openal-soft/Alc/backends/base.c create mode 100644 love/src/jni/openal-soft/Alc/backends/base.cpp delete mode 100644 love/src/jni/openal-soft/Alc/backends/coreaudio.c create mode 100644 love/src/jni/openal-soft/Alc/backends/coreaudio.cpp create mode 100644 love/src/jni/openal-soft/Alc/backends/coreaudio.h delete mode 100644 love/src/jni/openal-soft/Alc/backends/dsound.c create mode 100644 love/src/jni/openal-soft/Alc/backends/dsound.cpp create mode 100644 love/src/jni/openal-soft/Alc/backends/dsound.h delete mode 100644 love/src/jni/openal-soft/Alc/backends/jack.c create mode 100644 love/src/jni/openal-soft/Alc/backends/jack.cpp create mode 100644 love/src/jni/openal-soft/Alc/backends/jack.h delete mode 100644 love/src/jni/openal-soft/Alc/backends/loopback.c create mode 100644 love/src/jni/openal-soft/Alc/backends/loopback.cpp create mode 100644 love/src/jni/openal-soft/Alc/backends/loopback.h delete mode 100644 love/src/jni/openal-soft/Alc/backends/null.c create mode 100644 love/src/jni/openal-soft/Alc/backends/null.cpp create mode 100644 love/src/jni/openal-soft/Alc/backends/null.h create mode 100644 love/src/jni/openal-soft/Alc/backends/oboe.cpp create mode 100644 love/src/jni/openal-soft/Alc/backends/oboe.h delete mode 100644 love/src/jni/openal-soft/Alc/backends/opensl.c create mode 100644 love/src/jni/openal-soft/Alc/backends/opensl.cpp create mode 100644 love/src/jni/openal-soft/Alc/backends/opensl.h delete mode 100644 love/src/jni/openal-soft/Alc/backends/oss.c create mode 100644 love/src/jni/openal-soft/Alc/backends/oss.cpp create mode 100644 love/src/jni/openal-soft/Alc/backends/oss.h delete mode 100644 love/src/jni/openal-soft/Alc/backends/portaudio.c create mode 100644 love/src/jni/openal-soft/Alc/backends/portaudio.cpp create mode 100644 love/src/jni/openal-soft/Alc/backends/portaudio.h delete mode 100644 love/src/jni/openal-soft/Alc/backends/pulseaudio.c create mode 100644 love/src/jni/openal-soft/Alc/backends/pulseaudio.cpp create mode 100644 love/src/jni/openal-soft/Alc/backends/pulseaudio.h delete mode 100644 love/src/jni/openal-soft/Alc/backends/qsa.c delete mode 100644 love/src/jni/openal-soft/Alc/backends/sdl2.c create mode 100644 love/src/jni/openal-soft/Alc/backends/sdl2.cpp create mode 100644 love/src/jni/openal-soft/Alc/backends/sdl2.h delete mode 100644 love/src/jni/openal-soft/Alc/backends/sndio.c create mode 100644 love/src/jni/openal-soft/Alc/backends/sndio.cpp create mode 100644 love/src/jni/openal-soft/Alc/backends/sndio.h delete mode 100644 love/src/jni/openal-soft/Alc/backends/solaris.c create mode 100644 love/src/jni/openal-soft/Alc/backends/solaris.cpp create mode 100644 love/src/jni/openal-soft/Alc/backends/solaris.h delete mode 100644 love/src/jni/openal-soft/Alc/backends/wasapi.c create mode 100644 love/src/jni/openal-soft/Alc/backends/wasapi.cpp create mode 100644 love/src/jni/openal-soft/Alc/backends/wasapi.h delete mode 100644 love/src/jni/openal-soft/Alc/backends/wave.c create mode 100644 love/src/jni/openal-soft/Alc/backends/wave.cpp create mode 100644 love/src/jni/openal-soft/Alc/backends/wave.h delete mode 100644 love/src/jni/openal-soft/Alc/backends/winmm.c create mode 100644 love/src/jni/openal-soft/Alc/backends/winmm.cpp create mode 100644 love/src/jni/openal-soft/Alc/backends/winmm.h delete mode 100644 love/src/jni/openal-soft/Alc/bformatdec.c create mode 100644 love/src/jni/openal-soft/Alc/bformatdec.cpp rename love/src/jni/openal-soft/Alc/{bs2b.c => bs2b.cpp} (64%) rename love/src/jni/openal-soft/{OpenAL32/Include => Alc}/bs2b.h (83%) create mode 100644 love/src/jni/openal-soft/Alc/bsinc_defs.h create mode 100644 love/src/jni/openal-soft/Alc/bsinc_tables.cpp create mode 100644 love/src/jni/openal-soft/Alc/bsinc_tables.h create mode 100644 love/src/jni/openal-soft/Alc/buffer_storage.cpp create mode 100644 love/src/jni/openal-soft/Alc/buffer_storage.h create mode 100644 love/src/jni/openal-soft/Alc/bufferline.h delete mode 100644 love/src/jni/openal-soft/Alc/converter.c create mode 100644 love/src/jni/openal-soft/Alc/converter.cpp create mode 100644 love/src/jni/openal-soft/Alc/cpu_caps.cpp create mode 100644 love/src/jni/openal-soft/Alc/devformat.h delete mode 100644 love/src/jni/openal-soft/Alc/effects/autowah.c create mode 100644 love/src/jni/openal-soft/Alc/effects/autowah.cpp create mode 100644 love/src/jni/openal-soft/Alc/effects/base.h delete mode 100644 love/src/jni/openal-soft/Alc/effects/chorus.c create mode 100644 love/src/jni/openal-soft/Alc/effects/chorus.cpp delete mode 100644 love/src/jni/openal-soft/Alc/effects/compressor.c create mode 100644 love/src/jni/openal-soft/Alc/effects/compressor.cpp create mode 100644 love/src/jni/openal-soft/Alc/effects/convolution.cpp delete mode 100644 love/src/jni/openal-soft/Alc/effects/dedicated.c create mode 100644 love/src/jni/openal-soft/Alc/effects/dedicated.cpp delete mode 100644 love/src/jni/openal-soft/Alc/effects/distortion.c create mode 100644 love/src/jni/openal-soft/Alc/effects/distortion.cpp delete mode 100644 love/src/jni/openal-soft/Alc/effects/echo.c create mode 100644 love/src/jni/openal-soft/Alc/effects/echo.cpp delete mode 100644 love/src/jni/openal-soft/Alc/effects/equalizer.c create mode 100644 love/src/jni/openal-soft/Alc/effects/equalizer.cpp delete mode 100644 love/src/jni/openal-soft/Alc/effects/fshifter.c create mode 100644 love/src/jni/openal-soft/Alc/effects/fshifter.cpp delete mode 100644 love/src/jni/openal-soft/Alc/effects/modulator.c create mode 100644 love/src/jni/openal-soft/Alc/effects/modulator.cpp delete mode 100644 love/src/jni/openal-soft/Alc/effects/null.c create mode 100644 love/src/jni/openal-soft/Alc/effects/null.cpp delete mode 100644 love/src/jni/openal-soft/Alc/effects/pshifter.c create mode 100644 love/src/jni/openal-soft/Alc/effects/pshifter.cpp delete mode 100644 love/src/jni/openal-soft/Alc/effects/reverb.c create mode 100644 love/src/jni/openal-soft/Alc/effects/reverb.cpp create mode 100644 love/src/jni/openal-soft/Alc/effects/vmorpher.cpp rename love/src/jni/openal-soft/Alc/filters/{filter.c => biquad.cpp} (50%) create mode 100644 love/src/jni/openal-soft/Alc/filters/biquad.h delete mode 100644 love/src/jni/openal-soft/Alc/filters/defs.h delete mode 100644 love/src/jni/openal-soft/Alc/filters/nfc.c create mode 100644 love/src/jni/openal-soft/Alc/filters/nfc.cpp delete mode 100644 love/src/jni/openal-soft/Alc/filters/splitter.c create mode 100644 love/src/jni/openal-soft/Alc/filters/splitter.cpp create mode 100644 love/src/jni/openal-soft/Alc/fmt_traits.cpp create mode 100644 love/src/jni/openal-soft/Alc/fmt_traits.h create mode 100644 love/src/jni/openal-soft/Alc/fpu_ctrl.cpp create mode 100644 love/src/jni/openal-soft/Alc/fpu_ctrl.h delete mode 100644 love/src/jni/openal-soft/Alc/fpu_modes.h create mode 100644 love/src/jni/openal-soft/Alc/front_stablizer.h delete mode 100644 love/src/jni/openal-soft/Alc/helpers.c create mode 100644 love/src/jni/openal-soft/Alc/helpers.cpp delete mode 100644 love/src/jni/openal-soft/Alc/hrtf.c create mode 100644 love/src/jni/openal-soft/Alc/hrtf.cpp delete mode 100644 love/src/jni/openal-soft/Alc/mastering.c create mode 100644 love/src/jni/openal-soft/Alc/mastering.cpp delete mode 100644 love/src/jni/openal-soft/Alc/mixer/hrtf_inc.c create mode 100644 love/src/jni/openal-soft/Alc/mixer/hrtfbase.h delete mode 100644 love/src/jni/openal-soft/Alc/mixer/mixer_c.c create mode 100644 love/src/jni/openal-soft/Alc/mixer/mixer_c.cpp delete mode 100644 love/src/jni/openal-soft/Alc/mixer/mixer_neon.c create mode 100644 love/src/jni/openal-soft/Alc/mixer/mixer_neon.cpp delete mode 100644 love/src/jni/openal-soft/Alc/mixer/mixer_sse.c create mode 100644 love/src/jni/openal-soft/Alc/mixer/mixer_sse.cpp delete mode 100644 love/src/jni/openal-soft/Alc/mixer/mixer_sse2.c create mode 100644 love/src/jni/openal-soft/Alc/mixer/mixer_sse2.cpp create mode 100644 love/src/jni/openal-soft/Alc/mixer/mixer_sse3.cpp delete mode 100644 love/src/jni/openal-soft/Alc/mixer/mixer_sse41.c create mode 100644 love/src/jni/openal-soft/Alc/mixer/mixer_sse41.cpp delete mode 100644 love/src/jni/openal-soft/Alc/mixvoice.c delete mode 100644 love/src/jni/openal-soft/Alc/panning.c create mode 100644 love/src/jni/openal-soft/Alc/panning.cpp delete mode 100644 love/src/jni/openal-soft/Alc/polymorphism.h delete mode 100644 love/src/jni/openal-soft/Alc/ringbuffer.c create mode 100644 love/src/jni/openal-soft/Alc/ringbuffer.cpp delete mode 100644 love/src/jni/openal-soft/Alc/uhjfilter.c create mode 100644 love/src/jni/openal-soft/Alc/uhjfilter.cpp create mode 100644 love/src/jni/openal-soft/Alc/uiddefs.cpp delete mode 100644 love/src/jni/openal-soft/Alc/vector.h create mode 100644 love/src/jni/openal-soft/Alc/voice.cpp create mode 100644 love/src/jni/openal-soft/Alc/voice.h create mode 100644 love/src/jni/openal-soft/BSD-3Clause delete mode 100644 love/src/jni/openal-soft/OpenAL32/Include/alAuxEffectSlot.h delete mode 100644 love/src/jni/openal-soft/OpenAL32/Include/alBuffer.h delete mode 100644 love/src/jni/openal-soft/OpenAL32/Include/alEffect.h delete mode 100644 love/src/jni/openal-soft/OpenAL32/Include/alError.h delete mode 100644 love/src/jni/openal-soft/OpenAL32/Include/alFilter.h delete mode 100644 love/src/jni/openal-soft/OpenAL32/Include/alListener.h delete mode 100644 love/src/jni/openal-soft/OpenAL32/Include/alMain.h delete mode 100644 love/src/jni/openal-soft/OpenAL32/Include/alSource.h delete mode 100644 love/src/jni/openal-soft/OpenAL32/Include/alu.h delete mode 100644 love/src/jni/openal-soft/OpenAL32/Include/sample_cvt.h delete mode 100644 love/src/jni/openal-soft/OpenAL32/alAuxEffectSlot.c delete mode 100644 love/src/jni/openal-soft/OpenAL32/alBuffer.c delete mode 100644 love/src/jni/openal-soft/OpenAL32/alEffect.c delete mode 100644 love/src/jni/openal-soft/OpenAL32/alFilter.c delete mode 100644 love/src/jni/openal-soft/OpenAL32/alListener.c delete mode 100644 love/src/jni/openal-soft/OpenAL32/alSource.c delete mode 100644 love/src/jni/openal-soft/OpenAL32/alState.c delete mode 100644 love/src/jni/openal-soft/OpenAL32/event.c delete mode 100644 love/src/jni/openal-soft/OpenAL32/sample_cvt.c create mode 100644 love/src/jni/openal-soft/al/auxeffectslot.cpp create mode 100644 love/src/jni/openal-soft/al/auxeffectslot.h create mode 100644 love/src/jni/openal-soft/al/buffer.cpp create mode 100644 love/src/jni/openal-soft/al/buffer.h create mode 100644 love/src/jni/openal-soft/al/effect.cpp create mode 100644 love/src/jni/openal-soft/al/effect.h rename love/src/jni/openal-soft/{OpenAL32/alError.c => al/error.cpp} (52%) create mode 100644 love/src/jni/openal-soft/al/event.cpp create mode 100644 love/src/jni/openal-soft/al/event.h rename love/src/jni/openal-soft/{OpenAL32/alExtension.c => al/extension.cpp} (58%) create mode 100644 love/src/jni/openal-soft/al/filter.cpp create mode 100644 love/src/jni/openal-soft/al/filter.h create mode 100644 love/src/jni/openal-soft/al/listener.cpp create mode 100644 love/src/jni/openal-soft/al/listener.h create mode 100644 love/src/jni/openal-soft/al/source.cpp create mode 100644 love/src/jni/openal-soft/al/source.h create mode 100644 love/src/jni/openal-soft/al/state.cpp delete mode 100644 love/src/jni/openal-soft/bsinc_inc.h delete mode 100644 love/src/jni/openal-soft/cmake/CheckFileOffsetBits.c delete mode 100644 love/src/jni/openal-soft/cmake/CheckFileOffsetBits.cmake delete mode 100644 love/src/jni/openal-soft/cmake/CheckSharedFunctionExists.cmake create mode 100644 love/src/jni/openal-soft/cmake/FindMySOFA.cmake create mode 100644 love/src/jni/openal-soft/cmake/FindOboe.cmake create mode 100644 love/src/jni/openal-soft/cmake/FindOpenSL.cmake delete mode 100644 love/src/jni/openal-soft/cmake/FindQSA.cmake delete mode 100644 love/src/jni/openal-soft/cmake/FindSDL_sound.cmake create mode 100644 love/src/jni/openal-soft/cmake/FindSndFile.cmake create mode 100644 love/src/jni/openal-soft/cmake/bin2h.script.cmake create mode 100644 love/src/jni/openal-soft/common/albyte.h delete mode 100644 love/src/jni/openal-soft/common/alcomplex.c create mode 100644 love/src/jni/openal-soft/common/alcomplex.cpp create mode 100644 love/src/jni/openal-soft/common/alexcpt.cpp create mode 100644 love/src/jni/openal-soft/common/alexcpt.h create mode 100644 love/src/jni/openal-soft/common/alfstream.cpp create mode 100644 love/src/jni/openal-soft/common/alfstream.h delete mode 100644 love/src/jni/openal-soft/common/align.h delete mode 100644 love/src/jni/openal-soft/common/almalloc.c create mode 100644 love/src/jni/openal-soft/common/almalloc.cpp create mode 100644 love/src/jni/openal-soft/common/alnumeric.h create mode 100644 love/src/jni/openal-soft/common/aloptional.h create mode 100644 love/src/jni/openal-soft/common/alspan.h create mode 100644 love/src/jni/openal-soft/common/alstring.cpp create mode 100644 love/src/jni/openal-soft/common/alstring.h delete mode 100644 love/src/jni/openal-soft/common/atomic.c delete mode 100644 love/src/jni/openal-soft/common/bool.h create mode 100644 love/src/jni/openal-soft/common/dynload.cpp create mode 100644 love/src/jni/openal-soft/common/dynload.h create mode 100644 love/src/jni/openal-soft/common/endiantest.h create mode 100644 love/src/jni/openal-soft/common/intrusive_ptr.h create mode 100644 love/src/jni/openal-soft/common/opthelpers.h create mode 100644 love/src/jni/openal-soft/common/polyphase_resampler.cpp create mode 100644 love/src/jni/openal-soft/common/polyphase_resampler.h create mode 100644 love/src/jni/openal-soft/common/pragmadefs.h delete mode 100644 love/src/jni/openal-soft/common/rwlock.c delete mode 100644 love/src/jni/openal-soft/common/rwlock.h delete mode 100644 love/src/jni/openal-soft/common/static_assert.h create mode 100644 love/src/jni/openal-soft/common/strutils.cpp create mode 100644 love/src/jni/openal-soft/common/strutils.h delete mode 100644 love/src/jni/openal-soft/common/threads.c create mode 100644 love/src/jni/openal-soft/common/threads.cpp delete mode 100644 love/src/jni/openal-soft/common/uintmap.c delete mode 100644 love/src/jni/openal-soft/common/uintmap.h create mode 100644 love/src/jni/openal-soft/common/vecmat.h create mode 100644 love/src/jni/openal-soft/common/vector.h create mode 100644 love/src/jni/openal-soft/examples/alconvolve.c create mode 100644 love/src/jni/openal-soft/examples/alstreamcb.cpp create mode 100644 love/src/jni/openal-soft/hrtf/Default HRTF.mhr delete mode 100644 love/src/jni/openal-soft/hrtf/default-44100.mhr delete mode 100644 love/src/jni/openal-soft/hrtf/default-48000.mhr create mode 100644 love/src/jni/openal-soft/hrtf_default.h delete mode 100644 love/src/jni/openal-soft/native-tools/CMakeLists.txt delete mode 100644 love/src/jni/openal-soft/native-tools/bin2h.c delete mode 100644 love/src/jni/openal-soft/native-tools/bsincgen.c create mode 100644 love/src/jni/openal-soft/opensl_latency.cpp create mode 100644 love/src/jni/openal-soft/resources/openal32.rc create mode 100644 love/src/jni/openal-soft/resources/resource.h create mode 100644 love/src/jni/openal-soft/resources/router.rc create mode 100644 love/src/jni/openal-soft/resources/soft_oal.rc rename love/src/jni/openal-soft/router/{al.c => al.cpp} (85%) rename love/src/jni/openal-soft/router/{alc.c => alc.cpp} (57%) rename love/src/jni/openal-soft/router/{router.c => router.cpp} (50%) create mode 100644 love/src/jni/openal-soft/utils/MIT_KEMAR_sofa.def create mode 100644 love/src/jni/openal-soft/utils/SCUT_KEMAR.def create mode 100644 love/src/jni/openal-soft/utils/alsoft-config/verstr.cpp create mode 100644 love/src/jni/openal-soft/utils/alsoft-config/verstr.h delete mode 100644 love/src/jni/openal-soft/utils/bsincgen.c delete mode 100644 love/src/jni/openal-soft/utils/makehrtf.c create mode 100644 love/src/jni/openal-soft/utils/makemhr/loaddef.cpp create mode 100644 love/src/jni/openal-soft/utils/makemhr/loaddef.h create mode 100644 love/src/jni/openal-soft/utils/makemhr/loadsofa.cpp create mode 100644 love/src/jni/openal-soft/utils/makemhr/loadsofa.h create mode 100644 love/src/jni/openal-soft/utils/makemhr/makemhr.cpp create mode 100644 love/src/jni/openal-soft/utils/makemhr/makemhr.h create mode 100644 love/src/jni/openal-soft/utils/sofa-info.cpp create mode 100644 love/src/jni/openal-soft/utils/sofa-support.cpp create mode 100644 love/src/jni/openal-soft/utils/sofa-support.h diff --git a/love/src/jni/oboe/.gitignore b/love/src/jni/oboe/.gitignore new file mode 100644 index 00000000..508af1b1 --- /dev/null +++ b/love/src/jni/oboe/.gitignore @@ -0,0 +1,6 @@ +*/.DS_Store +.DS_Store +.externalNativeBuild/ +.cxx/ +.idea +build diff --git a/love/src/jni/oboe/.travis.yml b/love/src/jni/oboe/.travis.yml new file mode 100644 index 00000000..98549745 --- /dev/null +++ b/love/src/jni/oboe/.travis.yml @@ -0,0 +1,30 @@ +language: android +sudo: true +android: + components: + - tools + - platform-tools + - extra-google-m2repository + - extra-android-m2repository +addons: + apt_packages: + - pandoc +before_install: + - sudo apt-get install ant +install: + - touch ~/.android/repositories.cfg + - echo y | sdkmanager "ndk-bundle" + - echo y | sdkmanager "cmake;3.6.4111459" + # the following line triggers Trivis-CI's 4MB log limit + # - sdkmanager --update +before_script: + - export ANDROID_NDK_HOME=$ANDROID_HOME/ndk-bundle + +script: + # scripts excutes inside our repo directory on CI machine + - export SAMPLE_CI_RESULT=0 + - source .ci_tools/setup_env.sh + - source .ci_tools/build_samples.sh + - source .ci_tools/run_samples.sh + - source .ci_tools/misc_ci.sh + - eval "[[ $SAMPLE_CI_RESULT == 0 ]]" diff --git a/love/src/jni/oboe/AUTHORS b/love/src/jni/oboe/AUTHORS new file mode 100644 index 00000000..6ca313d2 --- /dev/null +++ b/love/src/jni/oboe/AUTHORS @@ -0,0 +1,9 @@ +# This is the official list of authors for copyright purposes. +# This file is distinct from the CONTRIBUTORS files. +# See the latter for an explanation. + +# Names should be added to this file as: +# Name or Organization +# The email address is not required for organizations. + +Google Inc. diff --git a/love/src/jni/oboe/Android.mk b/love/src/jni/oboe/Android.mk new file mode 100644 index 00000000..c4a641a3 --- /dev/null +++ b/love/src/jni/oboe/Android.mk @@ -0,0 +1,84 @@ +LOCAL_PATH:= $(call my-dir) +include $(CLEAR_VARS) + +# +# Module +# +LOCAL_MODULE := oboe +LOCAL_ARM_NEON := true + +# +# Flags +# +LOCAL_CFLAGS := -Wall -Wextra-semi -Wshadow -Wshadow-field +LOCAL_CPPFLAGS := -std=c++14 + +# +# Include paths +# +LOCAL_C_INCLUDES := \ + $(LOCAL_PATH)/include \ + $(LOCAL_PATH)/src +LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/include + +# +# Source files +# +LOCAL_SRC_FILES := \ + src/aaudio/AAudioLoader.cpp \ + src/aaudio/AudioStreamAAudio.cpp \ + src/common/AudioSourceCaller.cpp \ + src/common/AudioStream.cpp \ + src/common/AudioStreamBuilder.cpp \ + src/common/DataConversionFlowGraph.cpp \ + src/common/FilterAudioStream.cpp \ + src/common/FixedBlockAdapter.cpp \ + src/common/FixedBlockReader.cpp \ + src/common/FixedBlockWriter.cpp \ + src/common/LatencyTuner.cpp \ + src/common/SourceFloatCaller.cpp \ + src/common/SourceI16Caller.cpp \ + src/common/Utilities.cpp \ + src/common/QuirksManager.cpp \ + src/fifo/FifoBuffer.cpp \ + src/fifo/FifoController.cpp \ + src/fifo/FifoControllerBase.cpp \ + src/fifo/FifoControllerIndirect.cpp \ + src/flowgraph/FlowGraphNode.cpp \ + src/flowgraph/ClipToRange.cpp \ + src/flowgraph/ManyToMultiConverter.cpp \ + src/flowgraph/MonoToMultiConverter.cpp \ + src/flowgraph/RampLinear.cpp \ + src/flowgraph/SampleRateConverter.cpp \ + src/flowgraph/SinkFloat.cpp \ + src/flowgraph/SinkI16.cpp \ + src/flowgraph/SinkI24.cpp \ + src/flowgraph/SourceFloat.cpp \ + src/flowgraph/SourceI16.cpp \ + src/flowgraph/SourceI24.cpp \ + src/flowgraph/resampler/IntegerRatio.cpp \ + src/flowgraph/resampler/LinearResampler.cpp \ + src/flowgraph/resampler/MultiChannelResampler.cpp \ + src/flowgraph/resampler/PolyphaseResampler.cpp \ + src/flowgraph/resampler/PolyphaseResamplerMono.cpp \ + src/flowgraph/resampler/PolyphaseResamplerStereo.cpp \ + src/flowgraph/resampler/SincResampler.cpp \ + src/flowgraph/resampler/SincResamplerStereo.cpp \ + src/opensles/AudioInputStreamOpenSLES.cpp \ + src/opensles/AudioOutputStreamOpenSLES.cpp \ + src/opensles/AudioStreamBuffered.cpp \ + src/opensles/AudioStreamOpenSLES.cpp \ + src/opensles/EngineOpenSLES.cpp \ + src/opensles/OpenSLESUtilities.cpp \ + src/opensles/OutputMixerOpenSLES.cpp \ + src/common/StabilizedCallback.cpp \ + src/common/Trace.cpp \ + src/common/Version.cpp + +# +# Libraries related +# +LOCAL_LDLIBS := -llog + +# Build +include $(BUILD_STATIC_LIBRARY) diff --git a/love/src/jni/oboe/CMakeLists.txt b/love/src/jni/oboe/CMakeLists.txt new file mode 100644 index 00000000..8a6b632e --- /dev/null +++ b/love/src/jni/oboe/CMakeLists.txt @@ -0,0 +1,92 @@ +cmake_minimum_required(VERSION 3.4.1) + +# Set the name of the project and store it in PROJECT_NAME. Also set the following variables: +# PROJECT_SOURCE_DIR (usually the root directory where Oboe has been cloned e.g.) +# PROJECT_BINARY_DIR (usually the containing project's binary directory, +# e.g. ${OBOE_HOME}/samples/RhythmGame/.externalNativeBuild/cmake/ndkExtractorDebug/x86/oboe-bin) +project(oboe) + +set (oboe_sources + src/aaudio/AAudioLoader.cpp + src/aaudio/AudioStreamAAudio.cpp + src/common/AudioSourceCaller.cpp + src/common/AudioStream.cpp + src/common/AudioStreamBuilder.cpp + src/common/DataConversionFlowGraph.cpp + src/common/FilterAudioStream.cpp + src/common/FixedBlockAdapter.cpp + src/common/FixedBlockReader.cpp + src/common/FixedBlockWriter.cpp + src/common/LatencyTuner.cpp + src/common/SourceFloatCaller.cpp + src/common/SourceI16Caller.cpp + src/common/Utilities.cpp + src/common/QuirksManager.cpp + src/fifo/FifoBuffer.cpp + src/fifo/FifoController.cpp + src/fifo/FifoControllerBase.cpp + src/fifo/FifoControllerIndirect.cpp + src/flowgraph/FlowGraphNode.cpp + src/flowgraph/ClipToRange.cpp + src/flowgraph/ManyToMultiConverter.cpp + src/flowgraph/MonoToMultiConverter.cpp + src/flowgraph/RampLinear.cpp + src/flowgraph/SampleRateConverter.cpp + src/flowgraph/SinkFloat.cpp + src/flowgraph/SinkI16.cpp + src/flowgraph/SinkI24.cpp + src/flowgraph/SourceFloat.cpp + src/flowgraph/SourceI16.cpp + src/flowgraph/SourceI24.cpp + src/flowgraph/resampler/IntegerRatio.cpp + src/flowgraph/resampler/LinearResampler.cpp + src/flowgraph/resampler/MultiChannelResampler.cpp + src/flowgraph/resampler/PolyphaseResampler.cpp + src/flowgraph/resampler/PolyphaseResamplerMono.cpp + src/flowgraph/resampler/PolyphaseResamplerStereo.cpp + src/flowgraph/resampler/SincResampler.cpp + src/flowgraph/resampler/SincResamplerStereo.cpp + src/opensles/AudioInputStreamOpenSLES.cpp + src/opensles/AudioOutputStreamOpenSLES.cpp + src/opensles/AudioStreamBuffered.cpp + src/opensles/AudioStreamOpenSLES.cpp + src/opensles/EngineOpenSLES.cpp + src/opensles/OpenSLESUtilities.cpp + src/opensles/OutputMixerOpenSLES.cpp + src/common/StabilizedCallback.cpp + src/common/Trace.cpp + src/common/Version.cpp + ) + +add_library(oboe ${oboe_sources}) + +# Specify directories which the compiler should look for headers +target_include_directories(oboe + PRIVATE src + PUBLIC include) + +# Compile Flags: +# Enable -Werror when building debug config +# Enable -Ofast +target_compile_options(oboe + PRIVATE + -std=c++14 + -Wall + -Wextra-semi + -Wshadow + -Wshadow-field + -Ofast + "$<$:-Werror>") + +# Enable logging of D,V for debug builds +target_compile_definitions(oboe PUBLIC $<$:OBOE_ENABLE_LOGGING=1>) + +target_link_libraries(oboe PRIVATE log OpenSLES) + +# When installing oboe put the libraries in the lib/ folder e.g. lib/arm64-v8a +install(TARGETS oboe + LIBRARY DESTINATION lib/${ANDROID_ABI} + ARCHIVE DESTINATION lib/${ANDROID_ABI}) + +# Also install the headers +install(DIRECTORY include/oboe DESTINATION include) \ No newline at end of file diff --git a/love/src/jni/oboe/CONTRIBUTING b/love/src/jni/oboe/CONTRIBUTING new file mode 100644 index 00000000..5d9ff17d --- /dev/null +++ b/love/src/jni/oboe/CONTRIBUTING @@ -0,0 +1 @@ +Please see the CONTRIBUTING.md file for more information. diff --git a/love/src/jni/oboe/CONTRIBUTING.md b/love/src/jni/oboe/CONTRIBUTING.md new file mode 100644 index 00000000..88f06d06 --- /dev/null +++ b/love/src/jni/oboe/CONTRIBUTING.md @@ -0,0 +1,25 @@ +Want to contribute? Great! First, read this page (including the small print at the end). + +### Before you contribute +Before we can use your code, you must sign the +[Google Individual Contributor License +Agreement](https://developers.google.com/open-source/cla/individual?csw=1) +(CLA), which you can do online. The CLA is necessary mainly because you own the +copyright to your changes, even after your contribution becomes part of our +codebase, so we need your permission to use and distribute your code. We also +need to be sure of various other things—for instance that you'll tell us if you +know that your code infringes on other people's patents. You don't have to sign +the CLA until after you've submitted your code for review and a member has +approved it, but you must do it before we can put your code into our codebase. +Before you start working on a larger contribution, you should get in touch with +us first through the issue tracker with your idea so that we can help out and +possibly guide you. Coordinating up front makes it much easier to avoid +frustration later on. + +### Code reviews +All submissions, including submissions by project members, require review. We +use Github pull requests for this purpose. + +### The small print +Contributions made by corporations are covered by a different agreement than +the one above, the Software Grant and Corporate Contributor License Agreement. diff --git a/love/src/jni/oboe/CONTRIBUTORS b/love/src/jni/oboe/CONTRIBUTORS new file mode 100644 index 00000000..0b77924b --- /dev/null +++ b/love/src/jni/oboe/CONTRIBUTORS @@ -0,0 +1,14 @@ +# People who have agreed to one of the CLAs and can contribute patches. +# The AUTHORS file lists the copyright holders; this file +# lists people. For example, Google employees are listed here +# but not in AUTHORS, because Google holds the copyright. +# +# https://developers.google.com/open-source/cla/individual +# https://developers.google.com/open-source/cla/corporate +# +# Names should be added to this file as: +# Name + +Phil Burk +Don Turner +Mikhail Naganov diff --git a/love/src/jni/oboe/Doxyfile b/love/src/jni/oboe/Doxyfile new file mode 100644 index 00000000..12b0b596 --- /dev/null +++ b/love/src/jni/oboe/Doxyfile @@ -0,0 +1,2482 @@ +# Doxyfile 1.8.14 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a double hash (##) is considered a comment and is placed in +# front of the TAG it is preceding. +# +# All text after a single hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists, items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (\" \"). + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all text +# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv +# built into libc) for the transcoding. See +# https://www.gnu.org/software/libiconv/ for the list of possible encodings. +# The default value is: UTF-8. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by +# double-quotes, unless you are using Doxywizard) that should identify the +# project for which the documentation is generated. This name is used in the +# title of most generated pages and in a few other places. +# The default value is: My Project. + +PROJECT_NAME = "Oboe" + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. This +# could be handy for archiving the generated documentation or if some version +# control system is used. + +PROJECT_NUMBER = 1.2 + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer a +# quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = "A library for creating real-time audio apps on Android" + +# With the PROJECT_LOGO tag one can specify a logo or an icon that is included +# in the documentation. The maximum height of the logo should not exceed 55 +# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy +# the logo to the output directory. + +PROJECT_LOGO = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path +# into which the generated documentation will be written. If a relative path is +# entered, it will be relative to the location where doxygen was started. If +# left blank the current directory will be used. + +OUTPUT_DIRECTORY = docs + +# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- +# directories (in 2 levels) under the output directory of each output format and +# will distribute the generated files over these directories. Enabling this +# option can be useful when feeding doxygen a huge amount of source files, where +# putting all generated files in the same directory would otherwise causes +# performance problems for the file system. +# The default value is: NO. + +CREATE_SUBDIRS = NO + +# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII +# characters to appear in the names of generated files. If set to NO, non-ASCII +# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode +# U+3044. +# The default value is: NO. + +ALLOW_UNICODE_NAMES = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, +# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), +# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, +# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), +# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, +# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, +# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, +# Ukrainian and Vietnamese. +# The default value is: English. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member +# descriptions after the members that are listed in the file and class +# documentation (similar to Javadoc). Set to NO to disable this. +# The default value is: YES. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief +# description of a member or function before the detailed description +# +# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. +# The default value is: YES. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator that is +# used to form the text in various listings. Each string in this list, if found +# as the leading text of the brief description, will be stripped from the text +# and the result, after processing the whole list, is used as the annotated +# text. Otherwise, the brief description is used as-is. If left blank, the +# following values are used ($name is automatically replaced with the name of +# the entity):The $name class, The $name widget, The $name file, is, provides, +# specifies, contains, represents, a, an and the. + +ABBREVIATE_BRIEF = "The $name class" \ + "The $name widget" \ + "The $name file" \ + is \ + provides \ + specifies \ + contains \ + represents \ + a \ + an \ + the + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# doxygen will generate a detailed section even if there is only a brief +# description. +# The default value is: NO. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. +# The default value is: NO. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path +# before files name in the file list and in the header files. If set to NO the +# shortest path that makes the file name unique will be used +# The default value is: YES. + +FULL_PATH_NAMES = YES + +# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. +# Stripping is only done if one of the specified strings matches the left-hand +# part of the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the path to +# strip. +# +# Note that you can specify absolute paths here, but also relative paths, which +# will be relative from the directory where doxygen is started. +# This tag requires that the tag FULL_PATH_NAMES is set to YES. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the +# path mentioned in the documentation of a class, which tells the reader which +# header file to include in order to use a class. If left blank only the name of +# the header file containing the class definition is used. Otherwise one should +# specify the list of include paths that are normally passed to the compiler +# using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but +# less readable) file names. This can be useful is your file systems doesn't +# support long names like on DOS, Mac, or CD-ROM. +# The default value is: NO. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the +# first line (until the first dot) of a Javadoc-style comment as the brief +# description. If set to NO, the Javadoc-style will behave just like regular Qt- +# style comments (thus requiring an explicit @brief command for a brief +# description.) +# The default value is: NO. + +JAVADOC_AUTOBRIEF = NO + +# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first +# line (until the first dot) of a Qt-style comment as the brief description. If +# set to NO, the Qt-style will behave just like regular Qt-style comments (thus +# requiring an explicit \brief command for a brief description.) +# The default value is: NO. + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a +# multi-line C++ special comment block (i.e. a block of //! or /// comments) as +# a brief description. This used to be the default behavior. The new default is +# to treat a multi-line C++ comment block as a detailed description. Set this +# tag to YES if you prefer the old behavior instead. +# +# Note that setting this tag to YES also means that rational rose comments are +# not recognized any more. +# The default value is: NO. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the +# documentation from any documented member that it re-implements. +# The default value is: YES. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new +# page for each member. If set to NO, the documentation of a member will be part +# of the file/class/namespace that contains it. +# The default value is: NO. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen +# uses this value to replace tabs by spaces in code fragments. +# Minimum value: 1, maximum value: 16, default value: 4. + +TAB_SIZE = 4 + +# This tag can be used to specify a number of aliases that act as commands in +# the documentation. An alias has the form: +# name=value +# For example adding +# "sideeffect=@par Side Effects:\n" +# will allow you to put the command \sideeffect (or @sideeffect) in the +# documentation, which will result in a user-defined paragraph with heading +# "Side Effects:". You can put \n's in the value part of an alias to insert +# newlines (in the resulting output). You can put ^^ in the value part of an +# alias to insert a newline as if a physical newline was in the original file. + +ALIASES = + +# This tag can be used to specify a number of word-keyword mappings (TCL only). +# A mapping has the form "name=value". For example adding "class=itcl::class" +# will allow you to use the command class in the itcl::class meaning. + +TCL_SUBST = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources +# only. Doxygen will then generate output that is more tailored for C. For +# instance, some of the names that are used will be different. The list of all +# members will be omitted, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or +# Python sources only. Doxygen will then generate output that is more tailored +# for that language. For instance, namespaces will be presented as packages, +# qualified scopes will look different, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources. Doxygen will then generate output that is tailored for Fortran. +# The default value is: NO. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for VHDL. +# The default value is: NO. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given +# extension. Doxygen has a built-in mapping, but you can override or extend it +# using this tag. The format is ext=language, where ext is a file extension, and +# language is one of the parsers supported by doxygen: IDL, Java, Javascript, +# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: +# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: +# Fortran. In the later case the parser tries to guess whether the code is fixed +# or free formatted code, this is the default for Fortran type files), VHDL. For +# instance to make doxygen treat .inc files as Fortran files (default is PHP), +# and .f files as C (default is Fortran), use: inc=Fortran f=C. +# +# Note: For files without extension you can use no_extension as a placeholder. +# +# Note that for custom extensions you also need to set FILE_PATTERNS otherwise +# the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments +# according to the Markdown format, which allows for more readable +# documentation. See http://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you can +# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in +# case of backward compatibilities issues. +# The default value is: YES. + +MARKDOWN_SUPPORT = YES + +# When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up +# to that level are automatically included in the table of contents, even if +# they do not have an id attribute. +# Note: This feature currently applies only to Markdown headings. +# Minimum value: 0, maximum value: 99, default value: 0. +# This tag requires that the tag MARKDOWN_SUPPORT is set to YES. + +TOC_INCLUDE_HEADINGS = 0 + +# When enabled doxygen tries to link words that correspond to documented +# classes, or namespaces to their corresponding documentation. Such a link can +# be prevented in individual cases by putting a % sign in front of the word or +# globally by setting AUTOLINK_SUPPORT to NO. +# The default value is: YES. + +AUTOLINK_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should set this +# tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); +# versus func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. +# The default value is: NO. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. +# The default value is: NO. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: +# https://www.riverbankcomputing.com/software/sip/intro) sources only. Doxygen +# will parse them like normal C++ but will assume all classes use public instead +# of private inheritance when no explicit protection keyword is present. +# The default value is: NO. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate +# getter and setter methods for a property. Setting this option to YES will make +# doxygen to replace the get and set methods by a property in the documentation. +# This will only work if the methods are indeed getting or setting a simple +# type. If this is not the case, or you want to show the methods anyway, you +# should set this option to NO. +# The default value is: YES. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. +# The default value is: NO. + +DISTRIBUTE_GROUP_DOC = NO + +# If one adds a struct or class to a group and this option is enabled, then also +# any nested class or struct is added to the same group. By default this option +# is disabled and one has to add nested compounds explicitly via \ingroup. +# The default value is: NO. + +GROUP_NESTED_COMPOUNDS = NO + +# Set the SUBGROUPING tag to YES to allow class member groups of the same type +# (for instance a group of public functions) to be put as a subgroup of that +# type (e.g. under the Public Functions section). Set it to NO to prevent +# subgrouping. Alternatively, this can be done per class using the +# \nosubgrouping command. +# The default value is: YES. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions +# are shown inside the group in which they are included (e.g. using \ingroup) +# instead of on a separate page (for HTML and Man pages) or section (for LaTeX +# and RTF). +# +# Note that this feature does not work in combination with +# SEPARATE_MEMBER_PAGES. +# The default value is: NO. + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions +# with only public data fields or simple typedef fields will be shown inline in +# the documentation of the scope in which they are defined (i.e. file, +# namespace, or group documentation), provided this scope is documented. If set +# to NO, structs, classes, and unions are shown on a separate page (for HTML and +# Man pages) or section (for LaTeX and RTF). +# The default value is: NO. + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or +# enum is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically be +# useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. +# The default value is: NO. + +TYPEDEF_HIDES_STRUCT = NO + +# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This +# cache is used to resolve symbols given their name and scope. Since this can be +# an expensive process and often the same symbol appears multiple times in the +# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small +# doxygen will become slower. If the cache is too large, memory is wasted. The +# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range +# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 +# symbols. At the end of a run doxygen will report the cache usage and suggest +# the optimal cache size from a speed point of view. +# Minimum value: 0, maximum value: 9, default value: 0. + +LOOKUP_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in +# documentation are documented, even if no documentation was available. Private +# class members and static file members will be hidden unless the +# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. +# Note: This will also disable the warnings about undocumented members that are +# normally produced when WARNINGS is set to YES. +# The default value is: NO. + +EXTRACT_ALL = NO + +# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will +# be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIVATE = NO + +# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal +# scope will be included in the documentation. +# The default value is: NO. + +EXTRACT_PACKAGE = NO + +# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be +# included in the documentation. +# The default value is: NO. + +EXTRACT_STATIC = NO + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined +# locally in source files will be included in the documentation. If set to NO, +# only classes defined in header files are included. Does not have any effect +# for Java sources. +# The default value is: YES. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. If set to YES, local methods, +# which are defined in the implementation section but not in the interface are +# included in the documentation. If set to NO, only methods in the interface are +# included. +# The default value is: NO. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base name of +# the file that contains the anonymous namespace. By default anonymous namespace +# are hidden. +# The default value is: NO. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all +# undocumented members inside documented classes or files. If set to NO these +# members will be included in the various overviews, but no documentation +# section is generated. This option has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. If set +# to NO, these classes will be included in the various overviews. This option +# has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend +# (class|struct|union) declarations. If set to NO, these declarations will be +# included in the documentation. +# The default value is: NO. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any +# documentation blocks found inside the body of a function. If set to NO, these +# blocks will be appended to the function's detailed documentation block. +# The default value is: NO. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation that is typed after a +# \internal command is included. If the tag is set to NO then the documentation +# will be excluded. Set it to YES to include the internal documentation. +# The default value is: NO. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file +# names in lower-case letters. If set to YES, upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. +# The default value is: system dependent. + +CASE_SENSE_NAMES = NO + +# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with +# their full class and namespace scopes in the documentation. If set to YES, the +# scope will be hidden. +# The default value is: NO. + +HIDE_SCOPE_NAMES = NO + +# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will +# append additional text to a page's title, such as Class Reference. If set to +# YES the compound reference will be hidden. +# The default value is: NO. + +HIDE_COMPOUND_REFERENCE= NO + +# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of +# the files that are included by a file in the documentation of that file. +# The default value is: YES. + +SHOW_INCLUDE_FILES = YES + +# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each +# grouped member an include statement to the documentation, telling the reader +# which file to include in order to use the member. +# The default value is: NO. + +SHOW_GROUPED_MEMB_INC = NO + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include +# files with double quotes in the documentation rather than with sharp brackets. +# The default value is: NO. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the +# documentation for inline members. +# The default value is: YES. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the +# (detailed) documentation of file and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. +# The default value is: YES. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief +# descriptions of file, namespace and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. Note that +# this will also influence the order of the classes in the class list. +# The default value is: NO. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the +# (brief and detailed) documentation of class members so that constructors and +# destructors are listed first. If set to NO the constructors will appear in the +# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. +# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief +# member documentation. +# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting +# detailed member documentation. +# The default value is: NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy +# of group names into alphabetical order. If set to NO the group names will +# appear in their defined order. +# The default value is: NO. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by +# fully-qualified names, including namespaces. If set to NO, the class list will +# be sorted only by class name, not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the alphabetical +# list. +# The default value is: NO. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper +# type resolution of all parameters of a function it will reject a match between +# the prototype and the implementation of a member function even if there is +# only one candidate or it is obvious which candidate to choose by doing a +# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still +# accept a match between prototype and implementation in such cases. +# The default value is: NO. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo +# list. This list is created by putting \todo commands in the documentation. +# The default value is: YES. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test +# list. This list is created by putting \test commands in the documentation. +# The default value is: YES. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug +# list. This list is created by putting \bug commands in the documentation. +# The default value is: YES. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) +# the deprecated list. This list is created by putting \deprecated commands in +# the documentation. +# The default value is: YES. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional documentation +# sections, marked by \if ... \endif and \cond +# ... \endcond blocks. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the +# initial value of a variable or macro / define can have for it to appear in the +# documentation. If the initializer consists of more lines than specified here +# it will be hidden. Use a value of 0 to hide initializers completely. The +# appearance of the value of individual variables and macros / defines can be +# controlled using \showinitializer or \hideinitializer command in the +# documentation regardless of this setting. +# Minimum value: 0, maximum value: 10000, default value: 30. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at +# the bottom of the documentation of classes and structs. If set to YES, the +# list will mention the files that were used to generate the documentation. +# The default value is: YES. + +SHOW_USED_FILES = YES + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This +# will remove the Files entry from the Quick Index and from the Folder Tree View +# (if specified). +# The default value is: YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces +# page. This will remove the Namespaces entry from the Quick Index and from the +# Folder Tree View (if specified). +# The default value is: YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command command input-file, where command is the value of the +# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided +# by doxygen. Whatever the program writes to standard output is used as the file +# version. For an example see the documentation. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. To create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. You can +# optionally specify a file name after the option, if omitted DoxygenLayout.xml +# will be used as the name of the layout file. +# +# Note that if you run doxygen from a directory containing a file called +# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE +# tag is left empty. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files containing +# the reference definitions. This must be a list of .bib files. The .bib +# extension is automatically appended if omitted. This requires the bibtex tool +# to be installed. See also https://en.wikipedia.org/wiki/BibTeX for more info. +# For LaTeX the style of the bibliography can be controlled using +# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the +# search path. See also \cite for info how to create references. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# Configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated to +# standard output by doxygen. If QUIET is set to YES this implies that the +# messages are off. +# The default value is: NO. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES +# this implies that the warnings are on. +# +# Tip: Turn warnings on while writing the documentation. +# The default value is: YES. + +WARNINGS = YES + +# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate +# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: YES. + +WARN_IF_UNDOCUMENTED = YES + +# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some parameters +# in a documented function, or documenting parameters that don't exist or using +# markup commands wrongly. +# The default value is: YES. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that +# are documented, but have no documentation for their parameters or return +# value. If set to NO, doxygen will only warn about wrong or incomplete +# parameter documentation, but not about the absence of documentation. +# The default value is: NO. + +WARN_NO_PARAMDOC = NO + +# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when +# a warning is encountered. +# The default value is: NO. + +WARN_AS_ERROR = NO + +# The WARN_FORMAT tag determines the format of the warning messages that doxygen +# can produce. The string should contain the $file, $line, and $text tags, which +# will be replaced by the file and line number from which the warning originated +# and the warning text. Optionally the format may contain $version, which will +# be replaced by the version of the file (if it could be obtained via +# FILE_VERSION_FILTER) +# The default value is: $file:$line: $text. + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning and error +# messages should be written. If left blank the output is written to standard +# error (stderr). + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# Configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag is used to specify the files and/or directories that contain +# documented source files. You may enter file names like myfile.cpp or +# directories like /usr/src/myproject. Separate the files or directories with +# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING +# Note: If this tag is empty the current directory is searched. + +INPUT = include + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses +# libiconv (or the iconv built into libc) for the transcoding. See the libiconv +# documentation (see: https://www.gnu.org/software/libiconv/) for the list of +# possible encodings. +# The default value is: UTF-8. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and +# *.h) to filter out the source-files in the directories. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# read by doxygen. +# +# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp, +# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, +# *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, +# *.m, *.markdown, *.md, *.mm, *.dox, *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, +# *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf and *.qsf. + +FILE_PATTERNS = *.c \ + *.cc \ + *.cxx \ + *.cpp \ + *.c++ \ + *.java \ + *.ii \ + *.ixx \ + *.ipp \ + *.i++ \ + *.inl \ + *.idl \ + *.ddl \ + *.odl \ + *.h \ + *.hh \ + *.hxx \ + *.hpp \ + *.h++ \ + *.cs \ + *.d \ + *.php \ + *.php4 \ + *.php5 \ + *.phtml \ + *.inc \ + *.m \ + *.markdown \ + *.md \ + *.mm \ + *.dox \ + *.py \ + *.pyw \ + *.f90 \ + *.f95 \ + *.f03 \ + *.f08 \ + *.f \ + *.for \ + *.tcl \ + *.vhd \ + *.vhdl \ + *.ucf \ + *.qsf + +# The RECURSIVE tag can be used to specify whether or not subdirectories should +# be searched for input files as well. +# The default value is: NO. + +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. +# The default value is: NO. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories use the pattern */test/* + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or directories +# that contain example code fragments that are included (see the \include +# command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank all +# files are included. + +EXAMPLE_PATTERNS = * + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude commands +# irrespective of the value of the RECURSIVE tag. +# The default value is: NO. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or directories +# that contain images that are to be included in the documentation (see the +# \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command: +# +# +# +# where is the value of the INPUT_FILTER tag, and is the +# name of an input file. Doxygen will then use the output that the filter +# program writes to standard output. If FILTER_PATTERNS is specified, this tag +# will be ignored. +# +# Note that the filter must not add or remove lines; it is applied before the +# code is scanned, but not when the output code is generated. If lines are added +# or removed, the anchors will not be placed correctly. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by doxygen. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: pattern=filter +# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how +# filters are used. If the FILTER_PATTERNS tag is empty or if none of the +# patterns match the file name, INPUT_FILTER is applied. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by doxygen. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will also be used to filter the input files that are used for +# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). +# The default value is: NO. + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and +# it is also possible to disable source filtering for a specific pattern using +# *.ext= (so without naming a filter). +# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. + +FILTER_SOURCE_PATTERNS = + +# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that +# is part of the input, its contents will be placed on the main page +# (index.html). This can be useful if you have a project on for instance GitHub +# and want to reuse the introduction page also for the doxygen output. + +USE_MDFILE_AS_MAINPAGE = + +#--------------------------------------------------------------------------- +# Configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will be +# generated. Documented entities will be cross-referenced with these sources. +# +# Note: To get rid of all source code in the generated output, make sure that +# also VERBATIM_HEADERS is set to NO. +# The default value is: NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body of functions, +# classes and enums directly into the documentation. +# The default value is: NO. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any +# special comment blocks from generated source code fragments. Normal C, C++ and +# Fortran comments will always remain visible. +# The default value is: YES. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES then for each documented +# function all documented functions referencing it will be listed. +# The default value is: NO. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES then for each documented function +# all documented entities called/used by that function will be listed. +# The default value is: NO. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set +# to YES then the hyperlinks from functions in REFERENCES_RELATION and +# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will +# link to the documentation. +# The default value is: YES. + +REFERENCES_LINK_SOURCE = YES + +# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the +# source code will show a tooltip with additional information such as prototype, +# brief description and links to the definition and documentation. Since this +# will make the HTML file larger and loading of large files a bit slower, you +# can opt to disable this feature. +# The default value is: YES. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +SOURCE_TOOLTIPS = YES + +# If the USE_HTAGS tag is set to YES then the references to source code will +# point to the HTML generated by the htags(1) tool instead of doxygen built-in +# source browser. The htags tool is part of GNU's global source tagging system +# (see https://www.gnu.org/software/global/global.html). You will need version +# 4.8.6 or higher. +# +# To use it do the following: +# - Install the latest version of global +# - Enable SOURCE_BROWSER and USE_HTAGS in the config file +# - Make sure the INPUT points to the root of the source tree +# - Run doxygen as normal +# +# Doxygen will invoke htags (and that will in turn invoke gtags), so these +# tools must be available from the command line (i.e. in the search path). +# +# The result: instead of the source browser generated by doxygen, the links to +# source code will now point to the output of htags. +# The default value is: NO. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a +# verbatim copy of the header file for each class for which an include is +# specified. Set to NO to disable this. +# See also: Section \class. +# The default value is: YES. + +VERBATIM_HEADERS = YES + +#--------------------------------------------------------------------------- +# Configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all +# compounds will be generated. Enable this if the project contains a lot of +# classes, structs, unions or interfaces. +# The default value is: YES. + +ALPHABETICAL_INDEX = YES + +# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in +# which the alphabetical index list will be split. +# Minimum value: 1, maximum value: 20, default value: 5. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all classes will +# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag +# can be used to specify a prefix (or a list of prefixes) that should be ignored +# while generating the index headers. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output +# The default value is: YES. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_OUTPUT = reference + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each +# generated HTML page (for example: .htm, .php, .asp). +# The default value is: .html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a user-defined HTML header file for +# each generated HTML page. If the tag is left blank doxygen will generate a +# standard header. +# +# To get valid HTML the header file that includes any scripts and style sheets +# that doxygen needs, which is dependent on the configuration options used (e.g. +# the setting GENERATE_TREEVIEW). It is highly recommended to start with a +# default header using +# doxygen -w html new_header.html new_footer.html new_stylesheet.css +# YourConfigFile +# and then modify the file new_header.html. See also section "Doxygen usage" +# for information on how to generate the default header that doxygen normally +# uses. +# Note: The header is subject to change so you typically have to regenerate the +# default header when upgrading to a newer version of doxygen. For a description +# of the possible markers and block names see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each +# generated HTML page. If the tag is left blank doxygen will generate a standard +# footer. See HTML_HEADER for more information on how to generate a default +# footer and what special commands can be used inside the footer. See also +# section "Doxygen usage" for information on how to generate the default footer +# that doxygen normally uses. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style +# sheet that is used by each HTML page. It can be used to fine-tune the look of +# the HTML output. If left blank doxygen will generate a default style sheet. +# See also section "Doxygen usage" for information on how to generate the style +# sheet that doxygen normally uses. +# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as +# it is more robust and this tag (HTML_STYLESHEET) will in the future become +# obsolete. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_STYLESHEET = + +# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# cascading style sheets that are included after the standard style sheets +# created by doxygen. Using this option one can overrule certain style aspects. +# This is preferred over using HTML_STYLESHEET since it does not replace the +# standard style sheet and is therefore more robust against future updates. +# Doxygen will copy the style sheet files to the output directory. +# Note: The order of the extra style sheet files is of importance (e.g. the last +# style sheet in the list overrules the setting of the previous ones in the +# list). For an example see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that the +# files will be copied as-is; there are no commands or markers available. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen +# will adjust the colors in the style sheet and background images according to +# this color. Hue is specified as an angle on a colorwheel, see +# https://en.wikipedia.org/wiki/Hue for more information. For instance the value +# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 +# purple, and 360 is red again. +# Minimum value: 0, maximum value: 359, default value: 220. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors +# in the HTML output. For a value of 0 the output will use grayscales only. A +# value of 255 will produce the most vivid colors. +# Minimum value: 0, maximum value: 255, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the +# luminance component of the colors in the HTML output. Values below 100 +# gradually make the output lighter, whereas values above 100 make the output +# darker. The value divided by 100 is the actual gamma applied, so 80 represents +# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not +# change the gamma. +# Minimum value: 40, maximum value: 240, default value: 80. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting this +# to YES can help to show when doxygen was last run and thus if the +# documentation is up to date. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_TIMESTAMP = NO + +# If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML +# documentation will contain a main index with vertical navigation menus that +# are dynamically created via Javascript. If disabled, the navigation index will +# consists of multiple levels of tabs that are statically embedded in every HTML +# page. Disable this option to support browsers that do not have Javascript, +# like the Qt help browser. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_MENUS = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_SECTIONS = NO + +# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries +# shown in the various tree structured indices initially; the user can expand +# and collapse entries dynamically later on. Doxygen will expand the tree to +# such a level that at most the specified number of entries are visible (unless +# a fully collapsed tree already exceeds this amount). So setting the number of +# entries 1 will produce a full collapsed tree by default. 0 is a special value +# representing an infinite number of entries and will result in a full expanded +# tree by default. +# Minimum value: 0, maximum value: 9999, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_INDEX_NUM_ENTRIES = 100 + +# If the GENERATE_DOCSET tag is set to YES, additional index files will be +# generated that can be used as input for Apple's Xcode 3 integrated development +# environment (see: https://developer.apple.com/tools/xcode/), introduced with +# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a +# Makefile in the HTML output directory. Running make will produce the docset in +# that directory and running make install will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at +# startup. See https://developer.apple.com/tools/creatingdocsetswithdoxygen.html +# for more information. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_DOCSET = NO + +# This tag determines the name of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# The default value is: Doxygen generated docs. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# This tag specifies a string that should uniquely identify the documentation +# set bundle. This should be a reverse domain-name style string, e.g. +# com.mycompany.MyDocSet. Doxygen will append .docset to the name. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. +# The default value is: org.doxygen.Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. +# The default value is: Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three +# additional HTML index files: index.hhp, index.hhc, and index.hhk. The +# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop +# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on +# Windows. +# +# The HTML Help Workshop contains a compiler that can convert all HTML output +# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML +# files are now used as the Windows 98 help format, and will replace the old +# Windows help format (.hlp) on all Windows platforms in the future. Compressed +# HTML files also contain an index, a table of contents, and you can search for +# words in the documentation. The HTML workshop also contains a viewer for +# compressed HTML files. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_HTMLHELP = NO + +# The CHM_FILE tag can be used to specify the file name of the resulting .chm +# file. You can add a path in front of the file if the result should not be +# written to the html output directory. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_FILE = + +# The HHC_LOCATION tag can be used to specify the location (absolute path +# including file name) of the HTML help compiler (hhc.exe). If non-empty, +# doxygen will try to run the HTML help compiler on the generated index.hhp. +# The file has to be specified with full path. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +HHC_LOCATION = + +# The GENERATE_CHI flag controls if a separate .chi index file is generated +# (YES) or that it should be included in the master .chm file (NO). +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +GENERATE_CHI = NO + +# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) +# and project file content. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_INDEX_ENCODING = + +# The BINARY_TOC flag controls whether a binary table of contents is generated +# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it +# enables the Previous and Next buttons. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members to +# the table of contents of the HTML help documentation and to the tree view. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that +# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help +# (.qch) of the generated HTML documentation. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify +# the file name of the resulting .qch file. The path specified is relative to +# the HTML output folder. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help +# Project output. For more information please see Qt Help Project / Namespace +# (see: http://doc.qt.io/qt-4.8/qthelpproject.html#namespace). +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt +# Help Project output. For more information please see Qt Help Project / Virtual +# Folders (see: http://doc.qt.io/qt-4.8/qthelpproject.html#virtual-folders). +# The default value is: doc. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_VIRTUAL_FOLDER = doc + +# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom +# filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://doc.qt.io/qt-4.8/qthelpproject.html#custom-filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://doc.qt.io/qt-4.8/qthelpproject.html#custom-filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's filter section matches. Qt Help Project / Filter Attributes (see: +# http://doc.qt.io/qt-4.8/qthelpproject.html#filter-attributes). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_SECT_FILTER_ATTRS = + +# The QHG_LOCATION tag can be used to specify the location of Qt's +# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the +# generated .qhp file. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be +# generated, together with the HTML files, they form an Eclipse help plugin. To +# install this plugin and make it available under the help contents menu in +# Eclipse, the contents of the directory containing the HTML and XML files needs +# to be copied into the plugins directory of eclipse. The name of the directory +# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. +# After copying Eclipse needs to be restarted before the help appears. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the Eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have this +# name. Each documentation set should have its own identifier. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# If you want full control over the layout of the generated HTML pages it might +# be necessary to disable the index and replace it with your own. The +# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top +# of each HTML page. A value of NO enables the index and the value YES disables +# it. Since the tabs in the index contain the same information as the navigation +# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. If the tag +# value is set to YES, a side panel will be generated containing a tree-like +# index structure (just like the one that is generated for HTML Help). For this +# to work a browser that supports JavaScript, DHTML, CSS and frames is required +# (i.e. any modern browser). Windows users are probably better off using the +# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can +# further fine-tune the look of the index. As an example, the default style +# sheet generated by doxygen has an example that shows how to put an image at +# the root of the tree instead of the PROJECT_NAME. Since the tree basically has +# the same information as the tab index, you could consider setting +# DISABLE_INDEX to YES when enabling this option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_TREEVIEW = NO + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that +# doxygen will group on one line in the generated HTML documentation. +# +# Note that a value of 0 will completely suppress the enum values from appearing +# in the overview section. +# Minimum value: 0, maximum value: 20, default value: 4. +# This tag requires that the tag GENERATE_HTML is set to YES. + +ENUM_VALUES_PER_LINE = 4 + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used +# to set the initial width (in pixels) of the frame in which the tree is shown. +# Minimum value: 0, maximum value: 1500, default value: 250. +# This tag requires that the tag GENERATE_HTML is set to YES. + +TREEVIEW_WIDTH = 250 + +# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to +# external symbols imported via tag files in a separate window. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +EXT_LINKS_IN_WINDOW = NO + +# Use this tag to change the font size of LaTeX formulas included as images in +# the HTML documentation. When you change the font size after a successful +# doxygen run you need to manually remove any form_*.png images from the HTML +# output directory to force them to be regenerated. +# Minimum value: 8, maximum value: 50, default value: 10. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_FONTSIZE = 10 + +# Use the FORMULA_TRANSPARENT tag to determine whether or not the images +# generated for formulas are transparent PNGs. Transparent PNGs are not +# supported properly for IE 6.0, but are supported on all modern browsers. +# +# Note that when changing this option you need to delete any form_*.png files in +# the HTML output directory before the changes have effect. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_TRANSPARENT = YES + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see +# https://www.mathjax.org) which uses client side Javascript for the rendering +# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX +# installed or if you want to formulas look prettier in the HTML output. When +# enabled you may also need to install MathJax separately and configure the path +# to it using the MATHJAX_RELPATH option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +USE_MATHJAX = NO + +# When MathJax is enabled you can set the default output format to be used for +# the MathJax output. See the MathJax site (see: +# http://docs.mathjax.org/en/latest/output.html) for more details. +# Possible values are: HTML-CSS (which is slower, but has the best +# compatibility), NativeMML (i.e. MathML) and SVG. +# The default value is: HTML-CSS. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_FORMAT = HTML-CSS + +# When MathJax is enabled you need to specify the location relative to the HTML +# output directory using the MATHJAX_RELPATH option. The destination directory +# should contain the MathJax.js script. For instance, if the mathjax directory +# is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax +# Content Delivery Network so you can quickly see the result without installing +# MathJax. However, it is strongly recommended to install a local copy of +# MathJax from https://www.mathjax.org before deployment. +# The default value is: https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_RELPATH = https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/ + +# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax +# extension names that should be enabled during MathJax rendering. For example +# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_EXTENSIONS = + +# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces +# of code that will be used on startup of the MathJax code. See the MathJax site +# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an +# example see the documentation. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_CODEFILE = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box for +# the HTML output. The underlying search engine uses javascript and DHTML and +# should work on any modern browser. Note that when using HTML help +# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) +# there is already a search function so this one should typically be disabled. +# For large projects the javascript based search engine can be slow, then +# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to +# search using the keyboard; to jump to the search box use + S +# (what the is depends on the OS and browser, but it is typically +# , /