aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
authorDaniil Cherednik <dan.cherednik@gmail.com>2025-06-16 22:21:54 +0200
committerDaniil Cherednik <dan.cherednik@gmail.com>2025-07-20 14:01:08 +0200
commit58b4ce18809b8ae0f2d5b3f810ff57df8fc8ea65 (patch)
tree556a936740b192b71ac20e9938184bfc0f6e95b4 /src/main.cpp
parent33d1da0ec9dafe39ae002138b12be6137748a8cc (diff)
downloadatracdenc-58b4ce18809b8ae0f2d5b3f810ff57df8fc8ea65.tar.gz
0.2 stable branch
- ATH and some bit allocation tuning for ATRAC1 compatible encoding. - ATH, energy aware quanitization and tuning for ATRAC3 compatible encoding. - Noticeable improvements for LP4 mode (but still not perfect on some tracks for LP4 bitrate) - Initial implementation of ATRAC3PLUS compatible encoding.
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 9f638f3..6cf6ff8 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -201,7 +201,6 @@ static void PrepareAtrac3Encoder(const string& inFile,
TPcmEnginePtr* pcmEngine,
TAtracProcessorPtr* atracProcessor)
{
- std::cout << "WARNING: ATRAC3 is uncompleted, result will be not good )))" << std::endl;
const int numChannels = encoderSettings.SourceChannels;
*totalSamples = wavIO->GetTotalSamples();
const uint64_t numFrames = (*totalSamples) / 1024;