summaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 46a04b4..33fcd05 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -277,7 +277,8 @@ static void PrepareAtrac3PEncoder(const string& inFile,
string contName;
if (ext == "wav" || ext == "at3") {
- throw std::runtime_error("Not implemented");
+ contName = "AT3 (RIFF)";
+ omaIO = CreateAt3POutput(outFile, numChannels, numFrames, 2048);
} else if (ext == "rm") {
throw std::runtime_error("RealMedia container is not supported for ATRAC3PLUS");
} else {