qoa
qoa copied to clipboard
The “Quite OK Audio Format” for fast, lossy audio compression
Hi, for the 1-bit version of QOA, is it possible to have a fixed bitrate of 8kbps?
Is it possible for QOA to achieve lower bitrates for speech? like 8kbit/s or 16kbits?
I discovered this while working on a codec with similar design principles. (Hi!) Specifically, I discovered this after learning about QOA's dynamic slice quantization, and the optimization it performs to...
While `convert_wav.sh` does the job of converting all files, I wanted additional features for testing purpose (e.g. `make check`). Here is my suggested `Makefile` (which uses the QOA's Makefile) with...
Fixes a few errors that can be bypassed with `-fpermissive` in C++ projects. Does not affect C.
Is there a way to convert planar audio data (float 32 : LLLLLL.......RRRRRR) to qoa format with minimum data loss?
Adding const before char* removes warning during compilation time: ``` qoaplay_desc *qoaplay_open(char *path) ```
Not really an issue, more of a discussion and sharing of my ideas. I've been wondering if QOA might be a good codec for implementing [pulseaudio](https://www.freedesktop.org/wiki/Software/PulseAudio/Documentation/User/Network/)/[pipewire's audio over the network](https://gitlab.freedesktop.org/pipewire/pipewire/-/blob/master/src/modules/module-pulse-tunnel.c#L38)....
The C99 spec states that > The result of the / operator is the quotient from the division of the first operand by the second; the result of the %...