diff options
| author | Daniil Cherednik <[email protected]> | 2026-05-12 21:01:59 +0200 |
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2026-05-12 21:57:17 +0200 |
| commit | 8a7c92ac447f50d10f19addfaeea8969f9da096f (patch) | |
| tree | dcdfcf21b6cc65f406df3e9d73eeecfdb93634f6 /src/main.cpp | |
| parent | a57dab0fa16bb48972405ca861f6bfd7059b80b8 (diff) | |
[AT3P] Add ATRAC3plus RIFF outputat3p_riff
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 3 |
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 { |
