Files
ladybird/Userland/Libraries/LibAudio
Sam Atkins 0a9fa85e86 LibAudio: Use ReadonlyBytes instead of Bytes for buffer parameters
Bytes will implicitly cast to StringView, but not to ReadonlyBytes. That
means that if you call
`Audio::Loader::create_plugin(mapped_file->bytes())`
it will silently use the `create_plugin(StringView path)` overload.

Reading audio data does not require that data to be writable, so let's
use ReadonlyBytes for it and avoid the footgun.
2023-07-20 08:02:12 +01:00
..
2023-06-13 06:14:01 +02:00
2023-05-31 16:23:07 +02:00
2023-05-31 16:23:07 +02:00