summaryrefslogtreecommitdiff
path: root/Libraries/LibAudio
AgeCommit message (Expand)Author
2020-01-01AK: Move the userspace SharedBuffer from LibC to AKAndreas Kling
2019-12-28Build: wrap make invocations with flock(1)joshua stein
2019-12-25Build: support library and generator dependenciesjoshua stein
2019-12-20Build: clean up build system, use one shared Makefilejoshua stein
2019-12-08LibAudio: Install library and headersAndreas Kling
2019-12-06LibIPC: Get client/server PIDs using getsockopt(SO_PEERCRED)Andreas Kling
2019-12-02LibIPC: Rename base classes to IClientConnection and IServerConnectionAndreas Kling
2019-12-02LibIPC: Move IPC client/server connection templates to LibIPCAndreas Kling
2019-11-26AudioServer: Port to socket takeoverSergey Bugaev
2019-11-23AudioServer: Broadcast muted state changes to all clientsAndreas Kling
2019-11-23LibIPC+AudioServer: Allow unsolicited server-to-client IPC messagesAndreas Kling
2019-11-22AudioServer: Allow muting the system audioAndreas Kling
2019-11-05SoundPlayer: Changed some small cosmetic thingsTill Mayer
2019-11-05AWavLoader: Fixed incorrect computation of m_loaded_samplesTill Mayer
2019-11-04LibAudio: Added playback control features to audio serverTill Mayer
2019-10-19AudioServer: Added ability to get count of samples in the buffer queueTill Mayer
2019-10-16LibAudio: Fixed stuttery playback of audioTill Mayer
2019-09-22LibCore: Remove ObjectPtr in favor of RefPtrAndreas Kling
2019-09-21LibCore: Convert CFile to ObjectPtrAndreas Kling
2019-09-06AK: Rename <AK/AKString.h> to <AK/String.h>Andreas Kling
2019-09-04LibAudio: Allow tweaking how much get_more_samples() reads from fileAndreas Kling
2019-09-04LibAudio: Add AClientConnetion::try_enqueue() APIAndreas Kling
2019-08-03AudioServer: Port to the new generated IPC mechanismAndreas Kling
2019-08-02LibAudio: Explicitly ignore IPC postprocessing requestsAndreas Kling
2019-07-30LibCore: Rename CFileStreamReader => CIODeviceStreamReader.Andreas Kling
2019-07-29AudioServer: Begin work on a new IPC API style.Andreas Kling
2019-07-29AudioServer: Add a "main mix volume" and a simple program to get/set itAndreas Kling
2019-07-28LibAudio: Silence some debug spam in the WAV loader.Andreas Kling
2019-07-28LibAudio+aplay: Make the aplay output look a little funner.Andreas Kling
2019-07-28LibAudio: WAV: Don't emit the very last sample in each decoded batch.Andreas Kling
2019-07-28AudioServer+LibAudio: Make mixing queue-based instead of buffer-based.Andreas Kling
2019-07-28AudioServer: Add a buffer queue so we can buffer some sound.Andreas Kling
2019-07-27LibAudio: Remove an unnecessary copy of sample buffers before sending them.Andreas Kling
2019-07-27LibAudio: Allow WAV files up to 1GB.Andreas Kling
2019-07-27LibAudio: WAV reading should stop when we run out of file. :^)Andreas Kling
2019-07-27Audio: Make ABuffer sit on top of a SharedBuffer.Andreas Kling
2019-07-27Audio: Make basic streaming WAV playback work.Andreas Kling
2019-07-27LibAudio: Use ByteBuffer::slice_view() to avoid double memory usage.Andreas Kling
2019-07-27LibAudio: Run clang-format on all of it to make editing easier.Andreas Kling
2019-07-21Libraries: Remove unused "install" targets.Andreas Kling
2019-07-18AWavLoader: Share code between 24/16/8 bit readingRobin Burchell
2019-07-18AWavLoader: Support 24 bit wav files (mono & stereo)Robin Burchell
2019-07-18SharedBuffer: Split the creation and share stepsRobin Burchell
2019-07-17Rename new IPC headers & classesRobin Burchell
2019-07-17Port LibGUI to use CIPCClientSideConnectionRobin Burchell
2019-07-17Make AClientConnection genericRobin Burchell
2019-07-17AClientConnection: Fix double exitRobin Burchell
2019-07-17ABuffer: clamp -> clipRobin Burchell
2019-07-17ABuffer: move it and groove itRobin Burchell
2019-07-17Work on AudioServerRobin Burchell