remove 32-bit int option
This commit is contained in:
parent
ffb89ece04
commit
22eb29cf6c
3 changed files with 0 additions and 10 deletions
|
|
@ -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
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue