mirror of
https://github.com/raysan5/raylib.git
synced 2025-12-25 10:22:33 -05:00
Support QOA audio format on ExportWave() -WIP-
This commit is contained in:
12
src/raudio.c
12
src/raudio.c
@ -985,6 +985,18 @@ bool ExportWave(Wave wave, const char *fileName)
|
||||
|
||||
drwav_free(fileData, NULL);
|
||||
}
|
||||
#endif
|
||||
#if defined(SUPPORT_FILEFORMAT_QOA)
|
||||
else if (IsFileExtension(fileName, ".qoa"))
|
||||
{
|
||||
qoa_desc qoa = { 0 };
|
||||
qoa.channels = wave.channels;
|
||||
qoa.samplerate = wave.sampleRate;
|
||||
qoa.samples = wave.frameCount;
|
||||
|
||||
// TODO: Review wave.data format required for export
|
||||
success = qoa_write(fileName, wave.data, &qoa);
|
||||
}
|
||||
#endif
|
||||
else if (IsFileExtension(fileName, ".raw"))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user