Fixed native sound export format for ADPCM compression is FLV

This commit is contained in:
Jindra Petřík
2022-12-28 14:32:58 +01:00
parent ad3cfc9e3c
commit 4f5fc62adc
2 changed files with 2 additions and 1 deletions

View File

@@ -67,10 +67,10 @@ public class SoundFormat {
switch (formatId) {
case FORMAT_UNCOMPRESSED_NATIVE_ENDIAN:
case FORMAT_UNCOMPRESSED_LITTLE_ENDIAN:
case FORMAT_ADPCM:
return SoundExportFormat.WAV;
case FORMAT_MP3:
return SoundExportFormat.MP3;
case FORMAT_ADPCM:
case FORMAT_NELLYMOSER16KHZ:
case FORMAT_NELLYMOSER8KHZ:
case FORMAT_NELLYMOSER: