summaryrefslogtreecommitdiff
path: root/orkaudio/BatchProcessing.cpp
diff options
context:
space:
mode:
authorHenri Herscher <henri@oreka.org>2005-11-04 17:05:47 +0000
committerHenri Herscher <henri@oreka.org>2005-11-04 17:05:47 +0000
commitee1096e5be83ab9600d7627228cfe0fdefd7c8a7 (patch)
tree3b1465db201fdd5ef307cef5ff6908578abe2baa /orkaudio/BatchProcessing.cpp
parent5699411ccf13cff161073db7d5dd987009f00e88 (diff)
Added AudioOutputPath config parameter
git-svn-id: https://oreka.svn.sourceforge.net/svnroot/oreka/trunk@40 09dcff7a-b715-0410-9601-b79a96267cd0
Diffstat (limited to 'orkaudio/BatchProcessing.cpp')
-rw-r--r--orkaudio/BatchProcessing.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/orkaudio/BatchProcessing.cpp b/orkaudio/BatchProcessing.cpp
index 6aa1600..e154cb7 100644
--- a/orkaudio/BatchProcessing.cpp
+++ b/orkaudio/BatchProcessing.cpp
@@ -77,7 +77,7 @@ void BatchProcessing::ThreadHandler(void *args)
default:
outFileRef.reset(new LibSndFileFile(SF_FORMAT_GSM610 | SF_FORMAT_WAV));
}
- CStdString file = audioTapeRef->GetPath() + audioTapeRef->GetIdentifier();
+ CStdString file = CONFIG.m_audioOutputPath + "/" + audioTapeRef->GetPath() + audioTapeRef->GetIdentifier();
outFileRef->Open(file, AudioFile::WRITE);
while(fileRef->ReadChunkMono(chunkRef))