remove 32-bit int option

This commit is contained in:
tildearrow 2025-10-24 15:02:39 -05:00
parent ffb89ece04
commit 22eb29cf6c
3 changed files with 0 additions and 10 deletions

View file

@ -118,7 +118,6 @@ enum DivAudioExportBitrateModes {
enum DivAudioExportWavFormats {
DIV_EXPORT_WAV_U8=0,
DIV_EXPORT_WAV_S16,
DIV_EXPORT_WAV_S32,
DIV_EXPORT_WAV_F32
};

View file

@ -188,15 +188,11 @@ void DivEngine::runExportThread() {
case DIV_EXPORT_WAV_S16:
si.format|=SF_FORMAT_PCM_16;
break;
case DIV_EXPORT_WAV_S32:
si.format|=SF_FORMAT_PCM_32;
break;
case DIV_EXPORT_WAV_F32:
si.format|=SF_FORMAT_FLOAT;
break;
default:
si.format|=SF_FORMAT_PCM_U8;
logW("wtf");
break;
}
break;
@ -450,15 +446,11 @@ void DivEngine::runExportThread() {
case DIV_EXPORT_WAV_S16:
si.format|=SF_FORMAT_PCM_16;
break;
case DIV_EXPORT_WAV_S32:
si.format|=SF_FORMAT_PCM_32;
break;
case DIV_EXPORT_WAV_F32:
si.format|=SF_FORMAT_FLOAT;
break;
default:
si.format|=SF_FORMAT_PCM_U8;
logW("wtf");
break;
}
break;

View file

@ -35,7 +35,6 @@ const char* audioExportFormats[]={
const char* audioExportWavFormats[]={
_N("8-bit int (unsigned)"),
_N("16-bit int"),
_N("32-bit int"),
_N("32-bit float"),
NULL
};