From 4aae4c36e80e5942b698ab091c736543e8b0aec1 Mon Sep 17 00:00:00 2001 From: Dmytro Bogovych Date: Wed, 28 Jul 2021 10:38:29 +0300 Subject: [PATCH 01/14] - add oboe audio library --- src/CMakeLists.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 89af891e..8a640e15 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -86,6 +86,10 @@ if (CMAKE_SYSTEM MATCHES "Darwin*") add_definitions (-DTARGET_OSX) endif() +if (CMAKE_SYSTEM MATCHES "Android") + find_package (oboe REQUIRED CONFIG) +endif() + if (USE_AQUA_LIB) message("Use AQuA library") add_definitions( -DUSE_AQUA_LIBRARY ) @@ -208,7 +212,7 @@ target_link_libraries(rtphone uuid ${OPENSSL_SSL} ${OPENSSL_CRYPTO} - ${LIBS}) + ${LIBS} oboe::oboe) target_include_directories(rtphone From cb9c2b693e796692537f0dc21fed6e1afe237a0c Mon Sep 17 00:00:00 2001 From: Dmytro Bogovych Date: Mon, 2 Aug 2021 15:54:55 +0300 Subject: [PATCH 02/14] - android audio subsystem - initial implementation with oboe library --- src/CMakeLists.txt | 7 +++++-- src/engine/audio/Audio_Android.h | 1 - src/engine/audio/Audio_Interface.cpp | 3 ++- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 8a640e15..444d1c7d 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -87,7 +87,10 @@ if (CMAKE_SYSTEM MATCHES "Darwin*") endif() if (CMAKE_SYSTEM MATCHES "Android") - find_package (oboe REQUIRED CONFIG) + message("Adding the Oboe library") + set (OBOE_DIR libs/oboe) + add_subdirectory (${OBOE_DIR} ./oboe) + include_directories (${OBOE_DIR}/include) endif() if (USE_AQUA_LIB) @@ -212,7 +215,7 @@ target_link_libraries(rtphone uuid ${OPENSSL_SSL} ${OPENSSL_CRYPTO} - ${LIBS} oboe::oboe) + ${LIBS} oboe) target_include_directories(rtphone diff --git a/src/engine/audio/Audio_Android.h b/src/engine/audio/Audio_Android.h index 35ab5cc4..f1543efb 100644 --- a/src/engine/audio/Audio_Android.h +++ b/src/engine/audio/Audio_Android.h @@ -25,7 +25,6 @@ namespace Audio { - class AndroidEnumerator: public Enumerator { public: diff --git a/src/engine/audio/Audio_Interface.cpp b/src/engine/audio/Audio_Interface.cpp index e1844c95..3d0abf72 100644 --- a/src/engine/audio/Audio_Interface.cpp +++ b/src/engine/audio/Audio_Interface.cpp @@ -146,7 +146,8 @@ OsEngine* OsEngine::instance() #endif #ifdef TARGET_ANDROID - return &OpenSLEngine::instance(); + return nullptr; // As we use Oboe library for now + //return &OpenSLEngine::instance(); #endif return nullptr; From ed39725641303276e723c651263376f1fbba02cd Mon Sep 17 00:00:00 2001 From: Dmytro Bogovych Date: Mon, 2 Aug 2021 16:00:18 +0300 Subject: [PATCH 03/14] - add oboe library snapshot --- src/libs/oboe/.gitignore | 8 + src/libs/oboe/AUTHORS | 9 + src/libs/oboe/CMakeLists.txt | 98 + src/libs/oboe/CONTRIBUTING | 1 + src/libs/oboe/CONTRIBUTING.md | 25 + src/libs/oboe/CONTRIBUTORS | 14 + src/libs/oboe/Doxyfile | 2482 ++++++++++++++++ src/libs/oboe/LICENSE | 202 ++ src/libs/oboe/MODULE_LICENSE_APACHE2 | 0 src/libs/oboe/NOTICE | 202 ++ src/libs/oboe/README | 1 + src/libs/oboe/README.md | 54 + src/libs/oboe/apps/OboeTester/.gitignore | 13 + .../apps/OboeTester/.google/packaging.yaml | 7 + src/libs/oboe/apps/OboeTester/README.md | 6 + .../oboe/apps/OboeTester/app/CMakeLists.txt | 34 + .../oboe/apps/OboeTester/app/build.gradle | 44 + .../app/gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 54329 bytes .../gradle/wrapper/gradle-wrapper.properties | 6 + src/libs/oboe/apps/OboeTester/app/gradlew | 172 ++ src/libs/oboe/apps/OboeTester/app/gradlew.bat | 84 + .../oboe/apps/OboeTester/app/local.properties | 9 + .../apps/OboeTester/app/proguard-rules.pro | 17 + .../app/src/main/AndroidManifest.xml | 127 + .../app/src/main/cpp/AudioStreamGateway.cpp | 39 + .../app/src/main/cpp/AudioStreamGateway.h | 55 + .../app/src/main/cpp/FormatConverterBox.cpp | 85 + .../app/src/main/cpp/FormatConverterBox.h | 101 + .../app/src/main/cpp/FullDuplexAnalyzer.cpp | 66 + .../app/src/main/cpp/FullDuplexAnalyzer.h | 64 + .../app/src/main/cpp/FullDuplexEcho.cpp | 46 + .../app/src/main/cpp/FullDuplexEcho.h | 57 + .../app/src/main/cpp/FullDuplexStream.cpp | 152 + .../app/src/main/cpp/FullDuplexStream.h | 119 + .../main/cpp/InputStreamCallbackAnalyzer.cpp | 42 + .../main/cpp/InputStreamCallbackAnalyzer.h | 87 + .../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 | 702 +++++ .../app/src/main/cpp/NativeAudioContext.h | 767 +++++ .../src/main/cpp/OboeStreamCallbackProxy.cpp | 81 + .../src/main/cpp/OboeStreamCallbackProxy.h | 88 + .../src/main/cpp/OboeTesterStreamCallback.cpp | 40 + .../src/main/cpp/OboeTesterStreamCallback.h | 41 + .../src/main/cpp/PlayRecordingCallback.cpp | 33 + .../app/src/main/cpp/PlayRecordingCallback.h | 46 + .../app/src/main/cpp/SawPingGenerator.cpp | 69 + .../app/src/main/cpp/SawPingGenerator.h | 46 + .../src/main/cpp/analyzer/BaseSineAnalyzer.h | 203 ++ .../src/main/cpp/analyzer/DataPathAnalyzer.h | 94 + .../src/main/cpp/analyzer/GlitchAnalyzer.h | 363 +++ .../src/main/cpp/analyzer/InfiniteRecording.h | 67 + .../src/main/cpp/analyzer/LatencyAnalyzer.h | 622 ++++ .../src/main/cpp/analyzer/ManchesterEncoder.h | 98 + .../app/src/main/cpp/analyzer/PeakDetector.h | 68 + .../app/src/main/cpp/analyzer/PseudoRandom.h | 57 + .../main/cpp/analyzer/RandomPulseGenerator.h | 43 + .../cpp/analyzer/RoundedManchesterEncoder.h | 88 + .../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 | 700 +++++ .../app/src/main/cpp/unused/unused.h | 145 + .../app/src/main/cpp/util/WaveFileWriter.cpp | 132 + .../app/src/main/cpp/util/WaveFileWriter.h | 155 + .../app/src/main/ic_launcher-playstore.png | Bin 0 -> 31684 bytes .../audio_device/AudioDeviceAdapter.java | 58 + .../AudioDeviceInfoConverter.java | 142 + .../audio_device/AudioDeviceListEntry.java | 95 + .../audio_device/AudioDeviceSpinner.java | 127 + .../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 + .../mobileer/oboetester/AnalyzerActivity.java | 323 +++ .../mobileer/oboetester/AudioInputTester.java | 40 + .../oboetester/AudioOutputTester.java | 53 + .../mobileer/oboetester/AudioQueryTools.java | 108 + .../oboetester/AudioRecordThread.java | 162 ++ .../mobileer/oboetester/AudioStreamBase.java | 204 ++ .../oboetester/AudioStreamTester.java | 52 + .../oboetester/AutomatedGlitchActivity.java | 114 + .../oboetester/AutomatedTestRunner.java | 285 ++ .../oboetester/BaseAutoGlitchActivity.java | 231 ++ .../mobileer/oboetester/BufferSizeView.java | 215 ++ .../oboetester/CachedTextViewLog.java | 72 + .../oboetester/CircularCaptureBuffer.java | 104 + .../oboetester/DeviceReportActivity.java | 171 ++ .../com/mobileer/oboetester/EchoActivity.java | 215 ++ .../mobileer/oboetester/ExponentialTaper.java | 67 + .../oboetester/ExternalTapToToneActivity.java | 148 + .../oboetester/ExtraTestsActivity.java | 28 + .../com/mobileer/oboetester/FastButton.java | 105 + .../mobileer/oboetester/GlitchActivity.java | 366 +++ .../mobileer/oboetester/InputMarginView.java | 60 + .../com/mobileer/oboetester/MainActivity.java | 322 +++ .../oboetester/ManualGlitchActivity.java | 229 ++ .../oboetester/MicrophoneInfoConverter.java | 73 + .../mobileer/oboetester/MidiTapTester.java | 117 + .../com/mobileer/oboetester/NativeEngine.java | 12 + .../mobileer/oboetester/NativeSniffer.java | 69 + .../oboetester/OboeAudioInputStream.java | 26 + .../oboetester/OboeAudioOutputStream.java | 34 + .../mobileer/oboetester/OboeAudioStream.java | 267 ++ .../mobileer/oboetester/RecorderActivity.java | 109 + .../oboetester/RoundTripLatencyActivity.java | 462 +++ .../oboetester/StreamConfiguration.java | 445 +++ .../oboetester/StreamConfigurationView.java | 343 +++ .../oboetester/TapLatencyAnalyser.java | 118 + .../oboetester/TapToToneActivity.java | 330 +++ .../mobileer/oboetester/TapToToneTester.java | 198 ++ .../oboetester/TestAudioActivity.java | 586 ++++ .../oboetester/TestDataPathsActivity.java | 524 ++++ .../oboetester/TestDisconnectActivity.java | 413 +++ .../oboetester/TestInputActivity.java | 247 ++ .../oboetester/TestOutputActivity.java | 107 + .../oboetester/TestOutputActivityBase.java | 86 + .../mobileer/oboetester/VolumeBarView.java | 75 + .../com/mobileer/oboetester/WaveformView.java | 180 ++ .../com/mobileer/oboetester/WorkloadView.java | 109 + .../src/main/res/drawable/button_shape.xml | 6 + .../res/drawable/ic_launcher_background.xml | 74 + .../res/drawable/ic_launcher_foreground.xml | 15 + .../res/layout/activity_auto_glitches.xml | 42 + .../main/res/layout/activity_data_paths.xml | 29 + .../res/layout/activity_device_report.xml | 23 + .../app/src/main/res/layout/activity_echo.xml | 90 + .../layout/activity_external_tap_to_tone.xml | 64 + .../main/res/layout/activity_extra_tests.xml | 35 + .../app/src/main/res/layout/activity_main.xml | 282 ++ .../res/layout/activity_manual_glitches.xml | 104 + .../src/main/res/layout/activity_recorder.xml | 98 + .../main/res/layout/activity_rt_latency.xml | 99 + .../main/res/layout/activity_tap_to_tone.xml | 48 + .../res/layout/activity_test_disconnect.xml | 63 + .../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/auto_test_runner.xml | 76 + .../src/main/res/layout/buffer_size_view.xml | 53 + .../src/main/res/layout/input_margin_view.xml | 54 + .../main/res/layout/merge_audio_common.xml | 89 + .../main/res/layout/merge_audio_simple.xml | 53 + .../main/res/layout/sample_fast_button.xml | 17 + .../app/src/main/res/layout/stream_config.xml | 302 ++ .../app/src/main/res/layout/workload_view.xml | 20 + .../app/src/main/res/menu/menu_main.xml | 5 + .../res/mipmap-anydpi-v26/ic_launcher.xml | 5 + .../mipmap-anydpi-v26/ic_launcher_round.xml | 5 + .../res/mipmap-hdpi/ic_launcher_round.png | Bin 0 -> 5353 bytes .../res/mipmap-mdpi/ic_launcher_round.png | Bin 0 -> 3342 bytes .../res/mipmap-xhdpi/ic_launcher_round.png | Bin 0 -> 7478 bytes .../res/mipmap-xxhdpi/ic_launcher_round.png | Bin 0 -> 12018 bytes .../main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 9610 bytes .../res/mipmap-xxxhdpi/ic_launcher_round.png | Bin 0 -> 16879 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 | 23 + .../app/src/main/res/values/dimens.xml | 8 + .../app/src/main/res/values/strings.xml | 202 ++ .../app/src/main/res/values/styles.xml | 8 + .../main/res/xml/button_color_selector.xml | 5 + .../app/src/main/res/xml/provider_paths.xml | 4 + .../src/main/res/xml/service_device_info.xml | 18 + src/libs/oboe/apps/OboeTester/build.gradle | 18 + .../apps/OboeTester/docs/AutomatedTesting.md | 179 ++ src/libs/oboe/apps/OboeTester/docs/Build.md | 35 + .../apps/OboeTester/docs/PrivacyPolicy.md | 39 + src/libs/oboe/apps/OboeTester/docs/README.md | 19 + .../oboe/apps/OboeTester/docs/TestOutput.md | 30 + src/libs/oboe/apps/OboeTester/docs/Usage.md | 120 + .../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 + src/libs/oboe/apps/OboeTester/gradlew | 164 ++ src/libs/oboe/apps/OboeTester/gradlew.bat | 90 + .../apps/OboeTester/scripts/dsp_timing.py | 239 ++ src/libs/oboe/apps/OboeTester/settings.gradle | 1 + src/libs/oboe/apps/fxlab/.gitignore | 14 + src/libs/oboe/apps/fxlab/CONTRIBUTING.md | 16 + src/libs/oboe/apps/fxlab/LICENSE | 202 ++ src/libs/oboe/apps/fxlab/README.md | 30 + src/libs/oboe/apps/fxlab/app/.gitignore | 1 + src/libs/oboe/apps/fxlab/app/CMakeLists.txt | 79 + src/libs/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 | 219 ++ .../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 + src/libs/oboe/apps/fxlab/build.gradle | 44 + src/libs/oboe/apps/fxlab/docs/Dev-Guide.md | 46 + .../oboe/apps/fxlab/docs/Presentation.pdf | Bin 0 -> 1306300 bytes src/libs/oboe/apps/fxlab/docs/README.md | 4 + src/libs/oboe/apps/fxlab/gradle.properties | 37 + .../fxlab/gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 54329 bytes .../gradle/wrapper/gradle-wrapper.properties | 6 + src/libs/oboe/apps/fxlab/gradlew | 172 ++ src/libs/oboe/apps/fxlab/gradlew.bat | 84 + src/libs/oboe/apps/fxlab/screenshot.png | Bin 0 -> 107694 bytes src/libs/oboe/apps/fxlab/settings.gradle | 17 + src/libs/oboe/build_all_android.sh | 69 + src/libs/oboe/docs/.nojekyll | 0 src/libs/oboe/docs/AndroidAudioHistory.md | 49 + src/libs/oboe/docs/AppsUsingOboe.md | 3 + src/libs/oboe/docs/ChangeLog.md | 30 + src/libs/oboe/docs/FAQ.md | 43 + src/libs/oboe/docs/FullGuide.md | 523 ++++ src/libs/oboe/docs/GettingStarted.md | 360 +++ src/libs/oboe/docs/OpenSLESMigration.md | 169 ++ src/libs/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 src/libs/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 src/libs/oboe/docs/index.html | 11 + src/libs/oboe/docs/index.md | 5 + src/libs/oboe/docs/notes/README.md | 7 + src/libs/oboe/docs/notes/disconnect.md | 73 + src/libs/oboe/docs/notes/effects.md | 48 + src/libs/oboe/docs/notes/rlsbuffer.md | 71 + .../reference/_audio_stream_8h_source.html | 140 + .../_audio_stream_base_8h_source.html | 145 + .../_audio_stream_builder_8h_source.html | 143 + .../_audio_stream_callback_8h_source.html | 93 + .../reference/_definitions_8h_source.html | 148 + .../reference/_latency_tuner_8h_source.html | 92 + .../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 | 91 + .../docs/reference/_version_8h_source.html | 89 + src/libs/oboe/docs/reference/annotated.html | 97 + src/libs/oboe/docs/reference/bc_s.png | Bin 0 -> 676 bytes src/libs/oboe/docs/reference/bdwn.png | Bin 0 -> 147 bytes src/libs/oboe/docs/reference/classes.html | 99 + .../classoboe_1_1_audio_stream-members.html | 185 ++ .../reference/classoboe_1_1_audio_stream.html | 1653 +++++++++++ .../reference/classoboe_1_1_audio_stream.png | Bin 0 -> 629 bytes ...assoboe_1_1_audio_stream_base-members.html | 132 + .../classoboe_1_1_audio_stream_base.html | 1254 ++++++++ .../classoboe_1_1_audio_stream_base.png | Bin 0 -> 892 bytes ...oboe_1_1_audio_stream_builder-members.html | 162 ++ .../classoboe_1_1_audio_stream_builder.html | 1162 ++++++++ .../classoboe_1_1_audio_stream_builder.png | Bin 0 -> 673 bytes ...boe_1_1_audio_stream_callback-members.html | 92 + .../classoboe_1_1_audio_stream_callback.html | 120 + .../classoboe_1_1_audio_stream_callback.png | Bin 0 -> 1489 bytes ..._1_audio_stream_data_callback-members.html | 87 + ...ssoboe_1_1_audio_stream_data_callback.html | 196 ++ ...assoboe_1_1_audio_stream_data_callback.png | Bin 0 -> 1072 bytes ...1_audio_stream_error_callback-members.html | 89 + ...soboe_1_1_audio_stream_error_callback.html | 260 ++ ...ssoboe_1_1_audio_stream_error_callback.png | Bin 0 -> 1077 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 | 94 + .../classoboe_1_1_latency_tuner.html | 321 ++ .../classoboe_1_1_oboe_globals-members.html | 87 + .../reference/classoboe_1_1_oboe_globals.html | 130 + ...assoboe_1_1_result_with_value-members.html | 93 + .../classoboe_1_1_result_with_value.html | 368 +++ ...soboe_1_1_stabilized_callback-members.html | 93 + .../classoboe_1_1_stabilized_callback.html | 299 ++ .../classoboe_1_1_stabilized_callback.png | Bin 0 -> 1481 bytes src/libs/oboe/docs/reference/closed.png | Bin 0 -> 132 bytes src/libs/oboe/docs/reference/deprecated.html | 91 + .../dir_768f6301d9838e45d679001914ab2803.html | 82 + .../dir_d44c64559bbebec7f509842c48db8b23.html | 86 + src/libs/oboe/docs/reference/doc.png | Bin 0 -> 746 bytes src/libs/oboe/docs/reference/doxygen.css | 1764 +++++++++++ src/libs/oboe/docs/reference/doxygen.png | Bin 0 -> 3779 bytes src/libs/oboe/docs/reference/dynsections.js | 120 + src/libs/oboe/docs/reference/files.html | 95 + src/libs/oboe/docs/reference/folderclosed.png | Bin 0 -> 616 bytes src/libs/oboe/docs/reference/folderopen.png | Bin 0 -> 597 bytes src/libs/oboe/docs/reference/functions.html | 554 ++++ .../oboe/docs/reference/functions_func.html | 465 +++ .../oboe/docs/reference/functions_vars.html | 157 + src/libs/oboe/docs/reference/hierarchy.html | 97 + src/libs/oboe/docs/reference/index.html | 80 + src/libs/oboe/docs/reference/jquery.js | 87 + src/libs/oboe/docs/reference/menu.js | 50 + src/libs/oboe/docs/reference/menudata.js | 90 + .../oboe/docs/reference/namespacemembers.html | 259 ++ .../docs/reference/namespacemembers_enum.html | 118 + .../docs/reference/namespacemembers_eval.html | 121 + .../docs/reference/namespacemembers_func.html | 100 + .../docs/reference/namespacemembers_vars.html | 94 + .../oboe/docs/reference/namespaceoboe.html | 1079 +++++++ src/libs/oboe/docs/reference/namespaces.html | 83 + src/libs/oboe/docs/reference/nav_f.png | Bin 0 -> 153 bytes src/libs/oboe/docs/reference/nav_g.png | Bin 0 -> 95 bytes src/libs/oboe/docs/reference/nav_h.png | Bin 0 -> 98 bytes src/libs/oboe/docs/reference/open.png | Bin 0 -> 123 bytes src/libs/oboe/docs/reference/pages.html | 83 + .../oboe/docs/reference/search/all_0.html | 30 + src/libs/oboe/docs/reference/search/all_0.js | 19 + .../oboe/docs/reference/search/all_1.html | 30 + src/libs/oboe/docs/reference/search/all_1.js | 4 + .../oboe/docs/reference/search/all_10.html | 30 + src/libs/oboe/docs/reference/search/all_10.js | 5 + .../oboe/docs/reference/search/all_11.html | 30 + src/libs/oboe/docs/reference/search/all_11.js | 9 + .../oboe/docs/reference/search/all_12.html | 30 + src/libs/oboe/docs/reference/search/all_12.js | 9 + .../oboe/docs/reference/search/all_13.html | 30 + src/libs/oboe/docs/reference/search/all_13.js | 9 + .../oboe/docs/reference/search/all_2.html | 30 + src/libs/oboe/docs/reference/search/all_2.js | 13 + .../oboe/docs/reference/search/all_3.html | 30 + src/libs/oboe/docs/reference/search/all_3.js | 7 + .../oboe/docs/reference/search/all_4.html | 30 + src/libs/oboe/docs/reference/search/all_4.js | 5 + .../oboe/docs/reference/search/all_5.html | 30 + src/libs/oboe/docs/reference/search/all_5.js | 9 + .../oboe/docs/reference/search/all_6.html | 30 + src/libs/oboe/docs/reference/search/all_6.js | 38 + .../oboe/docs/reference/search/all_7.html | 30 + src/libs/oboe/docs/reference/search/all_7.js | 17 + .../oboe/docs/reference/search/all_8.html | 30 + src/libs/oboe/docs/reference/search/all_8.js | 9 + .../oboe/docs/reference/search/all_9.html | 30 + src/libs/oboe/docs/reference/search/all_9.js | 6 + .../oboe/docs/reference/search/all_a.html | 30 + src/libs/oboe/docs/reference/search/all_a.js | 28 + .../oboe/docs/reference/search/all_b.html | 30 + src/libs/oboe/docs/reference/search/all_b.js | 8 + .../oboe/docs/reference/search/all_c.html | 30 + src/libs/oboe/docs/reference/search/all_c.js | 20 + .../oboe/docs/reference/search/all_d.html | 30 + src/libs/oboe/docs/reference/search/all_d.js | 7 + .../oboe/docs/reference/search/all_e.html | 30 + src/libs/oboe/docs/reference/search/all_e.js | 11 + .../oboe/docs/reference/search/all_f.html | 30 + src/libs/oboe/docs/reference/search/all_f.js | 42 + .../oboe/docs/reference/search/classes_0.html | 30 + .../oboe/docs/reference/search/classes_0.js | 9 + .../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 | 4 + .../oboe/docs/reference/search/classes_6.html | 30 + .../oboe/docs/reference/search/classes_6.js | 5 + .../oboe/docs/reference/search/classes_7.html | 30 + .../oboe/docs/reference/search/classes_7.js | 4 + src/libs/oboe/docs/reference/search/close.png | Bin 0 -> 273 bytes .../oboe/docs/reference/search/enums_0.html | 30 + .../oboe/docs/reference/search/enums_0.js | 5 + .../oboe/docs/reference/search/enums_1.html | 30 + .../oboe/docs/reference/search/enums_1.js | 5 + .../oboe/docs/reference/search/enums_2.html | 30 + .../oboe/docs/reference/search/enums_2.js | 5 + .../oboe/docs/reference/search/enums_3.html | 30 + .../oboe/docs/reference/search/enums_3.js | 4 + .../oboe/docs/reference/search/enums_4.html | 30 + .../oboe/docs/reference/search/enums_4.js | 4 + .../oboe/docs/reference/search/enums_5.html | 30 + .../oboe/docs/reference/search/enums_5.js | 4 + .../oboe/docs/reference/search/enums_6.html | 30 + .../oboe/docs/reference/search/enums_6.js | 7 + .../oboe/docs/reference/search/enums_7.html | 30 + .../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 | 36 + .../docs/reference/search/functions_5.html | 30 + .../oboe/docs/reference/search/functions_5.js | 13 + .../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 | 16 + .../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 | 31 + .../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 + .../oboe/docs/reference/search/pages_0.js | 4 + .../oboe/docs/reference/search/pages_1.html | 30 + .../oboe/docs/reference/search/pages_1.js | 4 + .../oboe/docs/reference/search/search.css | 271 ++ src/libs/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 | 24 + .../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 + src/libs/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 ++ src/libs/oboe/docs/reference/sync_off.png | Bin 0 -> 853 bytes src/libs/oboe/docs/reference/sync_on.png | Bin 0 -> 845 bytes src/libs/oboe/docs/reference/tab_a.png | Bin 0 -> 142 bytes src/libs/oboe/docs/reference/tab_b.png | Bin 0 -> 169 bytes src/libs/oboe/docs/reference/tab_h.png | Bin 0 -> 177 bytes src/libs/oboe/docs/reference/tab_s.png | Bin 0 -> 184 bytes src/libs/oboe/docs/reference/tabs.css | 1 + src/libs/oboe/include/oboe/AudioStream.h | 567 ++++ src/libs/oboe/include/oboe/AudioStreamBase.h | 263 ++ .../oboe/include/oboe/AudioStreamBuilder.h | 520 ++++ .../oboe/include/oboe/AudioStreamCallback.h | 189 ++ src/libs/oboe/include/oboe/Definitions.h | 545 ++++ src/libs/oboe/include/oboe/LatencyTuner.h | 150 + src/libs/oboe/include/oboe/Oboe.h | 37 + src/libs/oboe/include/oboe/ResultWithValue.h | 155 + .../oboe/include/oboe/StabilizedCallback.h | 75 + src/libs/oboe/include/oboe/Utilities.h | 87 + src/libs/oboe/include/oboe/Version.h | 92 + src/libs/oboe/prefab/oboe-VERSION.pom | 27 + .../prefab/oboe-VERSION/AndroidManifest.xml | 3 + .../oboe/libs/android.arm64-v8a/abi.json | 1 + .../oboe/libs/android.armeabi-v7a/abi.json | 1 + .../modules/oboe/libs/android.x86/abi.json | 1 + .../modules/oboe/libs/android.x86_64/abi.json | 1 + .../prefab/modules/oboe/module.json | 8 + .../prefab/oboe-VERSION/prefab/prefab.json | 6 + src/libs/oboe/prefab_build.sh | 90 + src/libs/oboe/samples/.gitignore | 10 + src/libs/oboe/samples/LiveEffect/README.md | 34 + src/libs/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 | 58 + .../src/main/cpp/FullDuplexStream.cpp | 128 + .../src/main/cpp/FullDuplexStream.h | 102 + .../src/main/cpp/LiveEffectEngine.cpp | 238 ++ .../src/main/cpp/LiveEffectEngine.h | 83 + .../LiveEffect/src/main/cpp/jni_bridge.cpp | 134 + .../src/main/cpp/ndk-stl-config.cmake | 40 + .../samples/liveEffect/LiveEffectEngine.java | 52 + .../oboe/samples/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/libs/oboe/samples/MegaDrone/.gitignore | 1 + src/libs/oboe/samples/MegaDrone/README.md | 47 + src/libs/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 | 102 + .../MegaDrone/src/main/cpp/MegaDroneEngine.h | 58 + .../samples/MegaDrone/src/main/cpp/Synth.h | 71 + .../MegaDrone/src/main/cpp/native-lib.cpp | 96 + .../oboe/samples/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 + src/libs/oboe/samples/README.md | 56 + .../oboe/samples/RhythmGame/CMakeLists.txt | 78 + src/libs/oboe/samples/RhythmGame/README.md | 92 + src/libs/oboe/samples/RhythmGame/build.gradle | 68 + .../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 + .../RhythmGame/src/main/assets/CLAP.mp3 | Bin 0 -> 19344 bytes .../src/main/assets/FUNKY_HOUSE.mp3 | Bin 0 -> 52440 bytes .../samples/RhythmGame/src/main/cpp/Game.cpp | 241 ++ .../samples/RhythmGame/src/main/cpp/Game.h | 85 + .../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 | 318 ++ .../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 + .../samples/rhythmgame/GameSurfaceView.java | 64 + .../oboe/samples/rhythmgame/MainActivity.java | 75 + .../samples/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 + src/libs/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 + src/libs/oboe/samples/build.gradle | 42 + .../oboe/samples/debug-utils/logging_macros.h | 46 + src/libs/oboe/samples/debug-utils/trace.cpp | 85 + src/libs/oboe/samples/debug-utils/trace.h | 33 + src/libs/oboe/samples/drumthumper/README.md | 66 + .../oboe/samples/drumthumper/build.gradle | 44 + .../playstore/DrumSetFeatureImage.png | Bin 0 -> 83513 bytes .../drumthumper/playstore/ScreenShotPhone.png | Bin 0 -> 96949 bytes .../playstore/ScreenShotWithMix.png | Bin 0 -> 60947 bytes .../samples/drumthumper/playstore/drumset.jpg | Bin 0 -> 33988 bytes .../drumthumper/src/main/AndroidManifest.xml | 21 + .../src/main/assets/CrashCymbal.wav | Bin 0 -> 536754 bytes .../src/main/assets/HiHat_Closed.wav | Bin 0 -> 15344 bytes .../src/main/assets/HiHat_Open.wav | Bin 0 -> 52636 bytes .../drumthumper/src/main/assets/KickDrum.wav | Bin 0 -> 68552 bytes .../drumthumper/src/main/assets/LowTom.wav | Bin 0 -> 127254 bytes .../drumthumper/src/main/assets/MidTom.wav | Bin 0 -> 127254 bytes .../src/main/assets/RideCymbal.wav | Bin 0 -> 925052 bytes .../drumthumper/src/main/assets/SnareDrum.wav | Bin 0 -> 46248 bytes .../drumthumper/src/main/cpp/CMakeLists.txt | 73 + .../src/main/cpp/DrumPlayerJNI.cpp | 164 ++ .../plausibleaudio/drumthumper/DrumPlayer.kt | 123 + .../drumthumper/DrumThumperActivity.kt | 313 ++ .../plausibleaudio/drumthumper/TriggerPad.kt | 205 ++ .../drawable-v24/_ic_launcher_foreground.xml | 34 + .../res/drawable/_ic_launcher_background.xml | 170 ++ .../res/layout-land/drumthumper_activity.xml | 499 ++++ .../main/res/layout/drumthumper_activity.xml | 511 ++++ .../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 + src/libs/oboe/samples/gradle.properties | 37 + .../samples/gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 53636 bytes .../gradle/wrapper/gradle-wrapper.properties | 6 + src/libs/oboe/samples/gradlew | 160 + src/libs/oboe/samples/gradlew.bat | 90 + src/libs/oboe/samples/hello-oboe/README.md | 19 + src/libs/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 | 194 ++ .../hello-oboe/src/main/cpp/HelloOboeEngine.h | 105 + .../src/main/cpp/LatencyTuningCallback.cpp | 45 + .../src/main/cpp/LatencyTuningCallback.h | 67 + .../src/main/cpp/SoundGenerator.cpp | 51 + .../hello-oboe/src/main/cpp/SoundGenerator.h | 58 + .../hello-oboe/src/main/cpp/jni_bridge.cpp | 189 ++ .../oboe/samples/hellooboe/MainActivity.java | 302 ++ .../samples/hellooboe/PlaybackEngine.java | 116 + .../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 + src/libs/oboe/samples/iolib/.gitignore | 1 + src/libs/oboe/samples/iolib/README.md | 35 + src/libs/oboe/samples/iolib/build.gradle | 35 + .../iolib/src/main/AndroidManifest.xml | 2 + .../samples/iolib/src/main/cpp/CMakeLists.txt | 62 + .../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 | 119 + .../iolib/src/main/cpp/player/SampleBuffer.h | 57 + .../src/main/cpp/player/SampleSource.cpp | 21 + .../iolib/src/main/cpp/player/SampleSource.h | 103 + .../src/main/cpp/player/SimpleMultiPlayer.cpp | 201 ++ .../src/main/cpp/player/SimpleMultiPlayer.h | 96 + .../iolib/src/main/res/values/strings.xml | 3 + src/libs/oboe/samples/parselib/README.md | 52 + src/libs/oboe/samples/parselib/build.gradle | 34 + .../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 | 317 ++ .../src/main/cpp/wav/WavStreamReader.h | 89 + .../parselib/src/main/cpp/wav/WavTypes.h | 38 + .../parselib/src/main/res/values/strings.xml | 3 + src/libs/oboe/samples/settings.gradle | 25 + .../oboe/samples/shared/DefaultDataCallback.h | 133 + .../samples/shared/DefaultErrorCallback.h | 56 + .../oboe/samples/shared/IRenderableAudio.h | 31 + src/libs/oboe/samples/shared/IRestartable.h | 28 + src/libs/oboe/samples/shared/ITappable.h | 25 + src/libs/oboe/samples/shared/Mixer.h | 70 + src/libs/oboe/samples/shared/MonoToStereo.h | 49 + src/libs/oboe/samples/shared/Oscillator.h | 94 + .../oboe/samples/shared/TappableAudioSource.h | 38 + src/libs/oboe/src/aaudio/AAudioExtensions.h | 172 ++ src/libs/oboe/src/aaudio/AAudioLoader.cpp | 366 +++ src/libs/oboe/src/aaudio/AAudioLoader.h | 243 ++ .../oboe/src/aaudio/AudioStreamAAudio.cpp | 715 +++++ src/libs/oboe/src/aaudio/AudioStreamAAudio.h | 139 + src/libs/oboe/src/common/AudioClock.h | 75 + .../oboe/src/common/AudioSourceCaller.cpp | 38 + src/libs/oboe/src/common/AudioSourceCaller.h | 83 + src/libs/oboe/src/common/AudioStream.cpp | 199 ++ .../oboe/src/common/AudioStreamBuilder.cpp | 224 ++ .../src/common/DataConversionFlowGraph.cpp | 267 ++ .../oboe/src/common/DataConversionFlowGraph.h | 86 + .../oboe/src/common/FilterAudioStream.cpp | 106 + src/libs/oboe/src/common/FilterAudioStream.h | 223 ++ .../oboe/src/common/FixedBlockAdapter.cpp | 38 + src/libs/oboe/src/common/FixedBlockAdapter.h | 67 + src/libs/oboe/src/common/FixedBlockReader.cpp | 73 + src/libs/oboe/src/common/FixedBlockReader.h | 60 + src/libs/oboe/src/common/FixedBlockWriter.cpp | 73 + src/libs/oboe/src/common/FixedBlockWriter.h | 54 + src/libs/oboe/src/common/LatencyTuner.cpp | 108 + src/libs/oboe/src/common/MonotonicCounter.h | 112 + src/libs/oboe/src/common/OboeDebug.h | 41 + src/libs/oboe/src/common/QuirksManager.cpp | 251 ++ src/libs/oboe/src/common/QuirksManager.h | 131 + src/libs/oboe/src/common/README.md | 33 + .../oboe/src/common/SourceFloatCaller.cpp | 30 + src/libs/oboe/src/common/SourceFloatCaller.h | 44 + src/libs/oboe/src/common/SourceI16Caller.cpp | 47 + src/libs/oboe/src/common/SourceI16Caller.h | 48 + src/libs/oboe/src/common/SourceI24Caller.cpp | 56 + src/libs/oboe/src/common/SourceI24Caller.h | 52 + src/libs/oboe/src/common/SourceI32Caller.cpp | 47 + src/libs/oboe/src/common/SourceI32Caller.h | 52 + .../oboe/src/common/StabilizedCallback.cpp | 112 + src/libs/oboe/src/common/Trace.cpp | 75 + src/libs/oboe/src/common/Trace.h | 31 + src/libs/oboe/src/common/Utilities.cpp | 313 ++ src/libs/oboe/src/common/Version.cpp | 28 + src/libs/oboe/src/fifo/FifoBuffer.cpp | 178 ++ src/libs/oboe/src/fifo/FifoBuffer.h | 99 + src/libs/oboe/src/fifo/FifoController.cpp | 31 + src/libs/oboe/src/fifo/FifoController.h | 62 + src/libs/oboe/src/fifo/FifoControllerBase.cpp | 68 + src/libs/oboe/src/fifo/FifoControllerBase.h | 92 + .../oboe/src/fifo/FifoControllerIndirect.cpp | 32 + .../oboe/src/fifo/FifoControllerIndirect.h | 66 + .../src/flowgraph/ChannelCountConverter.cpp | 52 + .../src/flowgraph/ChannelCountConverter.h | 54 + src/libs/oboe/src/flowgraph/ClipToRange.cpp | 38 + src/libs/oboe/src/flowgraph/ClipToRange.h | 70 + src/libs/oboe/src/flowgraph/FlowGraphNode.cpp | 114 + src/libs/oboe/src/flowgraph/FlowGraphNode.h | 448 +++ .../oboe/src/flowgraph/FlowgraphUtilities.h | 55 + .../src/flowgraph/ManyToMultiConverter.cpp | 47 + .../oboe/src/flowgraph/ManyToMultiConverter.h | 55 + .../src/flowgraph/MonoToMultiConverter.cpp | 43 + .../oboe/src/flowgraph/MonoToMultiConverter.h | 51 + .../src/flowgraph/MultiToMonoConverter.cpp | 41 + .../oboe/src/flowgraph/MultiToMonoConverter.h | 51 + src/libs/oboe/src/flowgraph/RampLinear.cpp | 81 + src/libs/oboe/src/flowgraph/RampLinear.h | 98 + .../src/flowgraph/SampleRateConverter.cpp | 70 + .../oboe/src/flowgraph/SampleRateConverter.h | 64 + src/libs/oboe/src/flowgraph/SinkFloat.cpp | 49 + src/libs/oboe/src/flowgraph/SinkFloat.h | 47 + src/libs/oboe/src/flowgraph/SinkI16.cpp | 57 + src/libs/oboe/src/flowgraph/SinkI16.h | 45 + src/libs/oboe/src/flowgraph/SinkI24.cpp | 66 + src/libs/oboe/src/flowgraph/SinkI24.h | 46 + src/libs/oboe/src/flowgraph/SinkI32.cpp | 55 + src/libs/oboe/src/flowgraph/SinkI32.h | 42 + src/libs/oboe/src/flowgraph/SourceFloat.cpp | 43 + src/libs/oboe/src/flowgraph/SourceFloat.h | 46 + src/libs/oboe/src/flowgraph/SourceI16.cpp | 54 + src/libs/oboe/src/flowgraph/SourceI16.h | 44 + src/libs/oboe/src/flowgraph/SourceI24.cpp | 65 + src/libs/oboe/src/flowgraph/SourceI24.h | 45 + src/libs/oboe/src/flowgraph/SourceI32.cpp | 54 + src/libs/oboe/src/flowgraph/SourceI32.h | 44 + .../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 | 62 + .../flowgraph/resampler/PolyphaseResampler.h | 51 + .../resampler/PolyphaseResamplerMono.cpp | 63 + .../resampler/PolyphaseResamplerMono.h | 39 + .../resampler/PolyphaseResamplerStereo.cpp | 79 + .../resampler/PolyphaseResamplerStereo.h | 39 + .../oboe/src/flowgraph/resampler/README.md | 101 + .../src/flowgraph/resampler/SincResampler.cpp | 77 + .../src/flowgraph/resampler/SincResampler.h | 47 + .../resampler/SincResamplerStereo.cpp | 81 + .../flowgraph/resampler/SincResamplerStereo.h | 39 + .../src/opensles/AudioInputStreamOpenSLES.cpp | 359 +++ .../src/opensles/AudioInputStreamOpenSLES.h | 66 + .../opensles/AudioOutputStreamOpenSLES.cpp | 450 +++ .../src/opensles/AudioOutputStreamOpenSLES.h | 78 + .../oboe/src/opensles/AudioStreamBuffered.cpp | 283 ++ .../oboe/src/opensles/AudioStreamBuffered.h | 96 + .../oboe/src/opensles/AudioStreamOpenSLES.cpp | 394 +++ .../oboe/src/opensles/AudioStreamOpenSLES.h | 131 + src/libs/oboe/src/opensles/EngineOpenSLES.cpp | 101 + src/libs/oboe/src/opensles/EngineOpenSLES.h | 65 + .../oboe/src/opensles/OpenSLESUtilities.cpp | 95 + .../oboe/src/opensles/OpenSLESUtilities.h | 44 + .../oboe/src/opensles/OutputMixerOpenSLES.cpp | 74 + .../oboe/src/opensles/OutputMixerOpenSLES.h | 58 + src/libs/oboe/tests/CMakeLists.txt | 41 + src/libs/oboe/tests/README | 1 + src/libs/oboe/tests/README.md | 64 + src/libs/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/libs/oboe/tests/UnitTestRunner/gradlew | 172 ++ .../oboe/tests/UnitTestRunner/gradlew.bat | 84 + .../oboe/tests/UnitTestRunner/settings.gradle | 1 + src/libs/oboe/tests/run_tests.sh | 144 + src/libs/oboe/tests/testAAudio.cpp | 74 + src/libs/oboe/tests/testFlowgraph.cpp | 171 ++ src/libs/oboe/tests/testReturnStop.cpp | 131 + .../oboe/tests/testStreamClosedMethods.cpp | 340 +++ .../oboe/tests/testStreamFramesProcessed.cpp | 90 + src/libs/oboe/tests/testStreamOpen.cpp | 434 +++ src/libs/oboe/tests/testStreamStates.cpp | 305 ++ src/libs/oboe/tests/testStreamWaitState.cpp | 249 ++ src/libs/oboe/tests/testUtilities.cpp | 40 + src/libs/oboe/tests/testXRunBehaviour.cpp | 81 + 1289 files changed, 133692 insertions(+) create mode 100644 src/libs/oboe/.gitignore create mode 100644 src/libs/oboe/AUTHORS create mode 100644 src/libs/oboe/CMakeLists.txt create mode 100644 src/libs/oboe/CONTRIBUTING create mode 100644 src/libs/oboe/CONTRIBUTING.md create mode 100644 src/libs/oboe/CONTRIBUTORS create mode 100644 src/libs/oboe/Doxyfile create mode 100644 src/libs/oboe/LICENSE create mode 100644 src/libs/oboe/MODULE_LICENSE_APACHE2 create mode 100644 src/libs/oboe/NOTICE create mode 100644 src/libs/oboe/README create mode 100644 src/libs/oboe/README.md create mode 100644 src/libs/oboe/apps/OboeTester/.gitignore create mode 100644 src/libs/oboe/apps/OboeTester/.google/packaging.yaml create mode 100644 src/libs/oboe/apps/OboeTester/README.md create mode 100644 src/libs/oboe/apps/OboeTester/app/CMakeLists.txt create mode 100644 src/libs/oboe/apps/OboeTester/app/build.gradle create mode 100644 src/libs/oboe/apps/OboeTester/app/gradle/wrapper/gradle-wrapper.jar create mode 100644 src/libs/oboe/apps/OboeTester/app/gradle/wrapper/gradle-wrapper.properties create mode 100644 src/libs/oboe/apps/OboeTester/app/gradlew create mode 100644 src/libs/oboe/apps/OboeTester/app/gradlew.bat create mode 100644 src/libs/oboe/apps/OboeTester/app/local.properties create mode 100644 src/libs/oboe/apps/OboeTester/app/proguard-rules.pro create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/AndroidManifest.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/AudioStreamGateway.cpp create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/AudioStreamGateway.h create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/FormatConverterBox.cpp create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/FormatConverterBox.h create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/FullDuplexAnalyzer.cpp create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/FullDuplexAnalyzer.h create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/FullDuplexEcho.cpp create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/FullDuplexEcho.h create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/FullDuplexStream.cpp create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/FullDuplexStream.h create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/InputStreamCallbackAnalyzer.cpp create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/InputStreamCallbackAnalyzer.h create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/InterpolatingDelayLine.cpp create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/InterpolatingDelayLine.h create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/MultiChannelRecording.h create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/NativeAudioContext.cpp create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/NativeAudioContext.h create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/OboeStreamCallbackProxy.cpp create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/OboeStreamCallbackProxy.h create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/OboeTesterStreamCallback.cpp create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/OboeTesterStreamCallback.h create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/PlayRecordingCallback.cpp create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/PlayRecordingCallback.h create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/SawPingGenerator.cpp create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/SawPingGenerator.h create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/analyzer/BaseSineAnalyzer.h create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/analyzer/DataPathAnalyzer.h create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/analyzer/GlitchAnalyzer.h create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/analyzer/InfiniteRecording.h create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/analyzer/LatencyAnalyzer.h create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/analyzer/ManchesterEncoder.h create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/analyzer/PeakDetector.h create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/analyzer/PseudoRandom.h create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/analyzer/RandomPulseGenerator.h create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/analyzer/RoundedManchesterEncoder.h create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/android_debug.h create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/flowunits/ExponentialShape.cpp create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/flowunits/ExponentialShape.h create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/flowunits/ImpulseOscillator.cpp create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/flowunits/ImpulseOscillator.h create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/flowunits/LinearShape.cpp create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/flowunits/LinearShape.h create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/flowunits/OscillatorBase.cpp create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/flowunits/OscillatorBase.h create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/flowunits/SawtoothOscillator.cpp create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/flowunits/SawtoothOscillator.h create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/flowunits/SineOscillator.cpp create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/flowunits/SineOscillator.h create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/flowunits/TriangleOscillator.cpp create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/flowunits/TriangleOscillator.h create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/jni-bridge.cpp create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/unused/unused.h create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/util/WaveFileWriter.cpp create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/cpp/util/WaveFileWriter.h create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/ic_launcher-playstore.png create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/audio_device/AudioDeviceAdapter.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/audio_device/AudioDeviceInfoConverter.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/audio_device/AudioDeviceListEntry.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/audio_device/AudioDeviceSpinner.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/EventScheduler.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/MidiConstants.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/MidiDeviceMonitor.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/MidiDispatcher.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/MidiEventScheduler.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/MidiEventThread.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/MidiFramer.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/MidiInputPortSelector.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/MidiOutputPortConnectionSelector.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/MidiOutputPortSelector.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/MidiPortConnector.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/MidiPortSelector.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/MidiPortWrapper.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/MidiTools.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/MusicKeyboardView.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/synth/AudioLatencyTuner.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/synth/EnvelopeADSR.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/synth/LatencyController.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/synth/SawOscillator.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/synth/SawOscillatorDPW.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/synth/SawVoice.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/synth/SimpleAudioOutput.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/synth/SineOscillator.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/synth/SineVoice.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/synth/SynthEngine.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/synth/SynthUnit.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/synth/SynthVoice.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/AnalyzerActivity.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/AudioInputTester.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/AudioOutputTester.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/AudioQueryTools.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/AudioRecordThread.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/AudioStreamBase.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/AudioStreamTester.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/AutomatedGlitchActivity.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/AutomatedTestRunner.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/BaseAutoGlitchActivity.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/BufferSizeView.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/CachedTextViewLog.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/CircularCaptureBuffer.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/DeviceReportActivity.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/EchoActivity.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/ExponentialTaper.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/ExternalTapToToneActivity.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/ExtraTestsActivity.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/FastButton.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/GlitchActivity.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/InputMarginView.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/MainActivity.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/ManualGlitchActivity.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/MicrophoneInfoConverter.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/MidiTapTester.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/NativeEngine.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/NativeSniffer.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/OboeAudioInputStream.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/OboeAudioOutputStream.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/OboeAudioStream.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/RecorderActivity.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/RoundTripLatencyActivity.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/StreamConfiguration.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/StreamConfigurationView.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/TapLatencyAnalyser.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/TapToToneActivity.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/TapToToneTester.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/TestAudioActivity.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/TestDataPathsActivity.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/TestDisconnectActivity.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/TestInputActivity.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/TestOutputActivity.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/TestOutputActivityBase.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/VolumeBarView.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/WaveformView.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/WorkloadView.java create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/drawable/button_shape.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/drawable/ic_launcher_background.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/drawable/ic_launcher_foreground.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/layout/activity_auto_glitches.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/layout/activity_data_paths.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/layout/activity_device_report.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/layout/activity_echo.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/layout/activity_external_tap_to_tone.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/layout/activity_extra_tests.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/layout/activity_main.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/layout/activity_manual_glitches.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/layout/activity_recorder.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/layout/activity_rt_latency.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/layout/activity_tap_to_tone.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/layout/activity_test_disconnect.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/layout/activity_test_input.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/layout/activity_test_output.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/layout/audio_devices.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/layout/auto_test_runner.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/layout/buffer_size_view.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/layout/input_margin_view.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/layout/merge_audio_common.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/layout/merge_audio_simple.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/layout/sample_fast_button.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/layout/stream_config.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/layout/workload_view.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/menu/menu_main.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/mipmap-hdpi/ic_launcher_round.png create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/mipmap-mdpi/ic_launcher_round.png create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/values-v21/styles.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/values-w600dp/dimens.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/values/arrays.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/values/attrs_fast_button.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/values/attrs_waveform.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/values/colors.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/values/dimens.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/values/strings.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/values/styles.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/xml/button_color_selector.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/xml/provider_paths.xml create mode 100644 src/libs/oboe/apps/OboeTester/app/src/main/res/xml/service_device_info.xml create mode 100644 src/libs/oboe/apps/OboeTester/build.gradle create mode 100644 src/libs/oboe/apps/OboeTester/docs/AutomatedTesting.md create mode 100644 src/libs/oboe/apps/OboeTester/docs/Build.md create mode 100644 src/libs/oboe/apps/OboeTester/docs/PrivacyPolicy.md create mode 100644 src/libs/oboe/apps/OboeTester/docs/README.md create mode 100644 src/libs/oboe/apps/OboeTester/docs/TestOutput.md create mode 100644 src/libs/oboe/apps/OboeTester/docs/Usage.md create mode 100644 src/libs/oboe/apps/OboeTester/docs/images/auto_glitch_test.png create mode 100644 src/libs/oboe/apps/OboeTester/docs/images/echo_input_output.png create mode 100644 src/libs/oboe/apps/OboeTester/docs/images/main_activity.png create mode 100644 src/libs/oboe/apps/OboeTester/docs/images/recorder.png create mode 100644 src/libs/oboe/apps/OboeTester/docs/images/round_trip_latency.png create mode 100644 src/libs/oboe/apps/OboeTester/docs/images/tap_to_tone.png create mode 100644 src/libs/oboe/apps/OboeTester/docs/images/test_glitches.png create mode 100644 src/libs/oboe/apps/OboeTester/docs/images/test_input.png create mode 100644 src/libs/oboe/apps/OboeTester/docs/images/test_output.png create mode 100644 src/libs/oboe/apps/OboeTester/docs/images/test_output_running.png create mode 100644 src/libs/oboe/apps/OboeTester/gradle.properties create mode 100644 src/libs/oboe/apps/OboeTester/gradle/wrapper/gradle-wrapper.jar create mode 100644 src/libs/oboe/apps/OboeTester/gradle/wrapper/gradle-wrapper.properties create mode 100755 src/libs/oboe/apps/OboeTester/gradlew create mode 100644 src/libs/oboe/apps/OboeTester/gradlew.bat create mode 100644 src/libs/oboe/apps/OboeTester/scripts/dsp_timing.py create mode 100644 src/libs/oboe/apps/OboeTester/settings.gradle create mode 100644 src/libs/oboe/apps/fxlab/.gitignore create mode 100644 src/libs/oboe/apps/fxlab/CONTRIBUTING.md create mode 100644 src/libs/oboe/apps/fxlab/LICENSE create mode 100644 src/libs/oboe/apps/fxlab/README.md create mode 100644 src/libs/oboe/apps/fxlab/app/.gitignore create mode 100644 src/libs/oboe/apps/fxlab/app/CMakeLists.txt create mode 100644 src/libs/oboe/apps/fxlab/app/build.gradle create mode 100644 src/libs/oboe/apps/fxlab/app/proguard-rules.pro create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/AndroidManifest.xml create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/DuplexCallback.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/DuplexEngine.cpp create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/DuplexEngine.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/FunctionList.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/effects/CombFilter.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/effects/DelayLineEffect.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/effects/DoublingEffect.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/effects/DriveControl.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/effects/EchoEffect.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/effects/Effects.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/effects/FlangerEffect.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/effects/SingleFunctionEffects.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/effects/SlapbackEffect.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/effects/TremoloEffect.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/effects/VibratroEffect.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/effects/WhiteChorusEffect.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/effects/descrip/AllPassDescription.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/effects/descrip/DistortionDescription.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/effects/descrip/DoublingDescription.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/effects/descrip/EchoDescription.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/effects/descrip/EffectDescription.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/effects/descrip/FIRDescription.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/effects/descrip/FlangerDescription.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/effects/descrip/GainDescription.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/effects/descrip/IIRDescription.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/effects/descrip/OverdriveDescription.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/effects/descrip/PassthroughDescription.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/effects/descrip/SlapbackDescription.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/effects/descrip/TremoloDescription.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/effects/descrip/VibratoDescription.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/effects/descrip/WhiteChorusDescription.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/effects/utils/DelayLine.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/effects/utils/PhaseAccumulator.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/effects/utils/SineWave.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/effects/utils/WhiteNoise.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/logging_macros.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/native-lib.cpp create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/tests/.gitignore create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/tests/CMakeLists.txt create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/tests/DelayLineEffectTest.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/tests/DelayLineTest.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/tests/TypeTests.h create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/cpp/tests/testEffects.cpp create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/java/com/mobileer/androidfxlab/EffectsAdapter.kt create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/java/com/mobileer/androidfxlab/MainActivity.kt create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/java/com/mobileer/androidfxlab/NativeInterface.kt create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/java/com/mobileer/androidfxlab/datatype/Effect.kt create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/java/com/mobileer/androidfxlab/datatype/EffectDescription.kt create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/java/com/mobileer/androidfxlab/datatype/ParamDescription.kt create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/res/drawable-v24/ic_launcher_foreground.xml create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/res/drawable/ic_add.xml create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/res/drawable/ic_baseline_audio_is_disabled_24.xml create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/res/drawable/ic_baseline_audio_is_enabled_24.xml create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/res/drawable/ic_baseline_drag_indicator.xml create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/res/drawable/ic_launcher_background.xml create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/res/layout/activity_main.xml create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/res/layout/effect_header.xml create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/res/layout/effect_view.xml create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/res/layout/param_seek.xml create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/res/menu/add_menu.xml create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/res/menu/toolbar_menu.xml create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/res/mipmap-hdpi/ic_launcher_round.png create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/res/mipmap-mdpi/ic_launcher_round.png create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/res/values/colors.xml create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/res/values/strings.xml create mode 100644 src/libs/oboe/apps/fxlab/app/src/main/res/values/styles.xml create mode 100644 src/libs/oboe/apps/fxlab/build.gradle create mode 100644 src/libs/oboe/apps/fxlab/docs/Dev-Guide.md create mode 100644 src/libs/oboe/apps/fxlab/docs/Presentation.pdf create mode 100644 src/libs/oboe/apps/fxlab/docs/README.md create mode 100644 src/libs/oboe/apps/fxlab/gradle.properties create mode 100644 src/libs/oboe/apps/fxlab/gradle/wrapper/gradle-wrapper.jar create mode 100644 src/libs/oboe/apps/fxlab/gradle/wrapper/gradle-wrapper.properties create mode 100755 src/libs/oboe/apps/fxlab/gradlew create mode 100644 src/libs/oboe/apps/fxlab/gradlew.bat create mode 100644 src/libs/oboe/apps/fxlab/screenshot.png create mode 100644 src/libs/oboe/apps/fxlab/settings.gradle create mode 100755 src/libs/oboe/build_all_android.sh create mode 100644 src/libs/oboe/docs/.nojekyll create mode 100644 src/libs/oboe/docs/AndroidAudioHistory.md create mode 100644 src/libs/oboe/docs/AppsUsingOboe.md create mode 100644 src/libs/oboe/docs/ChangeLog.md create mode 100644 src/libs/oboe/docs/FAQ.md create mode 100644 src/libs/oboe/docs/FullGuide.md create mode 100644 src/libs/oboe/docs/GettingStarted.md create mode 100644 src/libs/oboe/docs/OpenSLESMigration.md create mode 100644 src/libs/oboe/docs/README.md create mode 100644 src/libs/oboe/docs/images/cmakelists-location-in-as.png create mode 100644 src/libs/oboe/docs/images/getting-started-video.jpg create mode 100644 src/libs/oboe/docs/images/oboe-lifecycle.png create mode 100644 src/libs/oboe/docs/images/oboe-sharing-mode-exclusive.jpg create mode 100644 src/libs/oboe/docs/images/oboe-sharing-mode-shared.jpg create mode 100644 src/libs/oboe/docs/index.html create mode 100644 src/libs/oboe/docs/index.md create mode 100644 src/libs/oboe/docs/notes/README.md create mode 100644 src/libs/oboe/docs/notes/disconnect.md create mode 100644 src/libs/oboe/docs/notes/effects.md create mode 100644 src/libs/oboe/docs/notes/rlsbuffer.md create mode 100644 src/libs/oboe/docs/reference/_audio_stream_8h_source.html create mode 100644 src/libs/oboe/docs/reference/_audio_stream_base_8h_source.html create mode 100644 src/libs/oboe/docs/reference/_audio_stream_builder_8h_source.html create mode 100644 src/libs/oboe/docs/reference/_audio_stream_callback_8h_source.html create mode 100644 src/libs/oboe/docs/reference/_definitions_8h_source.html create mode 100644 src/libs/oboe/docs/reference/_latency_tuner_8h_source.html create mode 100644 src/libs/oboe/docs/reference/_oboe_8h_source.html create mode 100644 src/libs/oboe/docs/reference/_result_with_value_8h_source.html create mode 100644 src/libs/oboe/docs/reference/_stabilized_callback_8h_source.html create mode 100644 src/libs/oboe/docs/reference/_utilities_8h_source.html create mode 100644 src/libs/oboe/docs/reference/_version_8h_source.html create mode 100644 src/libs/oboe/docs/reference/annotated.html create mode 100644 src/libs/oboe/docs/reference/bc_s.png create mode 100644 src/libs/oboe/docs/reference/bdwn.png create mode 100644 src/libs/oboe/docs/reference/classes.html create mode 100644 src/libs/oboe/docs/reference/classoboe_1_1_audio_stream-members.html create mode 100644 src/libs/oboe/docs/reference/classoboe_1_1_audio_stream.html create mode 100644 src/libs/oboe/docs/reference/classoboe_1_1_audio_stream.png create mode 100644 src/libs/oboe/docs/reference/classoboe_1_1_audio_stream_base-members.html create mode 100644 src/libs/oboe/docs/reference/classoboe_1_1_audio_stream_base.html create mode 100644 src/libs/oboe/docs/reference/classoboe_1_1_audio_stream_base.png create mode 100644 src/libs/oboe/docs/reference/classoboe_1_1_audio_stream_builder-members.html create mode 100644 src/libs/oboe/docs/reference/classoboe_1_1_audio_stream_builder.html create mode 100644 src/libs/oboe/docs/reference/classoboe_1_1_audio_stream_builder.png create mode 100644 src/libs/oboe/docs/reference/classoboe_1_1_audio_stream_callback-members.html create mode 100644 src/libs/oboe/docs/reference/classoboe_1_1_audio_stream_callback.html create mode 100644 src/libs/oboe/docs/reference/classoboe_1_1_audio_stream_callback.png create mode 100644 src/libs/oboe/docs/reference/classoboe_1_1_audio_stream_data_callback-members.html create mode 100644 src/libs/oboe/docs/reference/classoboe_1_1_audio_stream_data_callback.html create mode 100644 src/libs/oboe/docs/reference/classoboe_1_1_audio_stream_data_callback.png create mode 100644 src/libs/oboe/docs/reference/classoboe_1_1_audio_stream_error_callback-members.html create mode 100644 src/libs/oboe/docs/reference/classoboe_1_1_audio_stream_error_callback.html create mode 100644 src/libs/oboe/docs/reference/classoboe_1_1_audio_stream_error_callback.png create mode 100644 src/libs/oboe/docs/reference/classoboe_1_1_default_stream_values-members.html create mode 100644 src/libs/oboe/docs/reference/classoboe_1_1_default_stream_values.html create mode 100644 src/libs/oboe/docs/reference/classoboe_1_1_latency_tuner-members.html create mode 100644 src/libs/oboe/docs/reference/classoboe_1_1_latency_tuner.html create mode 100644 src/libs/oboe/docs/reference/classoboe_1_1_oboe_globals-members.html create mode 100644 src/libs/oboe/docs/reference/classoboe_1_1_oboe_globals.html create mode 100644 src/libs/oboe/docs/reference/classoboe_1_1_result_with_value-members.html create mode 100644 src/libs/oboe/docs/reference/classoboe_1_1_result_with_value.html create mode 100644 src/libs/oboe/docs/reference/classoboe_1_1_stabilized_callback-members.html create mode 100644 src/libs/oboe/docs/reference/classoboe_1_1_stabilized_callback.html create mode 100644 src/libs/oboe/docs/reference/classoboe_1_1_stabilized_callback.png create mode 100644 src/libs/oboe/docs/reference/closed.png create mode 100644 src/libs/oboe/docs/reference/deprecated.html create mode 100644 src/libs/oboe/docs/reference/dir_768f6301d9838e45d679001914ab2803.html create mode 100644 src/libs/oboe/docs/reference/dir_d44c64559bbebec7f509842c48db8b23.html create mode 100644 src/libs/oboe/docs/reference/doc.png create mode 100644 src/libs/oboe/docs/reference/doxygen.css create mode 100644 src/libs/oboe/docs/reference/doxygen.png create mode 100644 src/libs/oboe/docs/reference/dynsections.js create mode 100644 src/libs/oboe/docs/reference/files.html create mode 100644 src/libs/oboe/docs/reference/folderclosed.png create mode 100644 src/libs/oboe/docs/reference/folderopen.png create mode 100644 src/libs/oboe/docs/reference/functions.html create mode 100644 src/libs/oboe/docs/reference/functions_func.html create mode 100644 src/libs/oboe/docs/reference/functions_vars.html create mode 100644 src/libs/oboe/docs/reference/hierarchy.html create mode 100644 src/libs/oboe/docs/reference/index.html create mode 100644 src/libs/oboe/docs/reference/jquery.js create mode 100644 src/libs/oboe/docs/reference/menu.js create mode 100644 src/libs/oboe/docs/reference/menudata.js create mode 100644 src/libs/oboe/docs/reference/namespacemembers.html create mode 100644 src/libs/oboe/docs/reference/namespacemembers_enum.html create mode 100644 src/libs/oboe/docs/reference/namespacemembers_eval.html create mode 100644 src/libs/oboe/docs/reference/namespacemembers_func.html create mode 100644 src/libs/oboe/docs/reference/namespacemembers_vars.html create mode 100644 src/libs/oboe/docs/reference/namespaceoboe.html create mode 100644 src/libs/oboe/docs/reference/namespaces.html create mode 100644 src/libs/oboe/docs/reference/nav_f.png create mode 100644 src/libs/oboe/docs/reference/nav_g.png create mode 100644 src/libs/oboe/docs/reference/nav_h.png create mode 100644 src/libs/oboe/docs/reference/open.png create mode 100644 src/libs/oboe/docs/reference/pages.html create mode 100644 src/libs/oboe/docs/reference/search/all_0.html create mode 100644 src/libs/oboe/docs/reference/search/all_0.js create mode 100644 src/libs/oboe/docs/reference/search/all_1.html create mode 100644 src/libs/oboe/docs/reference/search/all_1.js create mode 100644 src/libs/oboe/docs/reference/search/all_10.html create mode 100644 src/libs/oboe/docs/reference/search/all_10.js create mode 100644 src/libs/oboe/docs/reference/search/all_11.html create mode 100644 src/libs/oboe/docs/reference/search/all_11.js create mode 100644 src/libs/oboe/docs/reference/search/all_12.html create mode 100644 src/libs/oboe/docs/reference/search/all_12.js create mode 100644 src/libs/oboe/docs/reference/search/all_13.html create mode 100644 src/libs/oboe/docs/reference/search/all_13.js create mode 100644 src/libs/oboe/docs/reference/search/all_2.html create mode 100644 src/libs/oboe/docs/reference/search/all_2.js create mode 100644 src/libs/oboe/docs/reference/search/all_3.html create mode 100644 src/libs/oboe/docs/reference/search/all_3.js create mode 100644 src/libs/oboe/docs/reference/search/all_4.html create mode 100644 src/libs/oboe/docs/reference/search/all_4.js create mode 100644 src/libs/oboe/docs/reference/search/all_5.html create mode 100644 src/libs/oboe/docs/reference/search/all_5.js create mode 100644 src/libs/oboe/docs/reference/search/all_6.html create mode 100644 src/libs/oboe/docs/reference/search/all_6.js create mode 100644 src/libs/oboe/docs/reference/search/all_7.html create mode 100644 src/libs/oboe/docs/reference/search/all_7.js create mode 100644 src/libs/oboe/docs/reference/search/all_8.html create mode 100644 src/libs/oboe/docs/reference/search/all_8.js create mode 100644 src/libs/oboe/docs/reference/search/all_9.html create mode 100644 src/libs/oboe/docs/reference/search/all_9.js create mode 100644 src/libs/oboe/docs/reference/search/all_a.html create mode 100644 src/libs/oboe/docs/reference/search/all_a.js create mode 100644 src/libs/oboe/docs/reference/search/all_b.html create mode 100644 src/libs/oboe/docs/reference/search/all_b.js create mode 100644 src/libs/oboe/docs/reference/search/all_c.html create mode 100644 src/libs/oboe/docs/reference/search/all_c.js create mode 100644 src/libs/oboe/docs/reference/search/all_d.html create mode 100644 src/libs/oboe/docs/reference/search/all_d.js create mode 100644 src/libs/oboe/docs/reference/search/all_e.html create mode 100644 src/libs/oboe/docs/reference/search/all_e.js create mode 100644 src/libs/oboe/docs/reference/search/all_f.html create mode 100644 src/libs/oboe/docs/reference/search/all_f.js create mode 100644 src/libs/oboe/docs/reference/search/classes_0.html create mode 100644 src/libs/oboe/docs/reference/search/classes_0.js create mode 100644 src/libs/oboe/docs/reference/search/classes_1.html create mode 100644 src/libs/oboe/docs/reference/search/classes_1.js create mode 100644 src/libs/oboe/docs/reference/search/classes_2.html create mode 100644 src/libs/oboe/docs/reference/search/classes_2.js create mode 100644 src/libs/oboe/docs/reference/search/classes_3.html create mode 100644 src/libs/oboe/docs/reference/search/classes_3.js create mode 100644 src/libs/oboe/docs/reference/search/classes_4.html create mode 100644 src/libs/oboe/docs/reference/search/classes_4.js create mode 100644 src/libs/oboe/docs/reference/search/classes_5.html create mode 100644 src/libs/oboe/docs/reference/search/classes_5.js create mode 100644 src/libs/oboe/docs/reference/search/classes_6.html create mode 100644 src/libs/oboe/docs/reference/search/classes_6.js create mode 100644 src/libs/oboe/docs/reference/search/classes_7.html create mode 100644 src/libs/oboe/docs/reference/search/classes_7.js create mode 100644 src/libs/oboe/docs/reference/search/close.png create mode 100644 src/libs/oboe/docs/reference/search/enums_0.html create mode 100644 src/libs/oboe/docs/reference/search/enums_0.js create mode 100644 src/libs/oboe/docs/reference/search/enums_1.html create mode 100644 src/libs/oboe/docs/reference/search/enums_1.js create mode 100644 src/libs/oboe/docs/reference/search/enums_2.html create mode 100644 src/libs/oboe/docs/reference/search/enums_2.js create mode 100644 src/libs/oboe/docs/reference/search/enums_3.html create mode 100644 src/libs/oboe/docs/reference/search/enums_3.js create mode 100644 src/libs/oboe/docs/reference/search/enums_4.html create mode 100644 src/libs/oboe/docs/reference/search/enums_4.js create mode 100644 src/libs/oboe/docs/reference/search/enums_5.html create mode 100644 src/libs/oboe/docs/reference/search/enums_5.js create mode 100644 src/libs/oboe/docs/reference/search/enums_6.html create mode 100644 src/libs/oboe/docs/reference/search/enums_6.js create mode 100644 src/libs/oboe/docs/reference/search/enums_7.html create mode 100644 src/libs/oboe/docs/reference/search/enums_7.js create mode 100644 src/libs/oboe/docs/reference/search/enumvalues_0.html create mode 100644 src/libs/oboe/docs/reference/search/enumvalues_0.js create mode 100644 src/libs/oboe/docs/reference/search/enumvalues_1.html create mode 100644 src/libs/oboe/docs/reference/search/enumvalues_1.js create mode 100644 src/libs/oboe/docs/reference/search/enumvalues_2.html create mode 100644 src/libs/oboe/docs/reference/search/enumvalues_2.js create mode 100644 src/libs/oboe/docs/reference/search/enumvalues_3.html create mode 100644 src/libs/oboe/docs/reference/search/enumvalues_3.js create mode 100644 src/libs/oboe/docs/reference/search/enumvalues_4.html create mode 100644 src/libs/oboe/docs/reference/search/enumvalues_4.js create mode 100644 src/libs/oboe/docs/reference/search/enumvalues_5.html create mode 100644 src/libs/oboe/docs/reference/search/enumvalues_5.js create mode 100644 src/libs/oboe/docs/reference/search/enumvalues_6.html create mode 100644 src/libs/oboe/docs/reference/search/enumvalues_6.js create mode 100644 src/libs/oboe/docs/reference/search/enumvalues_7.html create mode 100644 src/libs/oboe/docs/reference/search/enumvalues_7.js create mode 100644 src/libs/oboe/docs/reference/search/enumvalues_8.html create mode 100644 src/libs/oboe/docs/reference/search/enumvalues_8.js create mode 100644 src/libs/oboe/docs/reference/search/enumvalues_9.html create mode 100644 src/libs/oboe/docs/reference/search/enumvalues_9.js create mode 100644 src/libs/oboe/docs/reference/search/enumvalues_a.html create mode 100644 src/libs/oboe/docs/reference/search/enumvalues_a.js create mode 100644 src/libs/oboe/docs/reference/search/enumvalues_b.html create mode 100644 src/libs/oboe/docs/reference/search/enumvalues_b.js create mode 100644 src/libs/oboe/docs/reference/search/enumvalues_c.html create mode 100644 src/libs/oboe/docs/reference/search/enumvalues_c.js create mode 100644 src/libs/oboe/docs/reference/search/enumvalues_d.html create mode 100644 src/libs/oboe/docs/reference/search/enumvalues_d.js create mode 100644 src/libs/oboe/docs/reference/search/enumvalues_e.html create mode 100644 src/libs/oboe/docs/reference/search/enumvalues_e.js create mode 100644 src/libs/oboe/docs/reference/search/functions_0.html create mode 100644 src/libs/oboe/docs/reference/search/functions_0.js create mode 100644 src/libs/oboe/docs/reference/search/functions_1.html create mode 100644 src/libs/oboe/docs/reference/search/functions_1.js create mode 100644 src/libs/oboe/docs/reference/search/functions_2.html create mode 100644 src/libs/oboe/docs/reference/search/functions_2.js create mode 100644 src/libs/oboe/docs/reference/search/functions_3.html create mode 100644 src/libs/oboe/docs/reference/search/functions_3.js create mode 100644 src/libs/oboe/docs/reference/search/functions_4.html create mode 100644 src/libs/oboe/docs/reference/search/functions_4.js create mode 100644 src/libs/oboe/docs/reference/search/functions_5.html create mode 100644 src/libs/oboe/docs/reference/search/functions_5.js create mode 100644 src/libs/oboe/docs/reference/search/functions_6.html create mode 100644 src/libs/oboe/docs/reference/search/functions_6.js create mode 100644 src/libs/oboe/docs/reference/search/functions_7.html create mode 100644 src/libs/oboe/docs/reference/search/functions_7.js create mode 100644 src/libs/oboe/docs/reference/search/functions_8.html create mode 100644 src/libs/oboe/docs/reference/search/functions_8.js create mode 100644 src/libs/oboe/docs/reference/search/functions_9.html create mode 100644 src/libs/oboe/docs/reference/search/functions_9.js create mode 100644 src/libs/oboe/docs/reference/search/functions_a.html create mode 100644 src/libs/oboe/docs/reference/search/functions_a.js create mode 100644 src/libs/oboe/docs/reference/search/functions_b.html create mode 100644 src/libs/oboe/docs/reference/search/functions_b.js create mode 100644 src/libs/oboe/docs/reference/search/functions_c.html create mode 100644 src/libs/oboe/docs/reference/search/functions_c.js create mode 100644 src/libs/oboe/docs/reference/search/functions_d.html create mode 100644 src/libs/oboe/docs/reference/search/functions_d.js create mode 100644 src/libs/oboe/docs/reference/search/functions_e.html create mode 100644 src/libs/oboe/docs/reference/search/functions_e.js create mode 100644 src/libs/oboe/docs/reference/search/mag_sel.png create mode 100644 src/libs/oboe/docs/reference/search/namespaces_0.html create mode 100644 src/libs/oboe/docs/reference/search/namespaces_0.js create mode 100644 src/libs/oboe/docs/reference/search/nomatches.html create mode 100644 src/libs/oboe/docs/reference/search/pages_0.html create mode 100644 src/libs/oboe/docs/reference/search/pages_0.js create mode 100644 src/libs/oboe/docs/reference/search/pages_1.html create mode 100644 src/libs/oboe/docs/reference/search/pages_1.js create mode 100644 src/libs/oboe/docs/reference/search/search.css create mode 100644 src/libs/oboe/docs/reference/search/search.js create mode 100644 src/libs/oboe/docs/reference/search/search_l.png create mode 100644 src/libs/oboe/docs/reference/search/search_m.png create mode 100644 src/libs/oboe/docs/reference/search/search_r.png create mode 100644 src/libs/oboe/docs/reference/search/searchdata.js create mode 100644 src/libs/oboe/docs/reference/search/variables_0.html create mode 100644 src/libs/oboe/docs/reference/search/variables_0.js create mode 100644 src/libs/oboe/docs/reference/search/variables_1.html create mode 100644 src/libs/oboe/docs/reference/search/variables_1.js create mode 100644 src/libs/oboe/docs/reference/search/variables_2.html create mode 100644 src/libs/oboe/docs/reference/search/variables_2.js create mode 100644 src/libs/oboe/docs/reference/search/variables_3.html create mode 100644 src/libs/oboe/docs/reference/search/variables_3.js create mode 100644 src/libs/oboe/docs/reference/search/variables_4.html create mode 100644 src/libs/oboe/docs/reference/search/variables_4.js create mode 100644 src/libs/oboe/docs/reference/search/variables_5.html create mode 100644 src/libs/oboe/docs/reference/search/variables_5.js create mode 100644 src/libs/oboe/docs/reference/search/variables_6.html create mode 100644 src/libs/oboe/docs/reference/search/variables_6.js create mode 100644 src/libs/oboe/docs/reference/search/variables_7.html create mode 100644 src/libs/oboe/docs/reference/search/variables_7.js create mode 100644 src/libs/oboe/docs/reference/splitbar.png create mode 100644 src/libs/oboe/docs/reference/structoboe_1_1_frame_timestamp-members.html create mode 100644 src/libs/oboe/docs/reference/structoboe_1_1_frame_timestamp.html create mode 100644 src/libs/oboe/docs/reference/structoboe_1_1_stream_deleter_functor-members.html create mode 100644 src/libs/oboe/docs/reference/structoboe_1_1_stream_deleter_functor.html create mode 100644 src/libs/oboe/docs/reference/structoboe_1_1_version-members.html create mode 100644 src/libs/oboe/docs/reference/structoboe_1_1_version.html create mode 100644 src/libs/oboe/docs/reference/sync_off.png create mode 100644 src/libs/oboe/docs/reference/sync_on.png create mode 100644 src/libs/oboe/docs/reference/tab_a.png create mode 100644 src/libs/oboe/docs/reference/tab_b.png create mode 100644 src/libs/oboe/docs/reference/tab_h.png create mode 100644 src/libs/oboe/docs/reference/tab_s.png create mode 100644 src/libs/oboe/docs/reference/tabs.css create mode 100644 src/libs/oboe/include/oboe/AudioStream.h create mode 100644 src/libs/oboe/include/oboe/AudioStreamBase.h create mode 100644 src/libs/oboe/include/oboe/AudioStreamBuilder.h create mode 100644 src/libs/oboe/include/oboe/AudioStreamCallback.h create mode 100644 src/libs/oboe/include/oboe/Definitions.h create mode 100644 src/libs/oboe/include/oboe/LatencyTuner.h create mode 100644 src/libs/oboe/include/oboe/Oboe.h create mode 100644 src/libs/oboe/include/oboe/ResultWithValue.h create mode 100644 src/libs/oboe/include/oboe/StabilizedCallback.h create mode 100644 src/libs/oboe/include/oboe/Utilities.h create mode 100644 src/libs/oboe/include/oboe/Version.h create mode 100644 src/libs/oboe/prefab/oboe-VERSION.pom create mode 100644 src/libs/oboe/prefab/oboe-VERSION/AndroidManifest.xml create mode 100644 src/libs/oboe/prefab/oboe-VERSION/prefab/modules/oboe/libs/android.arm64-v8a/abi.json create mode 100644 src/libs/oboe/prefab/oboe-VERSION/prefab/modules/oboe/libs/android.armeabi-v7a/abi.json create mode 100644 src/libs/oboe/prefab/oboe-VERSION/prefab/modules/oboe/libs/android.x86/abi.json create mode 100644 src/libs/oboe/prefab/oboe-VERSION/prefab/modules/oboe/libs/android.x86_64/abi.json create mode 100644 src/libs/oboe/prefab/oboe-VERSION/prefab/modules/oboe/module.json create mode 100644 src/libs/oboe/prefab/oboe-VERSION/prefab/prefab.json create mode 100755 src/libs/oboe/prefab_build.sh create mode 100644 src/libs/oboe/samples/.gitignore create mode 100644 src/libs/oboe/samples/LiveEffect/README.md create mode 100644 src/libs/oboe/samples/LiveEffect/build.gradle create mode 100644 src/libs/oboe/samples/LiveEffect/screenshot.png create mode 100644 src/libs/oboe/samples/LiveEffect/src/main/AndroidManifest.xml create mode 100644 src/libs/oboe/samples/LiveEffect/src/main/cpp/CMakeLists.txt create mode 100644 src/libs/oboe/samples/LiveEffect/src/main/cpp/FullDuplexPass.h create mode 100644 src/libs/oboe/samples/LiveEffect/src/main/cpp/FullDuplexStream.cpp create mode 100644 src/libs/oboe/samples/LiveEffect/src/main/cpp/FullDuplexStream.h create mode 100644 src/libs/oboe/samples/LiveEffect/src/main/cpp/LiveEffectEngine.cpp create mode 100644 src/libs/oboe/samples/LiveEffect/src/main/cpp/LiveEffectEngine.h create mode 100644 src/libs/oboe/samples/LiveEffect/src/main/cpp/jni_bridge.cpp create mode 100644 src/libs/oboe/samples/LiveEffect/src/main/cpp/ndk-stl-config.cmake create mode 100644 src/libs/oboe/samples/LiveEffect/src/main/java/com/google/oboe/samples/liveEffect/LiveEffectEngine.java create mode 100644 src/libs/oboe/samples/LiveEffect/src/main/java/com/google/oboe/samples/liveEffect/MainActivity.java create mode 100644 src/libs/oboe/samples/LiveEffect/src/main/res/drawable/balance_seekbar.xml create mode 100644 src/libs/oboe/samples/LiveEffect/src/main/res/layout-v21/activity_main.xml create mode 100644 src/libs/oboe/samples/LiveEffect/src/main/res/layout/activity_main.xml create mode 100644 src/libs/oboe/samples/LiveEffect/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 src/libs/oboe/samples/LiveEffect/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 src/libs/oboe/samples/LiveEffect/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 src/libs/oboe/samples/LiveEffect/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 src/libs/oboe/samples/LiveEffect/src/main/res/values-v21/styles.xml create mode 100644 src/libs/oboe/samples/LiveEffect/src/main/res/values-w820dp/dimens.xml create mode 100644 src/libs/oboe/samples/LiveEffect/src/main/res/values/colors.xml create mode 100644 src/libs/oboe/samples/LiveEffect/src/main/res/values/dimens.xml create mode 100644 src/libs/oboe/samples/LiveEffect/src/main/res/values/strings.xml create mode 100644 src/libs/oboe/samples/LiveEffect/src/main/res/values/styles.xml create mode 100644 src/libs/oboe/samples/MegaDrone/.gitignore create mode 100644 src/libs/oboe/samples/MegaDrone/README.md create mode 100644 src/libs/oboe/samples/MegaDrone/build.gradle create mode 100644 src/libs/oboe/samples/MegaDrone/megadrone-screenshot.png create mode 100644 src/libs/oboe/samples/MegaDrone/proguard-rules.pro create mode 100644 src/libs/oboe/samples/MegaDrone/src/main/AndroidManifest.xml create mode 100644 src/libs/oboe/samples/MegaDrone/src/main/cpp/CMakeLists.txt create mode 100644 src/libs/oboe/samples/MegaDrone/src/main/cpp/MegaDroneEngine.cpp create mode 100644 src/libs/oboe/samples/MegaDrone/src/main/cpp/MegaDroneEngine.h create mode 100644 src/libs/oboe/samples/MegaDrone/src/main/cpp/Synth.h create mode 100644 src/libs/oboe/samples/MegaDrone/src/main/cpp/native-lib.cpp create mode 100644 src/libs/oboe/samples/MegaDrone/src/main/java/com/google/oboe/samples/megadrone/MainActivity.java create mode 100644 src/libs/oboe/samples/MegaDrone/src/main/res/drawable-v24/ic_launcher_foreground.xml create mode 100644 src/libs/oboe/samples/MegaDrone/src/main/res/drawable/ic_launcher_background.xml create mode 100644 src/libs/oboe/samples/MegaDrone/src/main/res/layout/activity_main.xml create mode 100644 src/libs/oboe/samples/MegaDrone/src/main/res/mipmap-anydpi-v26/ic_launcher.xml create mode 100644 src/libs/oboe/samples/MegaDrone/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml create mode 100644 src/libs/oboe/samples/MegaDrone/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 src/libs/oboe/samples/MegaDrone/src/main/res/mipmap-hdpi/ic_launcher_round.png create mode 100644 src/libs/oboe/samples/MegaDrone/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 src/libs/oboe/samples/MegaDrone/src/main/res/mipmap-mdpi/ic_launcher_round.png create mode 100644 src/libs/oboe/samples/MegaDrone/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 src/libs/oboe/samples/MegaDrone/src/main/res/mipmap-xhdpi/ic_launcher_round.png create mode 100644 src/libs/oboe/samples/MegaDrone/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 src/libs/oboe/samples/MegaDrone/src/main/res/mipmap-xxhdpi/ic_launcher_round.png create mode 100644 src/libs/oboe/samples/MegaDrone/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 src/libs/oboe/samples/MegaDrone/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png create mode 100644 src/libs/oboe/samples/MegaDrone/src/main/res/values/colors.xml create mode 100644 src/libs/oboe/samples/MegaDrone/src/main/res/values/strings.xml create mode 100644 src/libs/oboe/samples/MegaDrone/src/main/res/values/styles.xml create mode 100644 src/libs/oboe/samples/README.md create mode 100644 src/libs/oboe/samples/RhythmGame/CMakeLists.txt create mode 100644 src/libs/oboe/samples/RhythmGame/README.md create mode 100644 src/libs/oboe/samples/RhythmGame/build.gradle create mode 100644 src/libs/oboe/samples/RhythmGame/images/1-timeline.png create mode 100644 src/libs/oboe/samples/RhythmGame/images/2-architecture.png create mode 100644 src/libs/oboe/samples/RhythmGame/images/3-audioData.png create mode 100644 src/libs/oboe/samples/RhythmGame/images/4-audio-rendering.png create mode 100644 src/libs/oboe/samples/RhythmGame/images/5-lockfreequeue.png create mode 100644 src/libs/oboe/samples/RhythmGame/images/6-audio-ui-sync.png create mode 100644 src/libs/oboe/samples/RhythmGame/images/7-tap-window.png create mode 100644 src/libs/oboe/samples/RhythmGame/images/RhythmGame-screenshot.png create mode 100644 src/libs/oboe/samples/RhythmGame/proguard-rules.pro create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/AndroidManifest.xml create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/assets/CLAP.mp3 create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/assets/FUNKY_HOUSE.mp3 create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/cpp/Game.cpp create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/cpp/Game.h create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/cpp/GameConstants.h create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/cpp/audio/AAssetDataSource.cpp create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/cpp/audio/AAssetDataSource.h create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/cpp/audio/DataSource.h create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/cpp/audio/FFMpegExtractor.cpp create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/cpp/audio/FFMpegExtractor.h create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/cpp/audio/NDKExtractor.cpp create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/cpp/audio/NDKExtractor.h create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/cpp/audio/Player.cpp create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/cpp/audio/Player.h create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/cpp/native-lib.cpp create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/cpp/ui/OpenGLFunctions.cpp create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/cpp/ui/OpenGLFunctions.h create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/cpp/utils/LockFreeQueue.h create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/cpp/utils/UtilityFunctions.cpp create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/cpp/utils/UtilityFunctions.h create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/cpp/utils/logging.h create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/java/com/google/oboe/samples/rhythmgame/GameSurfaceView.java create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/java/com/google/oboe/samples/rhythmgame/MainActivity.java create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/java/com/google/oboe/samples/rhythmgame/RendererWrapper.java create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/res/drawable-v24/ic_launcher_foreground.xml create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/res/drawable/ic_launcher_background.xml create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/res/layout/activity_main.xml create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/res/mipmap-anydpi-v26/ic_launcher.xml create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/res/mipmap-hdpi/ic_launcher_round.png create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/res/mipmap-mdpi/ic_launcher_round.png create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/res/mipmap-xhdpi/ic_launcher_round.png create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/res/mipmap-xxhdpi/ic_launcher_round.png create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/res/values/colors.xml create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/res/values/strings.xml create mode 100644 src/libs/oboe/samples/RhythmGame/src/main/res/values/styles.xml create mode 100644 src/libs/oboe/samples/RhythmGame/test/CMakeLists.txt create mode 100755 src/libs/oboe/samples/RhythmGame/test/run_tests.sh create mode 100644 src/libs/oboe/samples/RhythmGame/test/testLockFreeQueue.cpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/CMakeLists.txt create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/common.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/_features.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/_fixes.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/_noise.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/_swizzle.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/_swizzle_func.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/_vectorize.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/dummy.cpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/func_common.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/func_common.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/func_common_simd.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/func_exponential.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/func_exponential.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/func_exponential_simd.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/func_geometric.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/func_geometric.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/func_geometric_simd.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/func_integer.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/func_integer.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/func_integer_simd.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/func_matrix.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/func_matrix.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/func_matrix_simd.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/func_packing.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/func_packing.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/func_packing_simd.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/func_trigonometric.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/func_trigonometric.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/func_trigonometric_simd.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/func_vector_relational.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/func_vector_relational.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/func_vector_relational_simd.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/glm.cpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/precision.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/setup.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_float.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_gentype.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_gentype.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_half.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_half.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_int.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_mat.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_mat.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_mat2x2.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_mat2x2.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_mat2x3.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_mat2x3.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_mat2x4.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_mat2x4.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_mat3x2.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_mat3x2.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_mat3x3.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_mat3x3.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_mat3x4.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_mat3x4.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_mat4x2.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_mat4x2.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_mat4x3.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_mat4x3.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_mat4x4.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_mat4x4.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_mat4x4_simd.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_vec.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_vec.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_vec1.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_vec1.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_vec2.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_vec2.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_vec3.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_vec3.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_vec4.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_vec4.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/detail/type_vec4_simd.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/exponential.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/ext.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/fwd.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/geometric.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/glm.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/bitfield.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/bitfield.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/color_encoding.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/color_space.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/color_space.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/constants.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/constants.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/epsilon.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/epsilon.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/functions.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/functions.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/integer.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/integer.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/matrix_access.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/matrix_access.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/matrix_integer.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/matrix_inverse.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/matrix_inverse.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/matrix_transform.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/matrix_transform.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/noise.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/noise.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/packing.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/packing.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/quaternion.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/quaternion.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/quaternion_simd.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/random.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/random.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/reciprocal.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/reciprocal.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/round.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/round.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/type_aligned.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/type_precision.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/type_precision.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/type_ptr.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/type_ptr.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/ulp.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/ulp.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/vec1.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtc/vec1.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/associated_min_max.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/associated_min_max.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/bit.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/bit.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/closest_point.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/closest_point.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/color_space.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/color_space.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/color_space_YCoCg.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/color_space_YCoCg.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/common.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/common.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/compatibility.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/compatibility.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/component_wise.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/component_wise.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/dual_quaternion.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/dual_quaternion.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/euler_angles.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/euler_angles.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/extend.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/extend.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/extended_min_max.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/extended_min_max.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/fast_exponential.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/fast_exponential.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/fast_square_root.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/fast_square_root.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/fast_trigonometry.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/fast_trigonometry.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/float_notmalize.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/gradient_paint.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/gradient_paint.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/handed_coordinate_space.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/handed_coordinate_space.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/hash.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/hash.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/integer.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/integer.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/intersect.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/intersect.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/io.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/io.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/log_base.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/log_base.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/matrix_cross_product.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/matrix_cross_product.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/matrix_decompose.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/matrix_decompose.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/matrix_interpolation.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/matrix_interpolation.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/matrix_major_storage.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/matrix_major_storage.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/matrix_operation.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/matrix_operation.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/matrix_query.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/matrix_query.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/matrix_transform_2d.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/matrix_transform_2d.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/mixed_product.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/mixed_product.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/norm.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/norm.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/normal.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/normal.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/normalize_dot.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/normalize_dot.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/number_precision.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/number_precision.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/optimum_pow.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/optimum_pow.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/orthonormalize.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/orthonormalize.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/perpendicular.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/perpendicular.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/polar_coordinates.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/polar_coordinates.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/projection.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/projection.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/quaternion.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/quaternion.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/range.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/raw_data.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/raw_data.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/rotate_normalized_axis.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/rotate_normalized_axis.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/rotate_vector.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/rotate_vector.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/scalar_multiplication.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/scalar_relational.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/scalar_relational.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/simd_mat4.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/simd_mat4.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/simd_quat.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/simd_quat.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/simd_vec4.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/simd_vec4.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/spline.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/spline.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/std_based_type.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/std_based_type.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/string_cast.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/string_cast.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/transform.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/transform.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/transform2.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/transform2.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/type_aligned.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/type_aligned.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/type_trait.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/type_trait.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/vector_angle.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/vector_angle.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/vector_query.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/vector_query.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/wrap.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/gtx/wrap.inl create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/integer.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/mat2x2.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/mat2x3.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/mat2x4.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/mat3x2.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/mat3x3.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/mat3x4.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/mat4x2.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/mat4x3.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/mat4x4.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/matrix.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/packing.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/simd/common.h create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/simd/exponential.h create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/simd/geometric.h create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/simd/integer.h create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/simd/matrix.h create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/simd/packing.h create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/simd/platform.h create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/simd/trigonometric.h create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/simd/vector_relational.h create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/trigonometric.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/vec2.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/vec3.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/vec4.hpp create mode 100644 src/libs/oboe/samples/RhythmGame/third_party/glm/vector_relational.hpp create mode 100644 src/libs/oboe/samples/audio-device/README.md create mode 100644 src/libs/oboe/samples/audio-device/build.gradle create mode 100644 src/libs/oboe/samples/audio-device/proguard-rules.pro create mode 100644 src/libs/oboe/samples/audio-device/src/main/AndroidManifest.xml create mode 100644 src/libs/oboe/samples/audio-device/src/main/java/com/google/oboe/samples/audio_device/AudioDeviceAdapter.java create mode 100644 src/libs/oboe/samples/audio-device/src/main/java/com/google/oboe/samples/audio_device/AudioDeviceInfoConverter.java create mode 100644 src/libs/oboe/samples/audio-device/src/main/java/com/google/oboe/samples/audio_device/AudioDeviceListEntry.java create mode 100644 src/libs/oboe/samples/audio-device/src/main/java/com/google/oboe/samples/audio_device/AudioDeviceSpinner.java create mode 100644 src/libs/oboe/samples/audio-device/src/main/res/layout/audio_devices.xml create mode 100644 src/libs/oboe/samples/audio-device/src/main/res/values/dimens.xml create mode 100644 src/libs/oboe/samples/audio-device/src/main/res/values/strings.xml create mode 100644 src/libs/oboe/samples/build.gradle create mode 100644 src/libs/oboe/samples/debug-utils/logging_macros.h create mode 100644 src/libs/oboe/samples/debug-utils/trace.cpp create mode 100644 src/libs/oboe/samples/debug-utils/trace.h create mode 100644 src/libs/oboe/samples/drumthumper/README.md create mode 100644 src/libs/oboe/samples/drumthumper/build.gradle create mode 100644 src/libs/oboe/samples/drumthumper/playstore/DrumSetFeatureImage.png create mode 100644 src/libs/oboe/samples/drumthumper/playstore/ScreenShotPhone.png create mode 100644 src/libs/oboe/samples/drumthumper/playstore/ScreenShotWithMix.png create mode 100644 src/libs/oboe/samples/drumthumper/playstore/drumset.jpg create mode 100644 src/libs/oboe/samples/drumthumper/src/main/AndroidManifest.xml create mode 100644 src/libs/oboe/samples/drumthumper/src/main/assets/CrashCymbal.wav create mode 100644 src/libs/oboe/samples/drumthumper/src/main/assets/HiHat_Closed.wav create mode 100644 src/libs/oboe/samples/drumthumper/src/main/assets/HiHat_Open.wav create mode 100644 src/libs/oboe/samples/drumthumper/src/main/assets/KickDrum.wav create mode 100644 src/libs/oboe/samples/drumthumper/src/main/assets/LowTom.wav create mode 100644 src/libs/oboe/samples/drumthumper/src/main/assets/MidTom.wav create mode 100644 src/libs/oboe/samples/drumthumper/src/main/assets/RideCymbal.wav create mode 100644 src/libs/oboe/samples/drumthumper/src/main/assets/SnareDrum.wav create mode 100644 src/libs/oboe/samples/drumthumper/src/main/cpp/CMakeLists.txt create mode 100644 src/libs/oboe/samples/drumthumper/src/main/cpp/DrumPlayerJNI.cpp create mode 100644 src/libs/oboe/samples/drumthumper/src/main/java/com/plausibleaudio/drumthumper/DrumPlayer.kt create mode 100644 src/libs/oboe/samples/drumthumper/src/main/java/com/plausibleaudio/drumthumper/DrumThumperActivity.kt create mode 100644 src/libs/oboe/samples/drumthumper/src/main/java/com/plausibleaudio/drumthumper/TriggerPad.kt create mode 100644 src/libs/oboe/samples/drumthumper/src/main/res/drawable-v24/_ic_launcher_foreground.xml create mode 100644 src/libs/oboe/samples/drumthumper/src/main/res/drawable/_ic_launcher_background.xml create mode 100644 src/libs/oboe/samples/drumthumper/src/main/res/layout-land/drumthumper_activity.xml create mode 100644 src/libs/oboe/samples/drumthumper/src/main/res/layout/drumthumper_activity.xml create mode 100644 src/libs/oboe/samples/drumthumper/src/main/res/mipmap-anydpi-v26/_ic_launcher.xml create mode 100644 src/libs/oboe/samples/drumthumper/src/main/res/mipmap-anydpi-v26/_ic_launcher_round.xml create mode 100644 src/libs/oboe/samples/drumthumper/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 src/libs/oboe/samples/drumthumper/src/main/res/mipmap-hdpi/ic_launcher_round.png create mode 100644 src/libs/oboe/samples/drumthumper/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 src/libs/oboe/samples/drumthumper/src/main/res/mipmap-mdpi/ic_launcher_round.png create mode 100644 src/libs/oboe/samples/drumthumper/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 src/libs/oboe/samples/drumthumper/src/main/res/mipmap-xhdpi/ic_launcher_round.png create mode 100644 src/libs/oboe/samples/drumthumper/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 src/libs/oboe/samples/drumthumper/src/main/res/mipmap-xxhdpi/ic_launcher_round.png create mode 100644 src/libs/oboe/samples/drumthumper/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 src/libs/oboe/samples/drumthumper/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png create mode 100644 src/libs/oboe/samples/drumthumper/src/main/res/values/colors.xml create mode 100644 src/libs/oboe/samples/drumthumper/src/main/res/values/strings.xml create mode 100644 src/libs/oboe/samples/drumthumper/src/main/res/values/styles.xml create mode 100644 src/libs/oboe/samples/gradle.properties create mode 100644 src/libs/oboe/samples/gradle/wrapper/gradle-wrapper.jar create mode 100644 src/libs/oboe/samples/gradle/wrapper/gradle-wrapper.properties create mode 100755 src/libs/oboe/samples/gradlew create mode 100644 src/libs/oboe/samples/gradlew.bat create mode 100644 src/libs/oboe/samples/hello-oboe/README.md create mode 100644 src/libs/oboe/samples/hello-oboe/build.gradle create mode 100644 src/libs/oboe/samples/hello-oboe/hello-oboe-screenshot.png create mode 100644 src/libs/oboe/samples/hello-oboe/proguard-rules.pro create mode 100644 src/libs/oboe/samples/hello-oboe/src/main/AndroidManifest.xml create mode 100644 src/libs/oboe/samples/hello-oboe/src/main/cpp/CMakeLists.txt create mode 100644 src/libs/oboe/samples/hello-oboe/src/main/cpp/HelloOboeEngine.cpp create mode 100644 src/libs/oboe/samples/hello-oboe/src/main/cpp/HelloOboeEngine.h create mode 100644 src/libs/oboe/samples/hello-oboe/src/main/cpp/LatencyTuningCallback.cpp create mode 100644 src/libs/oboe/samples/hello-oboe/src/main/cpp/LatencyTuningCallback.h create mode 100644 src/libs/oboe/samples/hello-oboe/src/main/cpp/SoundGenerator.cpp create mode 100644 src/libs/oboe/samples/hello-oboe/src/main/cpp/SoundGenerator.h create mode 100644 src/libs/oboe/samples/hello-oboe/src/main/cpp/jni_bridge.cpp create mode 100644 src/libs/oboe/samples/hello-oboe/src/main/java/com/google/oboe/samples/hellooboe/MainActivity.java create mode 100644 src/libs/oboe/samples/hello-oboe/src/main/java/com/google/oboe/samples/hellooboe/PlaybackEngine.java create mode 100644 src/libs/oboe/samples/hello-oboe/src/main/res/layout/activity_main.xml create mode 100644 src/libs/oboe/samples/hello-oboe/src/main/res/layout/audio_apis_spinner.xml create mode 100644 src/libs/oboe/samples/hello-oboe/src/main/res/layout/buffer_sizes_spinner.xml create mode 100644 src/libs/oboe/samples/hello-oboe/src/main/res/layout/channel_counts_spinner.xml create mode 100644 src/libs/oboe/samples/hello-oboe/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 src/libs/oboe/samples/hello-oboe/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 src/libs/oboe/samples/hello-oboe/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 src/libs/oboe/samples/hello-oboe/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 src/libs/oboe/samples/hello-oboe/src/main/res/values-v21/styles.xml create mode 100644 src/libs/oboe/samples/hello-oboe/src/main/res/values-w820dp/dimens.xml create mode 100644 src/libs/oboe/samples/hello-oboe/src/main/res/values/dimens.xml create mode 100644 src/libs/oboe/samples/hello-oboe/src/main/res/values/strings.xml create mode 100644 src/libs/oboe/samples/hello-oboe/src/main/res/values/styles.xml create mode 100644 src/libs/oboe/samples/iolib/.gitignore create mode 100644 src/libs/oboe/samples/iolib/README.md create mode 100644 src/libs/oboe/samples/iolib/build.gradle create mode 100644 src/libs/oboe/samples/iolib/src/main/AndroidManifest.xml create mode 100644 src/libs/oboe/samples/iolib/src/main/cpp/CMakeLists.txt create mode 100644 src/libs/oboe/samples/iolib/src/main/cpp/player/DataSource.h create mode 100644 src/libs/oboe/samples/iolib/src/main/cpp/player/OneShotSampleSource.cpp create mode 100644 src/libs/oboe/samples/iolib/src/main/cpp/player/OneShotSampleSource.h create mode 100644 src/libs/oboe/samples/iolib/src/main/cpp/player/SampleBuffer.cpp create mode 100644 src/libs/oboe/samples/iolib/src/main/cpp/player/SampleBuffer.h create mode 100644 src/libs/oboe/samples/iolib/src/main/cpp/player/SampleSource.cpp create mode 100644 src/libs/oboe/samples/iolib/src/main/cpp/player/SampleSource.h create mode 100644 src/libs/oboe/samples/iolib/src/main/cpp/player/SimpleMultiPlayer.cpp create mode 100644 src/libs/oboe/samples/iolib/src/main/cpp/player/SimpleMultiPlayer.h create mode 100644 src/libs/oboe/samples/iolib/src/main/res/values/strings.xml create mode 100644 src/libs/oboe/samples/parselib/README.md create mode 100644 src/libs/oboe/samples/parselib/build.gradle create mode 100644 src/libs/oboe/samples/parselib/src/main/AndroidManifest.xml create mode 100644 src/libs/oboe/samples/parselib/src/main/cpp/CMakeLists.txt create mode 100644 src/libs/oboe/samples/parselib/src/main/cpp/stream/FileInputStream.cpp create mode 100644 src/libs/oboe/samples/parselib/src/main/cpp/stream/FileInputStream.h create mode 100644 src/libs/oboe/samples/parselib/src/main/cpp/stream/InputStream.cpp create mode 100644 src/libs/oboe/samples/parselib/src/main/cpp/stream/InputStream.h create mode 100644 src/libs/oboe/samples/parselib/src/main/cpp/stream/MemInputStream.cpp create mode 100644 src/libs/oboe/samples/parselib/src/main/cpp/stream/MemInputStream.h create mode 100644 src/libs/oboe/samples/parselib/src/main/cpp/wav/AudioEncoding.cpp create mode 100644 src/libs/oboe/samples/parselib/src/main/cpp/wav/AudioEncoding.h create mode 100644 src/libs/oboe/samples/parselib/src/main/cpp/wav/WavChunkHeader.cpp create mode 100644 src/libs/oboe/samples/parselib/src/main/cpp/wav/WavChunkHeader.h create mode 100644 src/libs/oboe/samples/parselib/src/main/cpp/wav/WavFmtChunkHeader.cpp create mode 100644 src/libs/oboe/samples/parselib/src/main/cpp/wav/WavFmtChunkHeader.h create mode 100644 src/libs/oboe/samples/parselib/src/main/cpp/wav/WavRIFFChunkHeader.cpp create mode 100644 src/libs/oboe/samples/parselib/src/main/cpp/wav/WavRIFFChunkHeader.h create mode 100644 src/libs/oboe/samples/parselib/src/main/cpp/wav/WavStreamReader.cpp create mode 100644 src/libs/oboe/samples/parselib/src/main/cpp/wav/WavStreamReader.h create mode 100644 src/libs/oboe/samples/parselib/src/main/cpp/wav/WavTypes.h create mode 100644 src/libs/oboe/samples/parselib/src/main/res/values/strings.xml create mode 100644 src/libs/oboe/samples/settings.gradle create mode 100644 src/libs/oboe/samples/shared/DefaultDataCallback.h create mode 100644 src/libs/oboe/samples/shared/DefaultErrorCallback.h create mode 100644 src/libs/oboe/samples/shared/IRenderableAudio.h create mode 100644 src/libs/oboe/samples/shared/IRestartable.h create mode 100644 src/libs/oboe/samples/shared/ITappable.h create mode 100644 src/libs/oboe/samples/shared/Mixer.h create mode 100644 src/libs/oboe/samples/shared/MonoToStereo.h create mode 100644 src/libs/oboe/samples/shared/Oscillator.h create mode 100644 src/libs/oboe/samples/shared/TappableAudioSource.h create mode 100644 src/libs/oboe/src/aaudio/AAudioExtensions.h create mode 100644 src/libs/oboe/src/aaudio/AAudioLoader.cpp create mode 100644 src/libs/oboe/src/aaudio/AAudioLoader.h create mode 100644 src/libs/oboe/src/aaudio/AudioStreamAAudio.cpp create mode 100644 src/libs/oboe/src/aaudio/AudioStreamAAudio.h create mode 100644 src/libs/oboe/src/common/AudioClock.h create mode 100644 src/libs/oboe/src/common/AudioSourceCaller.cpp create mode 100644 src/libs/oboe/src/common/AudioSourceCaller.h create mode 100644 src/libs/oboe/src/common/AudioStream.cpp create mode 100644 src/libs/oboe/src/common/AudioStreamBuilder.cpp create mode 100644 src/libs/oboe/src/common/DataConversionFlowGraph.cpp create mode 100644 src/libs/oboe/src/common/DataConversionFlowGraph.h create mode 100644 src/libs/oboe/src/common/FilterAudioStream.cpp create mode 100644 src/libs/oboe/src/common/FilterAudioStream.h create mode 100644 src/libs/oboe/src/common/FixedBlockAdapter.cpp create mode 100644 src/libs/oboe/src/common/FixedBlockAdapter.h create mode 100644 src/libs/oboe/src/common/FixedBlockReader.cpp create mode 100644 src/libs/oboe/src/common/FixedBlockReader.h create mode 100644 src/libs/oboe/src/common/FixedBlockWriter.cpp create mode 100644 src/libs/oboe/src/common/FixedBlockWriter.h create mode 100644 src/libs/oboe/src/common/LatencyTuner.cpp create mode 100644 src/libs/oboe/src/common/MonotonicCounter.h create mode 100644 src/libs/oboe/src/common/OboeDebug.h create mode 100644 src/libs/oboe/src/common/QuirksManager.cpp create mode 100644 src/libs/oboe/src/common/QuirksManager.h create mode 100644 src/libs/oboe/src/common/README.md create mode 100644 src/libs/oboe/src/common/SourceFloatCaller.cpp create mode 100644 src/libs/oboe/src/common/SourceFloatCaller.h create mode 100644 src/libs/oboe/src/common/SourceI16Caller.cpp create mode 100644 src/libs/oboe/src/common/SourceI16Caller.h create mode 100644 src/libs/oboe/src/common/SourceI24Caller.cpp create mode 100644 src/libs/oboe/src/common/SourceI24Caller.h create mode 100644 src/libs/oboe/src/common/SourceI32Caller.cpp create mode 100644 src/libs/oboe/src/common/SourceI32Caller.h create mode 100644 src/libs/oboe/src/common/StabilizedCallback.cpp create mode 100644 src/libs/oboe/src/common/Trace.cpp create mode 100644 src/libs/oboe/src/common/Trace.h create mode 100644 src/libs/oboe/src/common/Utilities.cpp create mode 100644 src/libs/oboe/src/common/Version.cpp create mode 100644 src/libs/oboe/src/fifo/FifoBuffer.cpp create mode 100644 src/libs/oboe/src/fifo/FifoBuffer.h create mode 100644 src/libs/oboe/src/fifo/FifoController.cpp create mode 100644 src/libs/oboe/src/fifo/FifoController.h create mode 100644 src/libs/oboe/src/fifo/FifoControllerBase.cpp create mode 100644 src/libs/oboe/src/fifo/FifoControllerBase.h create mode 100644 src/libs/oboe/src/fifo/FifoControllerIndirect.cpp create mode 100644 src/libs/oboe/src/fifo/FifoControllerIndirect.h create mode 100644 src/libs/oboe/src/flowgraph/ChannelCountConverter.cpp create mode 100644 src/libs/oboe/src/flowgraph/ChannelCountConverter.h create mode 100644 src/libs/oboe/src/flowgraph/ClipToRange.cpp create mode 100644 src/libs/oboe/src/flowgraph/ClipToRange.h create mode 100644 src/libs/oboe/src/flowgraph/FlowGraphNode.cpp create mode 100644 src/libs/oboe/src/flowgraph/FlowGraphNode.h create mode 100644 src/libs/oboe/src/flowgraph/FlowgraphUtilities.h create mode 100644 src/libs/oboe/src/flowgraph/ManyToMultiConverter.cpp create mode 100644 src/libs/oboe/src/flowgraph/ManyToMultiConverter.h create mode 100644 src/libs/oboe/src/flowgraph/MonoToMultiConverter.cpp create mode 100644 src/libs/oboe/src/flowgraph/MonoToMultiConverter.h create mode 100644 src/libs/oboe/src/flowgraph/MultiToMonoConverter.cpp create mode 100644 src/libs/oboe/src/flowgraph/MultiToMonoConverter.h create mode 100644 src/libs/oboe/src/flowgraph/RampLinear.cpp create mode 100644 src/libs/oboe/src/flowgraph/RampLinear.h create mode 100644 src/libs/oboe/src/flowgraph/SampleRateConverter.cpp create mode 100644 src/libs/oboe/src/flowgraph/SampleRateConverter.h create mode 100644 src/libs/oboe/src/flowgraph/SinkFloat.cpp create mode 100644 src/libs/oboe/src/flowgraph/SinkFloat.h create mode 100644 src/libs/oboe/src/flowgraph/SinkI16.cpp create mode 100644 src/libs/oboe/src/flowgraph/SinkI16.h create mode 100644 src/libs/oboe/src/flowgraph/SinkI24.cpp create mode 100644 src/libs/oboe/src/flowgraph/SinkI24.h create mode 100644 src/libs/oboe/src/flowgraph/SinkI32.cpp create mode 100644 src/libs/oboe/src/flowgraph/SinkI32.h create mode 100644 src/libs/oboe/src/flowgraph/SourceFloat.cpp create mode 100644 src/libs/oboe/src/flowgraph/SourceFloat.h create mode 100644 src/libs/oboe/src/flowgraph/SourceI16.cpp create mode 100644 src/libs/oboe/src/flowgraph/SourceI16.h create mode 100644 src/libs/oboe/src/flowgraph/SourceI24.cpp create mode 100644 src/libs/oboe/src/flowgraph/SourceI24.h create mode 100644 src/libs/oboe/src/flowgraph/SourceI32.cpp create mode 100644 src/libs/oboe/src/flowgraph/SourceI32.h create mode 100644 src/libs/oboe/src/flowgraph/resampler/HyperbolicCosineWindow.h create mode 100644 src/libs/oboe/src/flowgraph/resampler/IntegerRatio.cpp create mode 100644 src/libs/oboe/src/flowgraph/resampler/IntegerRatio.h create mode 100644 src/libs/oboe/src/flowgraph/resampler/KaiserWindow.h create mode 100644 src/libs/oboe/src/flowgraph/resampler/LinearResampler.cpp create mode 100644 src/libs/oboe/src/flowgraph/resampler/LinearResampler.h create mode 100644 src/libs/oboe/src/flowgraph/resampler/MultiChannelResampler.cpp create mode 100644 src/libs/oboe/src/flowgraph/resampler/MultiChannelResampler.h create mode 100644 src/libs/oboe/src/flowgraph/resampler/PolyphaseResampler.cpp create mode 100644 src/libs/oboe/src/flowgraph/resampler/PolyphaseResampler.h create mode 100644 src/libs/oboe/src/flowgraph/resampler/PolyphaseResamplerMono.cpp create mode 100644 src/libs/oboe/src/flowgraph/resampler/PolyphaseResamplerMono.h create mode 100644 src/libs/oboe/src/flowgraph/resampler/PolyphaseResamplerStereo.cpp create mode 100644 src/libs/oboe/src/flowgraph/resampler/PolyphaseResamplerStereo.h create mode 100644 src/libs/oboe/src/flowgraph/resampler/README.md create mode 100644 src/libs/oboe/src/flowgraph/resampler/SincResampler.cpp create mode 100644 src/libs/oboe/src/flowgraph/resampler/SincResampler.h create mode 100644 src/libs/oboe/src/flowgraph/resampler/SincResamplerStereo.cpp create mode 100644 src/libs/oboe/src/flowgraph/resampler/SincResamplerStereo.h create mode 100644 src/libs/oboe/src/opensles/AudioInputStreamOpenSLES.cpp create mode 100644 src/libs/oboe/src/opensles/AudioInputStreamOpenSLES.h create mode 100644 src/libs/oboe/src/opensles/AudioOutputStreamOpenSLES.cpp create mode 100644 src/libs/oboe/src/opensles/AudioOutputStreamOpenSLES.h create mode 100644 src/libs/oboe/src/opensles/AudioStreamBuffered.cpp create mode 100644 src/libs/oboe/src/opensles/AudioStreamBuffered.h create mode 100644 src/libs/oboe/src/opensles/AudioStreamOpenSLES.cpp create mode 100644 src/libs/oboe/src/opensles/AudioStreamOpenSLES.h create mode 100644 src/libs/oboe/src/opensles/EngineOpenSLES.cpp create mode 100644 src/libs/oboe/src/opensles/EngineOpenSLES.h create mode 100644 src/libs/oboe/src/opensles/OpenSLESUtilities.cpp create mode 100644 src/libs/oboe/src/opensles/OpenSLESUtilities.h create mode 100644 src/libs/oboe/src/opensles/OutputMixerOpenSLES.cpp create mode 100644 src/libs/oboe/src/opensles/OutputMixerOpenSLES.h create mode 100644 src/libs/oboe/tests/CMakeLists.txt create mode 100644 src/libs/oboe/tests/README create mode 100644 src/libs/oboe/tests/README.md create mode 100644 src/libs/oboe/tests/UnitTestRunner/.gitignore create mode 100644 src/libs/oboe/tests/UnitTestRunner/app/.gitignore create mode 100644 src/libs/oboe/tests/UnitTestRunner/app/build.gradle create mode 100644 src/libs/oboe/tests/UnitTestRunner/app/proguard-rules.pro create mode 100644 src/libs/oboe/tests/UnitTestRunner/app/src/main/AndroidManifest.xml create mode 100644 src/libs/oboe/tests/UnitTestRunner/app/src/main/java/com/google/oboe/tests/unittestrunner/MainActivity.java create mode 100644 src/libs/oboe/tests/UnitTestRunner/app/src/main/res/drawable-v24/ic_launcher_foreground.xml create mode 100644 src/libs/oboe/tests/UnitTestRunner/app/src/main/res/drawable/ic_launcher_background.xml create mode 100644 src/libs/oboe/tests/UnitTestRunner/app/src/main/res/layout/activity_main.xml create mode 100644 src/libs/oboe/tests/UnitTestRunner/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml create mode 100644 src/libs/oboe/tests/UnitTestRunner/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml create mode 100644 src/libs/oboe/tests/UnitTestRunner/app/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 src/libs/oboe/tests/UnitTestRunner/app/src/main/res/mipmap-hdpi/ic_launcher_round.png create mode 100644 src/libs/oboe/tests/UnitTestRunner/app/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 src/libs/oboe/tests/UnitTestRunner/app/src/main/res/mipmap-mdpi/ic_launcher_round.png create mode 100644 src/libs/oboe/tests/UnitTestRunner/app/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 src/libs/oboe/tests/UnitTestRunner/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png create mode 100644 src/libs/oboe/tests/UnitTestRunner/app/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 src/libs/oboe/tests/UnitTestRunner/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png create mode 100644 src/libs/oboe/tests/UnitTestRunner/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 src/libs/oboe/tests/UnitTestRunner/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png create mode 100644 src/libs/oboe/tests/UnitTestRunner/app/src/main/res/values/colors.xml create mode 100644 src/libs/oboe/tests/UnitTestRunner/app/src/main/res/values/strings.xml create mode 100644 src/libs/oboe/tests/UnitTestRunner/app/src/main/res/values/styles.xml create mode 100644 src/libs/oboe/tests/UnitTestRunner/build.gradle create mode 100644 src/libs/oboe/tests/UnitTestRunner/gradle.properties create mode 100644 src/libs/oboe/tests/UnitTestRunner/gradle/wrapper/gradle-wrapper.jar create mode 100644 src/libs/oboe/tests/UnitTestRunner/gradle/wrapper/gradle-wrapper.properties create mode 100755 src/libs/oboe/tests/UnitTestRunner/gradlew create mode 100644 src/libs/oboe/tests/UnitTestRunner/gradlew.bat create mode 100644 src/libs/oboe/tests/UnitTestRunner/settings.gradle create mode 100755 src/libs/oboe/tests/run_tests.sh create mode 100644 src/libs/oboe/tests/testAAudio.cpp create mode 100644 src/libs/oboe/tests/testFlowgraph.cpp create mode 100644 src/libs/oboe/tests/testReturnStop.cpp create mode 100644 src/libs/oboe/tests/testStreamClosedMethods.cpp create mode 100644 src/libs/oboe/tests/testStreamFramesProcessed.cpp create mode 100644 src/libs/oboe/tests/testStreamOpen.cpp create mode 100644 src/libs/oboe/tests/testStreamStates.cpp create mode 100644 src/libs/oboe/tests/testStreamWaitState.cpp create mode 100644 src/libs/oboe/tests/testUtilities.cpp create mode 100644 src/libs/oboe/tests/testXRunBehaviour.cpp diff --git a/src/libs/oboe/.gitignore b/src/libs/oboe/.gitignore new file mode 100644 index 00000000..76e7cb3c --- /dev/null +++ b/src/libs/oboe/.gitignore @@ -0,0 +1,8 @@ +*/.DS_Store +.DS_Store +.externalNativeBuild/ +.cxx/ +.idea +build +.logpile + diff --git a/src/libs/oboe/AUTHORS b/src/libs/oboe/AUTHORS new file mode 100644 index 00000000..6ca313d2 --- /dev/null +++ b/src/libs/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/src/libs/oboe/CMakeLists.txt b/src/libs/oboe/CMakeLists.txt new file mode 100644 index 00000000..211e6b78 --- /dev/null +++ b/src/libs/oboe/CMakeLists.txt @@ -0,0 +1,98 @@ +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/SourceI24Caller.cpp + src/common/SourceI32Caller.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/ChannelCountConverter.cpp + src/flowgraph/ClipToRange.cpp + src/flowgraph/ManyToMultiConverter.cpp + src/flowgraph/MonoToMultiConverter.cpp + src/flowgraph/MultiToMonoConverter.cpp + src/flowgraph/RampLinear.cpp + src/flowgraph/SampleRateConverter.cpp + src/flowgraph/SinkFloat.cpp + src/flowgraph/SinkI16.cpp + src/flowgraph/SinkI24.cpp + src/flowgraph/SinkI32.cpp + src/flowgraph/SourceFloat.cpp + src/flowgraph/SourceI16.cpp + src/flowgraph/SourceI24.cpp + src/flowgraph/SourceI32.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++17 + -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/src/libs/oboe/CONTRIBUTING b/src/libs/oboe/CONTRIBUTING new file mode 100644 index 00000000..5d9ff17d --- /dev/null +++ b/src/libs/oboe/CONTRIBUTING @@ -0,0 +1 @@ +Please see the CONTRIBUTING.md file for more information. diff --git a/src/libs/oboe/CONTRIBUTING.md b/src/libs/oboe/CONTRIBUTING.md new file mode 100644 index 00000000..88f06d06 --- /dev/null +++ b/src/libs/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/src/libs/oboe/CONTRIBUTORS b/src/libs/oboe/CONTRIBUTORS new file mode 100644 index 00000000..0b77924b --- /dev/null +++ b/src/libs/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/src/libs/oboe/Doxyfile b/src/libs/oboe/Doxyfile new file mode 100644 index 00000000..f0e0be32 --- /dev/null +++ b/src/libs/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.5 + +# 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 +# , /