aboutsummaryrefslogtreecommitdiffstats
path: root/src/java
Commit message (Expand)AuthorAgeFilesLines
* JoalVersion: Avoid using Map.of(..), i.e. streaming API to be compatible w/ J...Sven Göthel2024-01-051-10/+14
* feat(alext): Add ALC_SOFT_system_events inside JoalVersion.getALStrings if su...Mathieu Féry2023-12-052-0/+27
* feat(alc): Fix typo of following methods in ALC api :Mathieu Féry2023-12-052-6/+6
* feat(alc): Add missing @Override annotation in ALCImplMathieu Féry2023-12-051-0/+4
* Bump OpenAL-Soft to git 571b546f35eead77ce109f8d4dd6c3de3199d573 2023-11-25, ...Sven Gothel2023-12-023-0/+24
* Bug 1481: ALAudioSink: Adopt to GlueGen's PascalString ChangeSven Gothel2023-12-021-3/+3
* Merge remote-tracking branch 'Mathieu_Fery/1477-remove-eax-headers'Sven Gothel2023-11-283-545/+0
|\
| * drop(eax): Remove support of legacy EAX extensionMathieu Féry2023-11-223-545/+0
* | sound3d.Context: Add tryMakeCurrent(..) variantSven Gothel2023-11-281-28/+44
* | Bug 1475: Minor revision of orig patch-setSven Gothel2023-11-282-14/+20
* | Merge remote-tracking branch 'Mathieu_Fery/1475-devices-specifiers'Sven Gothel2023-11-283-43/+131
|\ \
| * | feat(devices): Move ALC_EXT constant from ALCconstants into ALHelpers with ot...Mathieu Féry2023-11-143-10/+16
| * | feat(version): Invoking JoalVersion no longer destroys the current contextMathieu Féry2023-11-131-9/+33
| * | feat(devices): Allow to retrieve devices specifiers with ALC_ENUMERATE_ALL_EXTMathieu Féry2023-11-102-34/+92
| |/
* / Bug 1479 - NativeLibrary: Add getNativeLibraryPath() returning actual native ...Sven Gothel2023-11-261-0/+3
|/
* ALAudioSink: Use clipAudioVolume(..) function for claritySven Gothel2023-10-161-5/+9
* Bug 1472: Enhance AV Sync: Pass through PTS object in ALAudioSink, tracking l...Sven Gothel2023-10-152-24/+19
* ALAudioSink: getPTS() returns time-adjusted last dequeued PTS, new updateQueu...Sven Gothel2023-10-062-186/+216
* Bug 1472: AVSync: Add more comprehensive DEBUG info to detect sync issuesSven Gothel2023-10-042-71/+139
* Bug 1473 - ALAudioSink: AV Synchronization Broken, Regression in-between JogA...Sven Gothel2023-10-042-161/+127
* SimpleSineSynth: Reuse WorkerThread, drop handcrafted code ..Sven Gothel2023-10-031-113/+30
* ALAudioSink: Allow disabling using AL_SOFT_events via setUseSOFTEvents(boolean)Sven Gothel2023-10-031-4/+12
* SimpleSineSynth: Ensure stop() destroys ALAudioSink even if streamWorker is n...Sven Gothel2023-10-031-0/+2
* ALAudioSink.dequeueBuffer(..): AL_SOFT_events cumulated released buffers is '...v2.5.0Sven Gothel2023-08-011-5/+20
* AudioSystem3D.checkAL*Error(): Close single quote in error messageSven Gothel2023-08-011-2/+2
* AL_SOFT_events: Define 'ALCcontext` as `UserParam` type for more claritySven Gothel2023-07-102-9/+6
* ALAudioSink.destroy(): Shutdown alEventCallbackSOFT properly (only if hasAL_S...Sven Gothel2023-07-091-7/+9
* ALContextKey.equals(): Use cached nativeAddress of other item as well.Sven Gothel2023-07-091-2/+1
* ALAudioSink: Utilize AL_SOFT_events if available, i.e. use callback for relea...Sven Gothel2023-07-091-42/+97
* Add OpenAL extension AL_SOFT_events using userParam ALCcontext as key for Glu...Sven Gothel2023-07-092-0/+91
* Sound3d.Context: destroy() shall only 'null' thread-local context if this is ...Sven Gothel2023-07-091-4/+4
* ALExtImpl: Remove unused importsSven Gothel2023-07-091-7/+0
* Promote SimpleSineSynth to API (util) from Synth02AL, allowing user to have a...Sven Gothel2023-05-231-0/+433
* ALAudioSink: Use and expose Sound3D object, allow user app to deal w/ JOAL/Op...Sven Gothel2023-05-231-453/+321
* Sound3D: Further OO wrapper to be used in ALAudioSink: Context locking, ALCco...Sven Gothel2023-05-236-91/+450
* ALException: Suppress serial warningSven Gothel2023-05-231-0/+1
* ALAudioSink: Use float in seconds for duration (AudioFormat and 'avgFrameDura...Sven Gothel2023-05-211-81/+101
* ALAudioSink: Enhance description re 'AudioFrame' and 'frameDuration'; Drop un...Sven Gothel2023-05-211-5/+10
* Fix ALAudioSink.dequeueBuffer(): AL_BUFFERS_PROCESSED result is total not acc...Sven Gothel2023-05-201-5/+14
* ALHelpers.getALFormat(..): Drop alGetEnumValue("type") and use 'type' via ALE...Sven Gothel2023-05-201-17/+18
* ALAudioSink.toString(): Allow null==chosenFormat (pre init string representat...Sven Gothel2023-05-201-1/+1
* ALAudioSink: Add getSourceCount() and cleanup error handling and initImpl() l...Sven Gothel2023-05-201-237/+248
* JoalVersion: Cleanup dead branchesSven Gothel2023-05-201-8/+5
* ALAudioSink: Query latency and re-create context @ init w/ latency (refresh-r...Sven Gothel2023-05-191-137/+245
* JoalVersion: List all devices, output devices w/ latency and source count (mo...Sven Gothel2023-05-191-1/+113
* ALAudioSink.lockContext(): Only check error state if AL makeContextCurrent()/...Sven Gothel2023-05-181-14/+29
* Sound3D/Context: Use same base ctor to initialize `hasALC_thread_local_contex...Sven Gothel2023-05-181-2/+1
* Sound3D: Make all OO wrapper fully transparent and stand-alone, allow mix-and...Sven Gothel2023-05-187-150/+319
* ALAudioSink: Don'e check errors before context; Track method of context-locki...Sven Gothel2023-05-181-4/+11
* ALAudioSink: Promote to public, be fully functional regarding AudioFormat and...Sven Gothel2023-05-182-102/+387