Skip to content
Builds

Loading builds...

The Jenkins Controller is preparing for shutdown. No new builds can be started.

Changes

#683 (Aug 12, 2023, 4:35:35 PM)

  1. Adopt to GlueGen commit 952e0c1f83c9e0583a97d39988a6ba1428911c8c — Sven Gothel / cgit
  2. Fix file mods in make/config — Sven Gothel / cgit
  3. Use GlueGen's SecurityUtil.doPrivileged(..) instead of AccessController, remove dead code — Sven Gothel / cgit
  4. ALExtImpl: Remove unused imports — Sven Gothel / cgit
  5. Sound3d.Context: destroy() shall only 'null' thread-local context if this is current; Expose hasALC_thread_local_context to avoid double checks — Sven Gothel / cgit
  6. Add OpenAL extension AL_SOFT_events using userParam ALCcontext as key for GlueGen JavaCallback — Sven Gothel / cgit
  7. ALAudioSink: Utilize AL_SOFT_events if available, i.e. use callback for released buffer count instead of polling — Sven Gothel / cgit
  8. GlueGen cfg files: Remove now unused import java.security.AccessController — Sven Gothel / cgit
  9. ALContextKey.equals(): Use cached nativeAddress of other item as well. — Sven Gothel / cgit
  10. ALAudioSink.destroy(): Shutdown alEventCallbackSOFT properly (only if hasAL_SOFT_events, 1st disable all events); growBuffers(): No pre-condition exception for hasAL_SOFT_events — Sven Gothel / cgit
  11. AL_SOFT_events: Define 'ALCcontext` as `UserParam` type for more clarity — Sven Gothel / cgit
  12. AudioSystem3D.checkAL*Error(): Close single quote in error message — Sven Gothel / cgit
  13. ALAudioSink.dequeueBuffer(..): AL_SOFT_events cumulated released buffers is 'sometimes wrong'. Workaround: Query released buffers after receiving event and use minimum. — Sven Gothel / cgit

#681 (May 23, 2023, 2:36:42 AM)

  1. ALAudioSink: Enhance description re 'AudioFrame' and 'frameDuration'; Drop unused field 'avgFrameDuration'. — Sven Gothel / cgit
  2. ALAudioSink: Use float in seconds for duration (AudioFormat and 'avgFrameDuration') to avoid losing precision when dealing with stats, averages etc — Sven Gothel / cgit
  3. ALException: Suppress serial warning — Sven Gothel / cgit
  4. Sound3D: Further OO wrapper to be used in ALAudioSink: Context locking, ALCcontext recreation, .. — Sven Gothel / cgit
  5. ALAudioSink: Use and expose Sound3D object, allow user app to deal w/ JOAL/OpenAL easier and reuse Context context locking — Sven Gothel / cgit
  6. Promote SimpleSineSynth to API (util) from Synth02AL, allowing user to have a simple sound source to test — Sven Gothel / cgit

#680 (May 20, 2023, 9:17:23 PM)

  1. ALHelpers.getALFormat(..): Drop alGetEnumValue("type") and use 'type' via ALExtConstants directly: Fixes failing al.alGetEnumValue("AL_FORMAT_STEREO_DOUBLE") — Sven Gothel / cgit
  2. Fix ALAudioSink.dequeueBuffer(): AL_BUFFERS_PROCESSED result is total not accumulative while waiting (not yet dequeueing), ... — Sven Gothel / cgit

#678 (May 20, 2023, 8:11:31 AM)

  1. Promote ALAudioSink from JOGL to JOAL (Common av classes reside in GlueGen, see gluegen commit 270172bcbd91f96d4a38a3d73e23d744f57a25b8) — Sven Gothel / cgit
  2. JoalVersion: Accept null ALC instance — Sven Gothel / cgit
  3. OpenALTest: Drop nonsense LOOPING test on buffer (only applies to a source) — Sven Gothel / cgit
  4. Manual Demos: Add two simple sine wave synthesizer, Synth02AL may be enhanced to a general synth solution — Sven Gothel / cgit
  5. ALAudioSink: Add exclusive locking allowing less context management overhead — Sven Gothel / cgit
  6. ALAudioSink.dequeueBuffer(): wait == true: Fix sleep cycle and use sleep(1) if slept long enough but giving better threading perf for openal-soft — Sven Gothel / cgit
  7. ALAudioSink.toString(): Show hasALC_thread_local_context value ('tlc') — Sven Gothel / cgit
  8. make/scripts/tests.sh: Adjust D_ARGS and add X_ARGS for optional FlightRecorder — Sven Gothel / cgit
  9. ALAudioSink: Enhance using AL_EXT_MCFORMATS (max channels == 8), AL_EXT_FLOAT32, AL_EXT_DOUBLE — Sven Gothel / cgit
  10. README/index.html: Update Web resources & URLs, add details about audio-backens per platform and contained openal-soft library — Sven Gothel / cgit
  11. Synth02AL: Fix API doc re reduces latency — Sven Gothel / cgit
  12. ALAudioSink: Promote to public, be fully functional regarding AudioFormat and OpenAL paremeter. Can be 'plugged' into existing OpenAL logic. — Sven Gothel / cgit
  13. Doc, scripsts/tests.sh: Mentione OpenAL-Soft environment variables — Sven Gothel / cgit
  14. ALAudioSink: Don'e check errors before context; Track method of context-locking and release same way; Destroy shall also release context. — Sven Gothel / cgit
  15. Sound3D: Make all OO wrapper fully transparent and stand-alone, allow mix-and-match; Align Context makeCurrent/release w/ ALAudioSink ... — Sven Gothel / cgit
  16. Sound3D/Context: Use same base ctor to initialize `hasALC_thread_local_context`, benefitting from thread-local-context — Sven Gothel / cgit
  17. ALAudioSink.lockContext(): Only check error state if AL makeContextCurrent()/alcSetThreadContext() fails (returns false) — Sven Gothel / cgit
  18. JoalVersion: List all devices, output devices w/ latency and source count (mono, stereo) using undocumented queries — Sven Gothel / cgit
  19. ALAudioSink: Query latency and re-create context @ init w/ latency (refresh-rate) if frameDuration < defaultLatency — Sven Gothel / cgit
  20. Demos OpenALTest/Synth02AL: Show JoalVersion — Sven Gothel / cgit
  21. JoalVersion: Cleanup dead branches — Sven Gothel / cgit
  22. ALAudioSink: Add getSourceCount() and cleanup error handling and initImpl() locking and exit. — Sven Gothel / cgit
  23. Synth02ALL Use float32 (native openal-soft format) if available — Sven Gothel / cgit
  24. README.{txt -> md) and update text incl. license — Sven Gothel / cgit
  25. ALAudioSink.toString(): Allow null==chosenFormat (pre init string representation) — Sven Gothel / cgit
  26. Synth02AL: Use ALAudioSink's default latency instead of fixed frameDuration, using actual OpenAL frame processing refresh value — Sven Gothel / cgit
  27. build.xml: Fix 7z archive: README.{txt -> md} — Sven Gothel / cgit

#673 (May 8, 2023, 4:13:57 PM)

  1. JOAL File Layout: Have *-java-src.zip inside jar folder — Sven Gothel / cgit

#672 (May 7, 2023, 3:19:00 AM)

  1. Fix Bug 1280: WAVData.loadFromStream(..) *API Change*: Only take expected byteCount (2nd arg) using IOUtil.copyStreamChunk2ByteBuffer(..) — Sven Gothel / cgit
  2. Windows: Drop using soft_oal.dll blobs, use own bundled openal-soft instead. — Sven Gothel / cgit
  3. Windows: Add commandline unit test scripts — Sven Gothel / cgit
  4. Add check-junit.sh test result script — Sven Gothel / cgit
  5. Eclipse: Fix JRE Container and add src, add jdt settings — Sven Gothel / cgit
  6. Bump openal-soft to v1.23.1 plus platform patches (building only) — Sven Gothel / cgit
  7. Bump openal-soft 1.23.1 customconfig -> toolchain cmake usage, add MacOS arm64 openal-soft build! — Sven Gothel / cgit
  8. Windows build script: Drop c.compiler.debug — Sven Gothel / cgit
  9. Add ALVersion, i.e. retrieve vendor, renderer, version and vendor-version. Test against OpenAL-Soft data >= 1.23.0 — Sven Gothel / cgit
  10. README: Linux: Add libsndio-dev for SndIO (linked) — Sven Gothel / cgit
  11. README.txt: Linux: Add libpipewire-0.3-dev for PipeWire — Sven Gothel / cgit
  12. Bump openal-soft — Sven Gothel / cgit