summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibAudio/WavLoader.cpp
AgeCommit message (Expand)Author
2023-05-31LibAudio: Load WAV metadatakleines Filmröllchen
2023-05-31LibAudio: Modernize WAV loaderkleines Filmröllchen
2023-05-09AK: Add the `Input` word to input-only buffered streamsLucas CHOLLET
2023-03-13AK: Rename Stream::read_entire_buffer to Stream::read_until_filledTim Schumacher
2023-03-13LibAudio: Move audio stream buffering into the loaderkleines Filmröllchen
2023-02-27LibAudio: Use the proper functions to read WAV samplesTim Schumacher
2023-02-13Everywhere: Remove the `AK::` qualifier from Stream usagesTim Schumacher
2023-02-13LibCore: Move Stream-based file into the `Core` namespaceTim Schumacher
2023-02-08AK: Remove the fallible constructor from `FixedMemoryStream`Tim Schumacher
2023-01-29AK: Move memory streams from `LibCore`Tim Schumacher
2023-01-29AK: Move `Stream` and `SeekableStream` from `LibCore`Tim Schumacher
2023-01-28LibAudio: Remove `try_` prefix from fallible LoaderPlugin methodsLinus Groh
2023-01-28AK: Remove `try_` prefix from FixedArray creation functionsLinus Groh
2022-12-15LibCore: Rename `MemoryStream` to `FixedMemoryStream`Tim Schumacher
2022-12-06AK+Everywhere: Rename String to DeprecatedStringLinus Groh
2022-12-05LibAudio: Use `NonnullOwnPtr` to keep track of LoaderPlugin streamsTim Schumacher
2022-12-05LibAudio: Switch LoaderPlugin to a more traditional constructor patternTim Schumacher
2022-10-14LibAudio: Factorize stream initialisation to base class `LoaderPlugin`Lucas CHOLLET
2022-10-14LibAudio: Remove the last occurrence of `Core::File` in the Wav pluginLucas CHOLLET
2022-10-14LibAudio: Fix 24-bit PCM rescalingkleines Filmröllchen
2022-10-14LibAudio: Correctly rescale 8-bit PCM sampleskleines Filmröllchen
2022-05-03LibAudio: Move WAV sample reading and conversion into own helperskleines Filmröllchen
2022-05-03LibAudio: Move WavLoader to Core::Stream APIskleines Filmröllchen
2022-05-03LibAudio: Refactor and modernize WavLoaderkleines Filmröllchen
2022-04-21LibAudio+Userland: Use new audio queue in client-server communicationkleines Filmröllchen
2022-04-21LibAudio+Everywhere: Rename Audio::Buffer -> Audio::LegacyBufferkleines Filmröllchen
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2022-01-24Everywhere: Convert ByteBuffer factory methods from Optional -> ErrorOrSam Atkins
2022-01-22LibAudio: Convert FlacLoader to use new Core::Stream APIs :^)kleines Filmröllchen
2022-01-14Everywhere: Use my new serenityos.org e-mail :^)kleines Filmröllchen
2021-11-28LibAudio: New error propagation API in Loader and Bufferkleines Filmröllchen
2021-11-11Everywhere: Pass AK::StringView by valueAndreas Kling
2021-09-06Everywhere: Make ByteBuffer::{create_*,copy}() OOM-safeAli Mohammad Pur
2021-08-27Userland+LibAudio: Make audio applications support dynamic sample ratekleines Filmröllchen
2021-06-25LibAudio: Make ResampleHelper templated for different sample typeskleines Filmröllchen
2021-06-21SoundPlayer: Handle any input file sample rateNick Miller
2021-06-21LibAudio: Avoid reading past the end of sample dataNick Miller
2021-06-09LibAudio: Add support for WAVE_FORMAT_EXTENSIBLENick Miller
2021-06-09LibAudio: Make Loader::seek() treat its input as a sample indexNick Miller
2021-06-08LibAudio: WavLoader: Avoid reading partial samplesNick Miller
2021-06-08LibAudio+LibCore: Remove unnecessary IODeviceStreamReader.hNick Miller
2021-05-12LibCore+Everywhere: Move OpenMode out of IODeviceAli Mohammad Pur
2021-05-01Everywhere: Turn #if *_DEBUG into dbgln_if/if constexprGunnar Beutner
2021-04-26LibAudio: Support 32 and 64-bit float WAV fileskleines Filmröllchen
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-03-16LibAudio: decrease WavLoader's size limit to a more reasonable sizeIdan Horowitz
2021-03-01LibAudio: Move format and BPS checks before VERIFYs in WAV loaderLuke
2021-03-01LibAudio: Use handle_any_error in WAV loaderLuke
2021-02-23Everywhere: Rename ASSERT => VERIFYAndreas Kling
2021-01-25Everywhere: Hook up remaining debug macros to Debug.h.asynts