export ExtCh op channels as a group
in per-channel audio export
This commit is contained in:
parent
8ce8e87922
commit
cc1933dcbb
|
|
@ -358,6 +358,14 @@ void DivEngine::runExportThread() {
|
||||||
for (int j=0; j<chans; j++) {
|
for (int j=0; j<chans; j++) {
|
||||||
bool mute=(j!=i);
|
bool mute=(j!=i);
|
||||||
isMuted[j]=mute;
|
isMuted[j]=mute;
|
||||||
|
}
|
||||||
|
if (getChannelType(i)==5) {
|
||||||
|
for (int j=i; j<chans; j++) {
|
||||||
|
if (getChannelType(j)!=5) break;
|
||||||
|
isMuted[j]=false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (int j=0; j<chans; j++) {
|
||||||
if (disCont[dispatchOfChan[j]].dispatch!=NULL) {
|
if (disCont[dispatchOfChan[j]].dispatch!=NULL) {
|
||||||
disCont[dispatchOfChan[j]].dispatch->muteChannel(dispatchChanOfChan[j],isMuted[j]);
|
disCont[dispatchOfChan[j]].dispatch->muteChannel(dispatchChanOfChan[j],isMuted[j]);
|
||||||
}
|
}
|
||||||
|
|
@ -385,6 +393,15 @@ void DivEngine::runExportThread() {
|
||||||
if (sf_close(sf)!=0) {
|
if (sf_close(sf)!=0) {
|
||||||
logE("could not close audio file!");
|
logE("could not close audio file!");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (getChannelType(i)==5) {
|
||||||
|
i++;
|
||||||
|
while (true) {
|
||||||
|
if (++i>=chans) break;
|
||||||
|
if (getChannelType(i)!=5) break;
|
||||||
|
}
|
||||||
|
i--;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
exporting=false;
|
exporting=false;
|
||||||
|
|
||||||
|
|
@ -414,7 +431,6 @@ void DivEngine::runExportThread() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: properly export ExtCh songs in per-channel mode
|
|
||||||
bool DivEngine::saveAudio(const char* path, int loops, DivAudioExportModes mode) {
|
bool DivEngine::saveAudio(const char* path, int loops, DivAudioExportModes mode) {
|
||||||
exportPath=path;
|
exportPath=path;
|
||||||
exportMode=mode;
|
exportMode=mode;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue